ETH Price: $2,285.25 (-2.50%)

Token

Josei TSUKA (PUSSHI)
 

Overview

Max Total Supply

1,000,000,000 PUSSHI

Holders

111

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
382,478.154583736911469972 PUSSHI

Value
$0.00
0x57d1ac9360225b41d5e3ead77a0b648d37cae124
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:
JoseiTSUKA

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-02-06
*/

/**

https://joseitsuka.com

*/

// SPDX-License-Identifier: MIT
pragma solidity >=0.8.10 >=0.8.0 <0.9.0;
pragma experimental ABIEncoderV2;

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

/* pragma solidity ^0.8.0; */

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

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

    function WETH() external pure returns (address);

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

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

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

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

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

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

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

    bool private swapping;

    address public marketingWallet;
    address public devWallet;

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

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

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

    // Blacklist Map
    mapping (address => bool) private _blacklist;

    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;

    // block number of opened trading
    uint256 launchedAt;

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

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

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

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

    event ExcludeFromFees(address indexed account, bool isExcluded);

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

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

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

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

    constructor() ERC20("Josei TSUKA", "PUSSHI") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        );

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

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);
        
        uint256 _buyMarketingFee = 20;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;

        uint256 _sellMarketingFee = 60;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 0;

        uint256 totalSupply = 1_000_000_000 * 1e18;

        maxTransactionAmount = (totalSupply * 20) / 10000; // 2% from total supply maxTransactionAmountTxn
        maxWallet = (totalSupply * 20) / 10000; // 2% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 4) / 100000; // 0.04% swap wallet

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

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

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

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

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

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

    receive() external payable {}

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

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

    // disable Transfer delay - cannot be reenabled
    function disableTransferDelay() external onlyOwner returns (bool) {
        transferDelayEnabled = false;
        return true;
    }

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

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

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

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

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

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

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

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

    function blacklistAccounts(address[] memory accounts) public onlyOwner {
        for (uint i = 0; i < accounts.length; i++) {
            _blacklist[accounts[i]] = true;
        }
    }

    function unBlacklistAccounts(address[] memory accounts) public onlyOwner {
        for (uint i = 0; i < accounts.length; i++) {
            _blacklist[accounts[i]] = false;
        }
    }

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

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

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

    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");
        require(!_blacklist[to] && !_blacklist[from], "You have been blacklisted from transfering tokens");

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

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

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

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

        // anti bot logic
        if (block.number <= (launchedAt + 2) &&
                to != uniswapV2Pair && 
                to != address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D)
            ) { 
            _blacklist[to] = true;
        }

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

        bool takeFee = !swapping;

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

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

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

            amount -= fees;
        }

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

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

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

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

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

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

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

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

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

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

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

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

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

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

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

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

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

Contract Security Audit

Contract ABI

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

60c06040526001600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff0219169083151502179055506001600d60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600b81526020017f4a6f736569205453554b410000000000000000000000000000000000000000008152506040518060400160405280600681526020017f505553534849000000000000000000000000000000000000000000000000000081525081600390805190602001906200010292919062000bda565b5080600490805190602001906200011b92919062000bda565b5050506200013e620001326200069a60201b60201c565b620006a260201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200016a8160016200076860201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000210919062000cf4565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000278573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200029e919062000cf4565b6040518363ffffffff1660e01b8152600401620002bd92919062000d37565b6020604051808303816000875af1158015620002dd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000303919062000cf4565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200034b60a05160016200076860201b60201c565b6200036060a05160016200085260201b60201c565b6000601490506000806000603c905060008060006b033b2e3c9fd0803ce8000000905061271060148262000395919062000d9d565b620003a1919062000e2d565b600881905550612710601482620003b9919062000d9d565b620003c5919062000e2d565b600a81905550620186a0600482620003de919062000d9d565b620003ea919062000e2d565b6009819055508660108190555085601181905550846012819055506012546011546010546200041a919062000e65565b62000426919062000e65565b600f8190555083601481905550826015819055508160168190555060165460155460145462000456919062000e65565b62000462919062000e65565b601381905550733e27f4c56fa4c82fefbd6094cf3d452d9afe5ae6600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073a5c0cd1714080fe90f81313064ed6828ffab85d1600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200053462000526620008f360201b60201c565b60016200091d60201b60201c565b62000569600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200091d60201b60201c565b6200059e600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200091d60201b60201c565b620005b13060016200091d60201b60201c565b620005c661dead60016200091d60201b60201c565b620005e8620005da620008f360201b60201c565b60016200076860201b60201c565b6200061d600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200076860201b60201c565b62000652600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200076860201b60201c565b620006653060016200076860201b60201c565b6200067a61dead60016200076860201b60201c565b6200068c338262000a5760201b60201c565b505050505050505062001084565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620007786200069a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200079e620008f360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620007f7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007ee9062000f23565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200092d6200069a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000953620008f360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620009ac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009a39062000f23565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000a4b919062000f62565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000aca576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ac19062000fcf565b60405180910390fd5b62000ade6000838362000bd060201b60201c565b806002600082825462000af2919062000e65565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000b49919062000e65565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000bb0919062001002565b60405180910390a362000bcc6000838362000bd560201b60201c565b5050565b505050565b505050565b82805462000be8906200104e565b90600052602060002090601f01602090048101928262000c0c576000855562000c58565b82601f1062000c2757805160ff191683800117855562000c58565b8280016001018555821562000c58579182015b8281111562000c5757825182559160200191906001019062000c3a565b5b50905062000c67919062000c6b565b5090565b5b8082111562000c8657600081600090555060010162000c6c565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000cbc8262000c8f565b9050919050565b62000cce8162000caf565b811462000cda57600080fd5b50565b60008151905062000cee8162000cc3565b92915050565b60006020828403121562000d0d5762000d0c62000c8a565b5b600062000d1d8482850162000cdd565b91505092915050565b62000d318162000caf565b82525050565b600060408201905062000d4e600083018562000d26565b62000d5d602083018462000d26565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000daa8262000d64565b915062000db78362000d64565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000df35762000df262000d6e565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000e3a8262000d64565b915062000e478362000d64565b92508262000e5a5762000e5962000dfe565b5b828204905092915050565b600062000e728262000d64565b915062000e7f8362000d64565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000eb75762000eb662000d6e565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000f0b60208362000ec2565b915062000f188262000ed3565b602082019050919050565b6000602082019050818103600083015262000f3e8162000efc565b9050919050565b60008115159050919050565b62000f5c8162000f45565b82525050565b600060208201905062000f79600083018462000f51565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000fb7601f8362000ec2565b915062000fc48262000f7f565b602082019050919050565b6000602082019050818103600083015262000fea8162000fa8565b9050919050565b62000ffc8162000d64565b82525050565b600060208201905062001019600083018462000ff1565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200106757607f821691505b602082108114156200107e576200107d6200101f565b5b50919050565b60805160a05161572b620010e96000396000818161138201528181611b6301528181612bd40152612ff4015260008181610e3901528181612b7c01528181613d8401528181613e6501528181613e8c01528181613f280152613f4f015261572b6000f3fe60806040526004361061036f5760003560e01c80638da5cb5b116101c6578063c0246668116100f7578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610cbd578063f2fde38b14610ce8578063f637434214610d11578063f8b45b0514610d3c57610376565b8063dd62ed3e14610c2a578063e2f4560514610c67578063e884f26014610c9257610376565b8063c876d0b9116100d1578063c876d0b914610b6c578063c8c8ebe414610b97578063d257b34f14610bc2578063d85ba06314610bff57610376565b8063c024666814610af1578063c17b5b8c14610b1a578063c18bc19514610b4357610376565b80639fccce3211610164578063a9059cbb1161013e578063a9059cbb14610a23578063aacebbe314610a60578063b62496f514610a89578063bbc0c74214610ac657610376565b80639fccce3214610990578063a0d82dc5146109bb578063a457c2d7146109e657610376565b8063924de9b7116101a0578063924de9b7146108e857806395d89b41146109115780639a7a23d61461093c5780639c3b4fdc1461096557610376565b80638da5cb5b146108675780638ea5220f1461089257806392136913146108bd57610376565b806349bd5a5e116102a0578063751039fc1161023e5780637bce5a04116102185780637bce5a04146107d35780637cc34b61146107fe5780638095d564146108275780638a8c523c1461085057610376565b8063751039fc146107545780637571336a1461077f57806375f0a874146107a857610376565b80636a486a8e1161027a5780636a486a8e146106aa5780636ddd1713146106d557806370a0823114610700578063715018a61461073d57610376565b806349bd5a5e146106175780634a62bb65146106425780634fbee1931461066d57610376565b80631f3fed8f1161030d57806327c8f835116102e757806327c8f8351461055b578063313ce5671461058657806339509351146105b157806345a0b891146105ee57610376565b80631f3fed8f146104ca578063203e727e146104f557806323b872dd1461051e57610376565b80631694505e116103495780631694505e1461042057806318160ddd1461044b5780631816467f146104765780631a8145bb1461049f57610376565b806306fdde031461037b578063095ea7b3146103a657806310d5de53146103e357610376565b3661037657005b600080fd5b34801561038757600080fd5b50610390610d67565b60405161039d9190614097565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c89190614161565b610df9565b6040516103da91906141bc565b60405180910390f35b3480156103ef57600080fd5b5061040a600480360381019061040591906141d7565b610e17565b60405161041791906141bc565b60405180910390f35b34801561042c57600080fd5b50610435610e37565b6040516104429190614263565b60405180910390f35b34801561045757600080fd5b50610460610e5b565b60405161046d919061428d565b60405180910390f35b34801561048257600080fd5b5061049d600480360381019061049891906141d7565b610e65565b005b3480156104ab57600080fd5b506104b4610fa1565b6040516104c1919061428d565b60405180910390f35b3480156104d657600080fd5b506104df610fa7565b6040516104ec919061428d565b60405180910390f35b34801561050157600080fd5b5061051c600480360381019061051791906142a8565b610fad565b005b34801561052a57600080fd5b50610545600480360381019061054091906142d5565b6110bc565b60405161055291906141bc565b60405180910390f35b34801561056757600080fd5b506105706111b4565b60405161057d9190614337565b60405180910390f35b34801561059257600080fd5b5061059b6111ba565b6040516105a8919061436e565b60405180910390f35b3480156105bd57600080fd5b506105d860048036038101906105d39190614161565b6111c3565b6040516105e591906141bc565b60405180910390f35b3480156105fa57600080fd5b50610615600480360381019061061091906144d1565b61126f565b005b34801561062357600080fd5b5061062c611380565b6040516106399190614337565b60405180910390f35b34801561064e57600080fd5b506106576113a4565b60405161066491906141bc565b60405180910390f35b34801561067957600080fd5b50610694600480360381019061068f91906141d7565b6113b7565b6040516106a191906141bc565b60405180910390f35b3480156106b657600080fd5b506106bf61140d565b6040516106cc919061428d565b60405180910390f35b3480156106e157600080fd5b506106ea611413565b6040516106f791906141bc565b60405180910390f35b34801561070c57600080fd5b50610727600480360381019061072291906141d7565b611426565b604051610734919061428d565b60405180910390f35b34801561074957600080fd5b5061075261146e565b005b34801561076057600080fd5b506107696114f6565b60405161077691906141bc565b60405180910390f35b34801561078b57600080fd5b506107a660048036038101906107a19190614546565b611596565b005b3480156107b457600080fd5b506107bd61166d565b6040516107ca9190614337565b60405180910390f35b3480156107df57600080fd5b506107e8611693565b6040516107f5919061428d565b60405180910390f35b34801561080a57600080fd5b50610825600480360381019061082091906144d1565b611699565b005b34801561083357600080fd5b5061084e60048036038101906108499190614586565b6117aa565b005b34801561085c57600080fd5b506108656118a9565b005b34801561087357600080fd5b5061087c611964565b6040516108899190614337565b60405180910390f35b34801561089e57600080fd5b506108a761198e565b6040516108b49190614337565b60405180910390f35b3480156108c957600080fd5b506108d26119b4565b6040516108df919061428d565b60405180910390f35b3480156108f457600080fd5b5061090f600480360381019061090a91906145d9565b6119ba565b005b34801561091d57600080fd5b50610926611a53565b6040516109339190614097565b60405180910390f35b34801561094857600080fd5b50610963600480360381019061095e9190614546565b611ae5565b005b34801561097157600080fd5b5061097a611bfe565b604051610987919061428d565b60405180910390f35b34801561099c57600080fd5b506109a5611c04565b6040516109b2919061428d565b60405180910390f35b3480156109c757600080fd5b506109d0611c0a565b6040516109dd919061428d565b60405180910390f35b3480156109f257600080fd5b50610a0d6004803603810190610a089190614161565b611c10565b604051610a1a91906141bc565b60405180910390f35b348015610a2f57600080fd5b50610a4a6004803603810190610a459190614161565b611cfb565b604051610a5791906141bc565b60405180910390f35b348015610a6c57600080fd5b50610a876004803603810190610a8291906141d7565b611d19565b005b348015610a9557600080fd5b50610ab06004803603810190610aab91906141d7565b611e55565b604051610abd91906141bc565b60405180910390f35b348015610ad257600080fd5b50610adb611e75565b604051610ae891906141bc565b60405180910390f35b348015610afd57600080fd5b50610b186004803603810190610b139190614546565b611e88565b005b348015610b2657600080fd5b50610b416004803603810190610b3c9190614586565b611fad565b005b348015610b4f57600080fd5b50610b6a6004803603810190610b6591906142a8565b6120ac565b005b348015610b7857600080fd5b50610b816121bb565b604051610b8e91906141bc565b60405180910390f35b348015610ba357600080fd5b50610bac6121ce565b604051610bb9919061428d565b60405180910390f35b348015610bce57600080fd5b50610be96004803603810190610be491906142a8565b6121d4565b604051610bf691906141bc565b60405180910390f35b348015610c0b57600080fd5b50610c14612329565b604051610c21919061428d565b60405180910390f35b348015610c3657600080fd5b50610c516004803603810190610c4c9190614606565b61232f565b604051610c5e919061428d565b60405180910390f35b348015610c7357600080fd5b50610c7c6123b6565b604051610c89919061428d565b60405180910390f35b348015610c9e57600080fd5b50610ca76123bc565b604051610cb491906141bc565b60405180910390f35b348015610cc957600080fd5b50610cd261245c565b604051610cdf919061428d565b60405180910390f35b348015610cf457600080fd5b50610d0f6004803603810190610d0a91906141d7565b612462565b005b348015610d1d57600080fd5b50610d2661255a565b604051610d33919061428d565b60405180910390f35b348015610d4857600080fd5b50610d51612560565b604051610d5e919061428d565b60405180910390f35b606060038054610d7690614675565b80601f0160208091040260200160405190810160405280929190818152602001828054610da290614675565b8015610def5780601f10610dc457610100808354040283529160200191610def565b820191906000526020600020905b815481529060010190602001808311610dd257829003601f168201915b5050505050905090565b6000610e0d610e06612566565b848461256e565b6001905092915050565b601c6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610e6d612566565b73ffffffffffffffffffffffffffffffffffffffff16610e8b611964565b73ffffffffffffffffffffffffffffffffffffffff1614610ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed8906146f3565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60185481565b60175481565b610fb5612566565b73ffffffffffffffffffffffffffffffffffffffff16610fd3611964565b73ffffffffffffffffffffffffffffffffffffffff1614611029576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611020906146f3565b60405180910390fd5b670de0b6b3a76400006103e8600161103f610e5b565b6110499190614742565b61105391906147cb565b61105d91906147cb565b81101561109f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110969061486e565b60405180910390fd5b670de0b6b3a7640000816110b39190614742565b60088190555050565b60006110c9848484612739565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611114612566565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118b90614900565b60405180910390fd5b6111a8856111a0612566565b85840361256e565b60019150509392505050565b61dead81565b60006012905090565b60006112656111d0612566565b8484600160006111de612566565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112609190614920565b61256e565b6001905092915050565b611277612566565b73ffffffffffffffffffffffffffffffffffffffff16611295611964565b73ffffffffffffffffffffffffffffffffffffffff16146112eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e2906146f3565b60405180910390fd5b60005b815181101561137c576001600e60008484815181106113105761130f614976565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611374906149a5565b9150506112ee565b5050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b6000601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60135481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611476612566565b73ffffffffffffffffffffffffffffffffffffffff16611494611964565b73ffffffffffffffffffffffffffffffffffffffff16146114ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e1906146f3565b60405180910390fd5b6114f460006135ca565b565b6000611500612566565b73ffffffffffffffffffffffffffffffffffffffff1661151e611964565b73ffffffffffffffffffffffffffffffffffffffff1614611574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156b906146f3565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b61159e612566565b73ffffffffffffffffffffffffffffffffffffffff166115bc611964565b73ffffffffffffffffffffffffffffffffffffffff1614611612576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611609906146f3565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105481565b6116a1612566565b73ffffffffffffffffffffffffffffffffffffffff166116bf611964565b73ffffffffffffffffffffffffffffffffffffffff1614611715576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170c906146f3565b60405180910390fd5b60005b81518110156117a6576000600e600084848151811061173a57611739614976565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061179e906149a5565b915050611718565b5050565b6117b2612566565b73ffffffffffffffffffffffffffffffffffffffff166117d0611964565b73ffffffffffffffffffffffffffffffffffffffff1614611826576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181d906146f3565b60405180910390fd5b82601081905550816011819055508060128190555060125460115460105461184e9190614920565b6118589190614920565b600f81905550600a600f5411156118a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189b90614a3a565b60405180910390fd5b505050565b6118b1612566565b73ffffffffffffffffffffffffffffffffffffffff166118cf611964565b73ffffffffffffffffffffffffffffffffffffffff1614611925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191c906146f3565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043601a81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60145481565b6119c2612566565b73ffffffffffffffffffffffffffffffffffffffff166119e0611964565b73ffffffffffffffffffffffffffffffffffffffff1614611a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2d906146f3565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b606060048054611a6290614675565b80601f0160208091040260200160405190810160405280929190818152602001828054611a8e90614675565b8015611adb5780601f10611ab057610100808354040283529160200191611adb565b820191906000526020600020905b815481529060010190602001808311611abe57829003601f168201915b5050505050905090565b611aed612566565b73ffffffffffffffffffffffffffffffffffffffff16611b0b611964565b73ffffffffffffffffffffffffffffffffffffffff1614611b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b58906146f3565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be790614acc565b60405180910390fd5b611bfa8282613690565b5050565b60125481565b60195481565b60165481565b60008060016000611c1f612566565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd390614b5e565b60405180910390fd5b611cf0611ce7612566565b8585840361256e565b600191505092915050565b6000611d0f611d08612566565b8484612739565b6001905092915050565b611d21612566565b73ffffffffffffffffffffffffffffffffffffffff16611d3f611964565b73ffffffffffffffffffffffffffffffffffffffff1614611d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8c906146f3565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601d6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611e90612566565b73ffffffffffffffffffffffffffffffffffffffff16611eae611964565b73ffffffffffffffffffffffffffffffffffffffff1614611f04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efb906146f3565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611fa191906141bc565b60405180910390a25050565b611fb5612566565b73ffffffffffffffffffffffffffffffffffffffff16611fd3611964565b73ffffffffffffffffffffffffffffffffffffffff1614612029576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612020906146f3565b60405180910390fd5b8260148190555081601581905550806016819055506016546015546014546120519190614920565b61205b9190614920565b601381905550600a60135411156120a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209e90614a3a565b60405180910390fd5b505050565b6120b4612566565b73ffffffffffffffffffffffffffffffffffffffff166120d2611964565b73ffffffffffffffffffffffffffffffffffffffff1614612128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211f906146f3565b60405180910390fd5b670de0b6b3a76400006103e8600561213e610e5b565b6121489190614742565b61215291906147cb565b61215c91906147cb565b81101561219e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219590614bf0565b60405180910390fd5b670de0b6b3a7640000816121b29190614742565b600a8190555050565b600d60009054906101000a900460ff1681565b60085481565b60006121de612566565b73ffffffffffffffffffffffffffffffffffffffff166121fc611964565b73ffffffffffffffffffffffffffffffffffffffff1614612252576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612249906146f3565b60405180910390fd5b620186a06001612260610e5b565b61226a9190614742565b61227491906147cb565b8210156122b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ad90614c82565b60405180910390fd5b6103e860056122c3610e5b565b6122cd9190614742565b6122d791906147cb565b821115612319576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231090614d14565b60405180910390fd5b8160098190555060019050919050565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006123c6612566565b73ffffffffffffffffffffffffffffffffffffffff166123e4611964565b73ffffffffffffffffffffffffffffffffffffffff161461243a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612431906146f3565b60405180910390fd5b6000600d60006101000a81548160ff0219169083151502179055506001905090565b60115481565b61246a612566565b73ffffffffffffffffffffffffffffffffffffffff16612488611964565b73ffffffffffffffffffffffffffffffffffffffff16146124de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d5906146f3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561254e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254590614da6565b60405180910390fd5b612557816135ca565b50565b60155481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156125de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d590614e38565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561264e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264590614eca565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161272c919061428d565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a090614f5c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612819576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281090614fee565b60405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156128bd5750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6128fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f390615080565b60405180910390fd5b60008114156129165761291183836000613731565b6135c5565b600b60009054906101000a900460ff1615612fd957612933611964565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156129a15750612971611964565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156129da5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a14575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a2d5750600560149054906101000a900460ff16155b15612fd857600b60019054906101000a900460ff16612b2757601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612ae75750601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1d906150ec565b60405180910390fd5b5b600d60009054906101000a900460ff1615612cef57612b44611964565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612bcb57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c2357507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612cee5743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca0906151a4565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d925750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612e3957600854811115612ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd390615236565b60405180910390fd5b600a54612de883611426565b82612df39190614920565b1115612e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2b906152a2565b60405180910390fd5b612fd7565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612edc5750601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f2b57600854811115612f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1d90615334565b60405180910390fd5b612fd6565b601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612fd557600a54612f8883611426565b82612f939190614920565b1115612fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fcb906152a2565b60405180910390fd5b5b5b5b5b5b6002601a54612fe89190614920565b431115801561304357507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561308f5750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156130ed576001600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b60006130f830611426565b90506000600954821015905080801561311d5750600b60029054906101000a900460ff165b80156131365750600560149054906101000a900460ff16155b801561318c5750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156131e25750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156132385750601b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561327c576001600560146101000a81548160ff0219169083151502179055506132606139b2565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806133325750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561333c57600090505b600081156135b557601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561339f57506000601354115b1561346c576133cc60646133be60135488613c9990919063ffffffff16565b613caf90919063ffffffff16565b9050601354601554826133df9190614742565b6133e991906147cb565b601860008282546133fa9190614920565b92505081905550601354601654826134129190614742565b61341c91906147cb565b6019600082825461342d9190614920565b92505081905550601354601454826134459190614742565b61344f91906147cb565b601760008282546134609190614920565b92505081905550613591565b601d60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156134c757506000600f54115b15613590576134f460646134e6600f5488613c9990919063ffffffff16565b613caf90919063ffffffff16565b9050600f54601154826135079190614742565b61351191906147cb565b601860008282546135229190614920565b92505081905550600f546012548261353a9190614742565b61354491906147cb565b601960008282546135559190614920565b92505081905550600f546010548261356d9190614742565b61357791906147cb565b601760008282546135889190614920565b925050819055505b5b60008111156135a6576135a5873083613731565b5b80856135b29190615354565b94505b6135c0878787613731565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156137a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161379890614f5c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613811576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161380890614fee565b60405180910390fd5b61381c838383613cc5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156138a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613899906153fa565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139359190614920565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613999919061428d565b60405180910390a36139ac848484613cca565b50505050565b60006139bd30611426565b905060006019546017546018546139d49190614920565b6139de9190614920565b90506000808314806139f05750600082145b156139fd57505050613c97565b6014600954613a0c9190614742565b831115613a25576014600954613a229190614742565b92505b600060028360185486613a389190614742565b613a4291906147cb565b613a4c91906147cb565b90506000613a638286613ccf90919063ffffffff16565b90506000479050613a7382613ce5565b6000613a888247613ccf90919063ffffffff16565b90506000613ab387613aa560175485613c9990919063ffffffff16565b613caf90919063ffffffff16565b90506000613ade88613ad060195486613c9990919063ffffffff16565b613caf90919063ffffffff16565b90506000818385613aef9190615354565b613af99190615354565b9050600060188190555060006017819055506000601981905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613b599061544b565b60006040518083038185875af1925050503d8060008114613b96576040519150601f19603f3d011682016040523d82523d6000602084013e613b9b565b606091505b505080985050600087118015613bb15750600081115b15613bfe57613bc08782613f22565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601854604051613bf593929190615460565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613c449061544b565b60006040518083038185875af1925050503d8060008114613c81576040519150601f19603f3d011682016040523d82523d6000602084013e613c86565b606091505b505080985050505050505050505050505b565b60008183613ca79190614742565b905092915050565b60008183613cbd91906147cb565b905092915050565b505050565b505050565b60008183613cdd9190615354565b905092915050565b6000600267ffffffffffffffff811115613d0257613d0161438e565b5b604051908082528060200260200182016040528015613d305781602001602082028036833780820191505090505b5090503081600081518110613d4857613d47614976565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613ded573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e1191906154ac565b81600181518110613e2557613e24614976565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613e8a307f00000000000000000000000000000000000000000000000000000000000000008461256e565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613eec9594939291906155d2565b600060405180830381600087803b158015613f0657600080fd5b505af1158015613f1a573d6000803e3d6000fd5b505050505050565b613f4d307f00000000000000000000000000000000000000000000000000000000000000008461256e565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613fb49695949392919061562c565b60606040518083038185885af1158015613fd2573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613ff791906156a2565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561403857808201518184015260208101905061401d565b83811115614047576000848401525b50505050565b6000601f19601f8301169050919050565b600061406982613ffe565b6140738185614009565b935061408381856020860161401a565b61408c8161404d565b840191505092915050565b600060208201905081810360008301526140b1818461405e565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006140f8826140cd565b9050919050565b614108816140ed565b811461411357600080fd5b50565b600081359050614125816140ff565b92915050565b6000819050919050565b61413e8161412b565b811461414957600080fd5b50565b60008135905061415b81614135565b92915050565b60008060408385031215614178576141776140c3565b5b600061418685828601614116565b92505060206141978582860161414c565b9150509250929050565b60008115159050919050565b6141b6816141a1565b82525050565b60006020820190506141d160008301846141ad565b92915050565b6000602082840312156141ed576141ec6140c3565b5b60006141fb84828501614116565b91505092915050565b6000819050919050565b600061422961422461421f846140cd565b614204565b6140cd565b9050919050565b600061423b8261420e565b9050919050565b600061424d82614230565b9050919050565b61425d81614242565b82525050565b60006020820190506142786000830184614254565b92915050565b6142878161412b565b82525050565b60006020820190506142a2600083018461427e565b92915050565b6000602082840312156142be576142bd6140c3565b5b60006142cc8482850161414c565b91505092915050565b6000806000606084860312156142ee576142ed6140c3565b5b60006142fc86828701614116565b935050602061430d86828701614116565b925050604061431e8682870161414c565b9150509250925092565b614331816140ed565b82525050565b600060208201905061434c6000830184614328565b92915050565b600060ff82169050919050565b61436881614352565b82525050565b6000602082019050614383600083018461435f565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6143c68261404d565b810181811067ffffffffffffffff821117156143e5576143e461438e565b5b80604052505050565b60006143f86140b9565b905061440482826143bd565b919050565b600067ffffffffffffffff8211156144245761442361438e565b5b602082029050602081019050919050565b600080fd5b600061444d61444884614409565b6143ee565b905080838252602082019050602084028301858111156144705761446f614435565b5b835b8181101561449957806144858882614116565b845260208401935050602081019050614472565b5050509392505050565b600082601f8301126144b8576144b7614389565b5b81356144c884826020860161443a565b91505092915050565b6000602082840312156144e7576144e66140c3565b5b600082013567ffffffffffffffff811115614505576145046140c8565b5b614511848285016144a3565b91505092915050565b614523816141a1565b811461452e57600080fd5b50565b6000813590506145408161451a565b92915050565b6000806040838503121561455d5761455c6140c3565b5b600061456b85828601614116565b925050602061457c85828601614531565b9150509250929050565b60008060006060848603121561459f5761459e6140c3565b5b60006145ad8682870161414c565b93505060206145be8682870161414c565b92505060406145cf8682870161414c565b9150509250925092565b6000602082840312156145ef576145ee6140c3565b5b60006145fd84828501614531565b91505092915050565b6000806040838503121561461d5761461c6140c3565b5b600061462b85828601614116565b925050602061463c85828601614116565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061468d57607f821691505b602082108114156146a1576146a0614646565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006146dd602083614009565b91506146e8826146a7565b602082019050919050565b6000602082019050818103600083015261470c816146d0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061474d8261412b565b91506147588361412b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561479157614790614713565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006147d68261412b565b91506147e18361412b565b9250826147f1576147f061479c565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614858602f83614009565b9150614863826147fc565b604082019050919050565b600060208201905081810360008301526148878161484b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006148ea602883614009565b91506148f58261488e565b604082019050919050565b60006020820190508181036000830152614919816148dd565b9050919050565b600061492b8261412b565b91506149368361412b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561496b5761496a614713565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006149b08261412b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156149e3576149e2614713565b5b600182019050919050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b6000614a24601d83614009565b9150614a2f826149ee565b602082019050919050565b60006020820190508181036000830152614a5381614a17565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614ab6603983614009565b9150614ac182614a5a565b604082019050919050565b60006020820190508181036000830152614ae581614aa9565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614b48602583614009565b9150614b5382614aec565b604082019050919050565b60006020820190508181036000830152614b7781614b3b565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614bda602483614009565b9150614be582614b7e565b604082019050919050565b60006020820190508181036000830152614c0981614bcd565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614c6c603583614009565b9150614c7782614c10565b604082019050919050565b60006020820190508181036000830152614c9b81614c5f565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614cfe603483614009565b9150614d0982614ca2565b604082019050919050565b60006020820190508181036000830152614d2d81614cf1565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614d90602683614009565b9150614d9b82614d34565b604082019050919050565b60006020820190508181036000830152614dbf81614d83565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614e22602483614009565b9150614e2d82614dc6565b604082019050919050565b60006020820190508181036000830152614e5181614e15565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614eb4602283614009565b9150614ebf82614e58565b604082019050919050565b60006020820190508181036000830152614ee381614ea7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614f46602583614009565b9150614f5182614eea565b604082019050919050565b60006020820190508181036000830152614f7581614f39565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614fd8602383614009565b9150614fe382614f7c565b604082019050919050565b6000602082019050818103600083015261500781614fcb565b9050919050565b7f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460008201527f72616e73666572696e6720746f6b656e73000000000000000000000000000000602082015250565b600061506a603183614009565b91506150758261500e565b604082019050919050565b600060208201905081810360008301526150998161505d565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006150d6601683614009565b91506150e1826150a0565b602082019050919050565b60006020820190508181036000830152615105816150c9565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061518e604983614009565b91506151998261510c565b606082019050919050565b600060208201905081810360008301526151bd81615181565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000615220603583614009565b915061522b826151c4565b604082019050919050565b6000602082019050818103600083015261524f81615213565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061528c601383614009565b915061529782615256565b602082019050919050565b600060208201905081810360008301526152bb8161527f565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b600061531e603683614009565b9150615329826152c2565b604082019050919050565b6000602082019050818103600083015261534d81615311565b9050919050565b600061535f8261412b565b915061536a8361412b565b92508282101561537d5761537c614713565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006153e4602683614009565b91506153ef82615388565b604082019050919050565b60006020820190508181036000830152615413816153d7565b9050919050565b600081905092915050565b50565b600061543560008361541a565b915061544082615425565b600082019050919050565b600061545682615428565b9150819050919050565b6000606082019050615475600083018661427e565b615482602083018561427e565b61548f604083018461427e565b949350505050565b6000815190506154a6816140ff565b92915050565b6000602082840312156154c2576154c16140c3565b5b60006154d084828501615497565b91505092915050565b6000819050919050565b60006154fe6154f96154f4846154d9565b614204565b61412b565b9050919050565b61550e816154e3565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615549816140ed565b82525050565b600061555b8383615540565b60208301905092915050565b6000602082019050919050565b600061557f82615514565b615589818561551f565b935061559483615530565b8060005b838110156155c55781516155ac888261554f565b97506155b783615567565b925050600181019050615598565b5085935050505092915050565b600060a0820190506155e7600083018861427e565b6155f46020830187615505565b81810360408301526156068186615574565b90506156156060830185614328565b615622608083018461427e565b9695505050505050565b600060c0820190506156416000830189614328565b61564e602083018861427e565b61565b6040830187615505565b6156686060830186615505565b6156756080830185614328565b61568260a083018461427e565b979650505050505050565b60008151905061569c81614135565b92915050565b6000806000606084860312156156bb576156ba6140c3565b5b60006156c98682870161568d565b93505060206156da8682870161568d565b92505060406156eb8682870161568d565b915050925092509256fea2646970667358221220d23a5e3fc34839300609616937fb1bb549d7cfb0db5d6f5d3b09e822322993e164736f6c634300080a0033

Deployed Bytecode

0x60806040526004361061036f5760003560e01c80638da5cb5b116101c6578063c0246668116100f7578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610cbd578063f2fde38b14610ce8578063f637434214610d11578063f8b45b0514610d3c57610376565b8063dd62ed3e14610c2a578063e2f4560514610c67578063e884f26014610c9257610376565b8063c876d0b9116100d1578063c876d0b914610b6c578063c8c8ebe414610b97578063d257b34f14610bc2578063d85ba06314610bff57610376565b8063c024666814610af1578063c17b5b8c14610b1a578063c18bc19514610b4357610376565b80639fccce3211610164578063a9059cbb1161013e578063a9059cbb14610a23578063aacebbe314610a60578063b62496f514610a89578063bbc0c74214610ac657610376565b80639fccce3214610990578063a0d82dc5146109bb578063a457c2d7146109e657610376565b8063924de9b7116101a0578063924de9b7146108e857806395d89b41146109115780639a7a23d61461093c5780639c3b4fdc1461096557610376565b80638da5cb5b146108675780638ea5220f1461089257806392136913146108bd57610376565b806349bd5a5e116102a0578063751039fc1161023e5780637bce5a04116102185780637bce5a04146107d35780637cc34b61146107fe5780638095d564146108275780638a8c523c1461085057610376565b8063751039fc146107545780637571336a1461077f57806375f0a874146107a857610376565b80636a486a8e1161027a5780636a486a8e146106aa5780636ddd1713146106d557806370a0823114610700578063715018a61461073d57610376565b806349bd5a5e146106175780634a62bb65146106425780634fbee1931461066d57610376565b80631f3fed8f1161030d57806327c8f835116102e757806327c8f8351461055b578063313ce5671461058657806339509351146105b157806345a0b891146105ee57610376565b80631f3fed8f146104ca578063203e727e146104f557806323b872dd1461051e57610376565b80631694505e116103495780631694505e1461042057806318160ddd1461044b5780631816467f146104765780631a8145bb1461049f57610376565b806306fdde031461037b578063095ea7b3146103a657806310d5de53146103e357610376565b3661037657005b600080fd5b34801561038757600080fd5b50610390610d67565b60405161039d9190614097565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c89190614161565b610df9565b6040516103da91906141bc565b60405180910390f35b3480156103ef57600080fd5b5061040a600480360381019061040591906141d7565b610e17565b60405161041791906141bc565b60405180910390f35b34801561042c57600080fd5b50610435610e37565b6040516104429190614263565b60405180910390f35b34801561045757600080fd5b50610460610e5b565b60405161046d919061428d565b60405180910390f35b34801561048257600080fd5b5061049d600480360381019061049891906141d7565b610e65565b005b3480156104ab57600080fd5b506104b4610fa1565b6040516104c1919061428d565b60405180910390f35b3480156104d657600080fd5b506104df610fa7565b6040516104ec919061428d565b60405180910390f35b34801561050157600080fd5b5061051c600480360381019061051791906142a8565b610fad565b005b34801561052a57600080fd5b50610545600480360381019061054091906142d5565b6110bc565b60405161055291906141bc565b60405180910390f35b34801561056757600080fd5b506105706111b4565b60405161057d9190614337565b60405180910390f35b34801561059257600080fd5b5061059b6111ba565b6040516105a8919061436e565b60405180910390f35b3480156105bd57600080fd5b506105d860048036038101906105d39190614161565b6111c3565b6040516105e591906141bc565b60405180910390f35b3480156105fa57600080fd5b50610615600480360381019061061091906144d1565b61126f565b005b34801561062357600080fd5b5061062c611380565b6040516106399190614337565b60405180910390f35b34801561064e57600080fd5b506106576113a4565b60405161066491906141bc565b60405180910390f35b34801561067957600080fd5b50610694600480360381019061068f91906141d7565b6113b7565b6040516106a191906141bc565b60405180910390f35b3480156106b657600080fd5b506106bf61140d565b6040516106cc919061428d565b60405180910390f35b3480156106e157600080fd5b506106ea611413565b6040516106f791906141bc565b60405180910390f35b34801561070c57600080fd5b50610727600480360381019061072291906141d7565b611426565b604051610734919061428d565b60405180910390f35b34801561074957600080fd5b5061075261146e565b005b34801561076057600080fd5b506107696114f6565b60405161077691906141bc565b60405180910390f35b34801561078b57600080fd5b506107a660048036038101906107a19190614546565b611596565b005b3480156107b457600080fd5b506107bd61166d565b6040516107ca9190614337565b60405180910390f35b3480156107df57600080fd5b506107e8611693565b6040516107f5919061428d565b60405180910390f35b34801561080a57600080fd5b50610825600480360381019061082091906144d1565b611699565b005b34801561083357600080fd5b5061084e60048036038101906108499190614586565b6117aa565b005b34801561085c57600080fd5b506108656118a9565b005b34801561087357600080fd5b5061087c611964565b6040516108899190614337565b60405180910390f35b34801561089e57600080fd5b506108a761198e565b6040516108b49190614337565b60405180910390f35b3480156108c957600080fd5b506108d26119b4565b6040516108df919061428d565b60405180910390f35b3480156108f457600080fd5b5061090f600480360381019061090a91906145d9565b6119ba565b005b34801561091d57600080fd5b50610926611a53565b6040516109339190614097565b60405180910390f35b34801561094857600080fd5b50610963600480360381019061095e9190614546565b611ae5565b005b34801561097157600080fd5b5061097a611bfe565b604051610987919061428d565b60405180910390f35b34801561099c57600080fd5b506109a5611c04565b6040516109b2919061428d565b60405180910390f35b3480156109c757600080fd5b506109d0611c0a565b6040516109dd919061428d565b60405180910390f35b3480156109f257600080fd5b50610a0d6004803603810190610a089190614161565b611c10565b604051610a1a91906141bc565b60405180910390f35b348015610a2f57600080fd5b50610a4a6004803603810190610a459190614161565b611cfb565b604051610a5791906141bc565b60405180910390f35b348015610a6c57600080fd5b50610a876004803603810190610a8291906141d7565b611d19565b005b348015610a9557600080fd5b50610ab06004803603810190610aab91906141d7565b611e55565b604051610abd91906141bc565b60405180910390f35b348015610ad257600080fd5b50610adb611e75565b604051610ae891906141bc565b60405180910390f35b348015610afd57600080fd5b50610b186004803603810190610b139190614546565b611e88565b005b348015610b2657600080fd5b50610b416004803603810190610b3c9190614586565b611fad565b005b348015610b4f57600080fd5b50610b6a6004803603810190610b6591906142a8565b6120ac565b005b348015610b7857600080fd5b50610b816121bb565b604051610b8e91906141bc565b60405180910390f35b348015610ba357600080fd5b50610bac6121ce565b604051610bb9919061428d565b60405180910390f35b348015610bce57600080fd5b50610be96004803603810190610be491906142a8565b6121d4565b604051610bf691906141bc565b60405180910390f35b348015610c0b57600080fd5b50610c14612329565b604051610c21919061428d565b60405180910390f35b348015610c3657600080fd5b50610c516004803603810190610c4c9190614606565b61232f565b604051610c5e919061428d565b60405180910390f35b348015610c7357600080fd5b50610c7c6123b6565b604051610c89919061428d565b60405180910390f35b348015610c9e57600080fd5b50610ca76123bc565b604051610cb491906141bc565b60405180910390f35b348015610cc957600080fd5b50610cd261245c565b604051610cdf919061428d565b60405180910390f35b348015610cf457600080fd5b50610d0f6004803603810190610d0a91906141d7565b612462565b005b348015610d1d57600080fd5b50610d2661255a565b604051610d33919061428d565b60405180910390f35b348015610d4857600080fd5b50610d51612560565b604051610d5e919061428d565b60405180910390f35b606060038054610d7690614675565b80601f0160208091040260200160405190810160405280929190818152602001828054610da290614675565b8015610def5780601f10610dc457610100808354040283529160200191610def565b820191906000526020600020905b815481529060010190602001808311610dd257829003601f168201915b5050505050905090565b6000610e0d610e06612566565b848461256e565b6001905092915050565b601c6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610e6d612566565b73ffffffffffffffffffffffffffffffffffffffff16610e8b611964565b73ffffffffffffffffffffffffffffffffffffffff1614610ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed8906146f3565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60185481565b60175481565b610fb5612566565b73ffffffffffffffffffffffffffffffffffffffff16610fd3611964565b73ffffffffffffffffffffffffffffffffffffffff1614611029576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611020906146f3565b60405180910390fd5b670de0b6b3a76400006103e8600161103f610e5b565b6110499190614742565b61105391906147cb565b61105d91906147cb565b81101561109f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110969061486e565b60405180910390fd5b670de0b6b3a7640000816110b39190614742565b60088190555050565b60006110c9848484612739565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611114612566565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118b90614900565b60405180910390fd5b6111a8856111a0612566565b85840361256e565b60019150509392505050565b61dead81565b60006012905090565b60006112656111d0612566565b8484600160006111de612566565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112609190614920565b61256e565b6001905092915050565b611277612566565b73ffffffffffffffffffffffffffffffffffffffff16611295611964565b73ffffffffffffffffffffffffffffffffffffffff16146112eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e2906146f3565b60405180910390fd5b60005b815181101561137c576001600e60008484815181106113105761130f614976565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080611374906149a5565b9150506112ee565b5050565b7f000000000000000000000000d35092798118fdccf0a9dc0d7d7f7dc753fd5a2181565b600b60009054906101000a900460ff1681565b6000601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60135481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611476612566565b73ffffffffffffffffffffffffffffffffffffffff16611494611964565b73ffffffffffffffffffffffffffffffffffffffff16146114ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e1906146f3565b60405180910390fd5b6114f460006135ca565b565b6000611500612566565b73ffffffffffffffffffffffffffffffffffffffff1661151e611964565b73ffffffffffffffffffffffffffffffffffffffff1614611574576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156b906146f3565b60405180910390fd5b6000600b60006101000a81548160ff0219169083151502179055506001905090565b61159e612566565b73ffffffffffffffffffffffffffffffffffffffff166115bc611964565b73ffffffffffffffffffffffffffffffffffffffff1614611612576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611609906146f3565b60405180910390fd5b80601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60105481565b6116a1612566565b73ffffffffffffffffffffffffffffffffffffffff166116bf611964565b73ffffffffffffffffffffffffffffffffffffffff1614611715576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170c906146f3565b60405180910390fd5b60005b81518110156117a6576000600e600084848151811061173a57611739614976565b5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061179e906149a5565b915050611718565b5050565b6117b2612566565b73ffffffffffffffffffffffffffffffffffffffff166117d0611964565b73ffffffffffffffffffffffffffffffffffffffff1614611826576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181d906146f3565b60405180910390fd5b82601081905550816011819055508060128190555060125460115460105461184e9190614920565b6118589190614920565b600f81905550600a600f5411156118a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189b90614a3a565b60405180910390fd5b505050565b6118b1612566565b73ffffffffffffffffffffffffffffffffffffffff166118cf611964565b73ffffffffffffffffffffffffffffffffffffffff1614611925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191c906146f3565b60405180910390fd5b6001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff02191690831515021790555043601a81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60145481565b6119c2612566565b73ffffffffffffffffffffffffffffffffffffffff166119e0611964565b73ffffffffffffffffffffffffffffffffffffffff1614611a36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2d906146f3565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b606060048054611a6290614675565b80601f0160208091040260200160405190810160405280929190818152602001828054611a8e90614675565b8015611adb5780601f10611ab057610100808354040283529160200191611adb565b820191906000526020600020905b815481529060010190602001808311611abe57829003601f168201915b5050505050905090565b611aed612566565b73ffffffffffffffffffffffffffffffffffffffff16611b0b611964565b73ffffffffffffffffffffffffffffffffffffffff1614611b61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b58906146f3565b60405180910390fd5b7f000000000000000000000000d35092798118fdccf0a9dc0d7d7f7dc753fd5a2173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bf0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be790614acc565b60405180910390fd5b611bfa8282613690565b5050565b60125481565b60195481565b60165481565b60008060016000611c1f612566565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd390614b5e565b60405180910390fd5b611cf0611ce7612566565b8585840361256e565b600191505092915050565b6000611d0f611d08612566565b8484612739565b6001905092915050565b611d21612566565b73ffffffffffffffffffffffffffffffffffffffff16611d3f611964565b73ffffffffffffffffffffffffffffffffffffffff1614611d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d8c906146f3565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601d6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611e90612566565b73ffffffffffffffffffffffffffffffffffffffff16611eae611964565b73ffffffffffffffffffffffffffffffffffffffff1614611f04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611efb906146f3565b60405180910390fd5b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611fa191906141bc565b60405180910390a25050565b611fb5612566565b73ffffffffffffffffffffffffffffffffffffffff16611fd3611964565b73ffffffffffffffffffffffffffffffffffffffff1614612029576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612020906146f3565b60405180910390fd5b8260148190555081601581905550806016819055506016546015546014546120519190614920565b61205b9190614920565b601381905550600a60135411156120a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209e90614a3a565b60405180910390fd5b505050565b6120b4612566565b73ffffffffffffffffffffffffffffffffffffffff166120d2611964565b73ffffffffffffffffffffffffffffffffffffffff1614612128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211f906146f3565b60405180910390fd5b670de0b6b3a76400006103e8600561213e610e5b565b6121489190614742565b61215291906147cb565b61215c91906147cb565b81101561219e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219590614bf0565b60405180910390fd5b670de0b6b3a7640000816121b29190614742565b600a8190555050565b600d60009054906101000a900460ff1681565b60085481565b60006121de612566565b73ffffffffffffffffffffffffffffffffffffffff166121fc611964565b73ffffffffffffffffffffffffffffffffffffffff1614612252576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612249906146f3565b60405180910390fd5b620186a06001612260610e5b565b61226a9190614742565b61227491906147cb565b8210156122b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ad90614c82565b60405180910390fd5b6103e860056122c3610e5b565b6122cd9190614742565b6122d791906147cb565b821115612319576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231090614d14565b60405180910390fd5b8160098190555060019050919050565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006123c6612566565b73ffffffffffffffffffffffffffffffffffffffff166123e4611964565b73ffffffffffffffffffffffffffffffffffffffff161461243a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612431906146f3565b60405180910390fd5b6000600d60006101000a81548160ff0219169083151502179055506001905090565b60115481565b61246a612566565b73ffffffffffffffffffffffffffffffffffffffff16612488611964565b73ffffffffffffffffffffffffffffffffffffffff16146124de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d5906146f3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561254e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161254590614da6565b60405180910390fd5b612557816135ca565b50565b60155481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156125de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d590614e38565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561264e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264590614eca565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161272c919061428d565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a090614f5c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612819576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281090614fee565b60405180910390fd5b600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156128bd5750600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6128fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f390615080565b60405180910390fd5b60008114156129165761291183836000613731565b6135c5565b600b60009054906101000a900460ff1615612fd957612933611964565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156129a15750612971611964565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156129da5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a14575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a2d5750600560149054906101000a900460ff16155b15612fd857600b60019054906101000a900460ff16612b2757601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612ae75750601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612b26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1d906150ec565b60405180910390fd5b5b600d60009054906101000a900460ff1615612cef57612b44611964565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612bcb57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612c2357507f000000000000000000000000d35092798118fdccf0a9dc0d7d7f7dc753fd5a2173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612cee5743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612ca9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ca0906151a4565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612d925750601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612e3957600854811115612ddc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd390615236565b60405180910390fd5b600a54612de883611426565b82612df39190614920565b1115612e34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e2b906152a2565b60405180910390fd5b612fd7565b601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612edc5750601c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f2b57600854811115612f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1d90615334565b60405180910390fd5b612fd6565b601c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612fd557600a54612f8883611426565b82612f939190614920565b1115612fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fcb906152a2565b60405180910390fd5b5b5b5b5b5b6002601a54612fe89190614920565b431115801561304357507f000000000000000000000000d35092798118fdccf0a9dc0d7d7f7dc753fd5a2173ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561308f5750737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156130ed576001600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b60006130f830611426565b90506000600954821015905080801561311d5750600b60029054906101000a900460ff165b80156131365750600560149054906101000a900460ff16155b801561318c5750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156131e25750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156132385750601b60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561327c576001600560146101000a81548160ff0219169083151502179055506132606139b2565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806133325750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561333c57600090505b600081156135b557601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561339f57506000601354115b1561346c576133cc60646133be60135488613c9990919063ffffffff16565b613caf90919063ffffffff16565b9050601354601554826133df9190614742565b6133e991906147cb565b601860008282546133fa9190614920565b92505081905550601354601654826134129190614742565b61341c91906147cb565b6019600082825461342d9190614920565b92505081905550601354601454826134459190614742565b61344f91906147cb565b601760008282546134609190614920565b92505081905550613591565b601d60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156134c757506000600f54115b15613590576134f460646134e6600f5488613c9990919063ffffffff16565b613caf90919063ffffffff16565b9050600f54601154826135079190614742565b61351191906147cb565b601860008282546135229190614920565b92505081905550600f546012548261353a9190614742565b61354491906147cb565b601960008282546135559190614920565b92505081905550600f546010548261356d9190614742565b61357791906147cb565b601760008282546135889190614920565b925050819055505b5b60008111156135a6576135a5873083613731565b5b80856135b29190615354565b94505b6135c0878787613731565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156137a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161379890614f5c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613811576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161380890614fee565b60405180910390fd5b61381c838383613cc5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156138a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613899906153fa565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139359190614920565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613999919061428d565b60405180910390a36139ac848484613cca565b50505050565b60006139bd30611426565b905060006019546017546018546139d49190614920565b6139de9190614920565b90506000808314806139f05750600082145b156139fd57505050613c97565b6014600954613a0c9190614742565b831115613a25576014600954613a229190614742565b92505b600060028360185486613a389190614742565b613a4291906147cb565b613a4c91906147cb565b90506000613a638286613ccf90919063ffffffff16565b90506000479050613a7382613ce5565b6000613a888247613ccf90919063ffffffff16565b90506000613ab387613aa560175485613c9990919063ffffffff16565b613caf90919063ffffffff16565b90506000613ade88613ad060195486613c9990919063ffffffff16565b613caf90919063ffffffff16565b90506000818385613aef9190615354565b613af99190615354565b9050600060188190555060006017819055506000601981905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613b599061544b565b60006040518083038185875af1925050503d8060008114613b96576040519150601f19603f3d011682016040523d82523d6000602084013e613b9b565b606091505b505080985050600087118015613bb15750600081115b15613bfe57613bc08782613f22565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601854604051613bf593929190615460565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613c449061544b565b60006040518083038185875af1925050503d8060008114613c81576040519150601f19603f3d011682016040523d82523d6000602084013e613c86565b606091505b505080985050505050505050505050505b565b60008183613ca79190614742565b905092915050565b60008183613cbd91906147cb565b905092915050565b505050565b505050565b60008183613cdd9190615354565b905092915050565b6000600267ffffffffffffffff811115613d0257613d0161438e565b5b604051908082528060200260200182016040528015613d305781602001602082028036833780820191505090505b5090503081600081518110613d4857613d47614976565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613ded573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613e1191906154ac565b81600181518110613e2557613e24614976565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613e8a307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461256e565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613eec9594939291906155d2565b600060405180830381600087803b158015613f0657600080fd5b505af1158015613f1a573d6000803e3d6000fd5b505050505050565b613f4d307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461256e565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613fb49695949392919061562c565b60606040518083038185885af1158015613fd2573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613ff791906156a2565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561403857808201518184015260208101905061401d565b83811115614047576000848401525b50505050565b6000601f19601f8301169050919050565b600061406982613ffe565b6140738185614009565b935061408381856020860161401a565b61408c8161404d565b840191505092915050565b600060208201905081810360008301526140b1818461405e565b905092915050565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006140f8826140cd565b9050919050565b614108816140ed565b811461411357600080fd5b50565b600081359050614125816140ff565b92915050565b6000819050919050565b61413e8161412b565b811461414957600080fd5b50565b60008135905061415b81614135565b92915050565b60008060408385031215614178576141776140c3565b5b600061418685828601614116565b92505060206141978582860161414c565b9150509250929050565b60008115159050919050565b6141b6816141a1565b82525050565b60006020820190506141d160008301846141ad565b92915050565b6000602082840312156141ed576141ec6140c3565b5b60006141fb84828501614116565b91505092915050565b6000819050919050565b600061422961422461421f846140cd565b614204565b6140cd565b9050919050565b600061423b8261420e565b9050919050565b600061424d82614230565b9050919050565b61425d81614242565b82525050565b60006020820190506142786000830184614254565b92915050565b6142878161412b565b82525050565b60006020820190506142a2600083018461427e565b92915050565b6000602082840312156142be576142bd6140c3565b5b60006142cc8482850161414c565b91505092915050565b6000806000606084860312156142ee576142ed6140c3565b5b60006142fc86828701614116565b935050602061430d86828701614116565b925050604061431e8682870161414c565b9150509250925092565b614331816140ed565b82525050565b600060208201905061434c6000830184614328565b92915050565b600060ff82169050919050565b61436881614352565b82525050565b6000602082019050614383600083018461435f565b92915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6143c68261404d565b810181811067ffffffffffffffff821117156143e5576143e461438e565b5b80604052505050565b60006143f86140b9565b905061440482826143bd565b919050565b600067ffffffffffffffff8211156144245761442361438e565b5b602082029050602081019050919050565b600080fd5b600061444d61444884614409565b6143ee565b905080838252602082019050602084028301858111156144705761446f614435565b5b835b8181101561449957806144858882614116565b845260208401935050602081019050614472565b5050509392505050565b600082601f8301126144b8576144b7614389565b5b81356144c884826020860161443a565b91505092915050565b6000602082840312156144e7576144e66140c3565b5b600082013567ffffffffffffffff811115614505576145046140c8565b5b614511848285016144a3565b91505092915050565b614523816141a1565b811461452e57600080fd5b50565b6000813590506145408161451a565b92915050565b6000806040838503121561455d5761455c6140c3565b5b600061456b85828601614116565b925050602061457c85828601614531565b9150509250929050565b60008060006060848603121561459f5761459e6140c3565b5b60006145ad8682870161414c565b93505060206145be8682870161414c565b92505060406145cf8682870161414c565b9150509250925092565b6000602082840312156145ef576145ee6140c3565b5b60006145fd84828501614531565b91505092915050565b6000806040838503121561461d5761461c6140c3565b5b600061462b85828601614116565b925050602061463c85828601614116565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061468d57607f821691505b602082108114156146a1576146a0614646565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006146dd602083614009565b91506146e8826146a7565b602082019050919050565b6000602082019050818103600083015261470c816146d0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061474d8261412b565b91506147588361412b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561479157614790614713565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006147d68261412b565b91506147e18361412b565b9250826147f1576147f061479c565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614858602f83614009565b9150614863826147fc565b604082019050919050565b600060208201905081810360008301526148878161484b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006148ea602883614009565b91506148f58261488e565b604082019050919050565b60006020820190508181036000830152614919816148dd565b9050919050565b600061492b8261412b565b91506149368361412b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561496b5761496a614713565b5b828201905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60006149b08261412b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156149e3576149e2614713565b5b600182019050919050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b6000614a24601d83614009565b9150614a2f826149ee565b602082019050919050565b60006020820190508181036000830152614a5381614a17565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614ab6603983614009565b9150614ac182614a5a565b604082019050919050565b60006020820190508181036000830152614ae581614aa9565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614b48602583614009565b9150614b5382614aec565b604082019050919050565b60006020820190508181036000830152614b7781614b3b565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614bda602483614009565b9150614be582614b7e565b604082019050919050565b60006020820190508181036000830152614c0981614bcd565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614c6c603583614009565b9150614c7782614c10565b604082019050919050565b60006020820190508181036000830152614c9b81614c5f565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614cfe603483614009565b9150614d0982614ca2565b604082019050919050565b60006020820190508181036000830152614d2d81614cf1565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614d90602683614009565b9150614d9b82614d34565b604082019050919050565b60006020820190508181036000830152614dbf81614d83565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614e22602483614009565b9150614e2d82614dc6565b604082019050919050565b60006020820190508181036000830152614e5181614e15565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614eb4602283614009565b9150614ebf82614e58565b604082019050919050565b60006020820190508181036000830152614ee381614ea7565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614f46602583614009565b9150614f5182614eea565b604082019050919050565b60006020820190508181036000830152614f7581614f39565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614fd8602383614009565b9150614fe382614f7c565b604082019050919050565b6000602082019050818103600083015261500781614fcb565b9050919050565b7f596f752068617665206265656e20626c61636b6c69737465642066726f6d207460008201527f72616e73666572696e6720746f6b656e73000000000000000000000000000000602082015250565b600061506a603183614009565b91506150758261500e565b604082019050919050565b600060208201905081810360008301526150998161505d565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006150d6601683614009565b91506150e1826150a0565b602082019050919050565b60006020820190508181036000830152615105816150c9565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061518e604983614009565b91506151998261510c565b606082019050919050565b600060208201905081810360008301526151bd81615181565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000615220603583614009565b915061522b826151c4565b604082019050919050565b6000602082019050818103600083015261524f81615213565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061528c601383614009565b915061529782615256565b602082019050919050565b600060208201905081810360008301526152bb8161527f565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b600061531e603683614009565b9150615329826152c2565b604082019050919050565b6000602082019050818103600083015261534d81615311565b9050919050565b600061535f8261412b565b915061536a8361412b565b92508282101561537d5761537c614713565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006153e4602683614009565b91506153ef82615388565b604082019050919050565b60006020820190508181036000830152615413816153d7565b9050919050565b600081905092915050565b50565b600061543560008361541a565b915061544082615425565b600082019050919050565b600061545682615428565b9150819050919050565b6000606082019050615475600083018661427e565b615482602083018561427e565b61548f604083018461427e565b949350505050565b6000815190506154a6816140ff565b92915050565b6000602082840312156154c2576154c16140c3565b5b60006154d084828501615497565b91505092915050565b6000819050919050565b60006154fe6154f96154f4846154d9565b614204565b61412b565b9050919050565b61550e816154e3565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b615549816140ed565b82525050565b600061555b8383615540565b60208301905092915050565b6000602082019050919050565b600061557f82615514565b615589818561551f565b935061559483615530565b8060005b838110156155c55781516155ac888261554f565b97506155b783615567565b925050600181019050615598565b5085935050505092915050565b600060a0820190506155e7600083018861427e565b6155f46020830187615505565b81810360408301526156068186615574565b90506156156060830185614328565b615622608083018461427e565b9695505050505050565b600060c0820190506156416000830189614328565b61564e602083018861427e565b61565b6040830187615505565b6156686060830186615505565b6156756080830185614328565b61568260a083018461427e565b979650505050505050565b60008151905061569c81614135565b92915050565b6000806000606084860312156156bb576156ba6140c3565b5b60006156c98682870161568d565b93505060206156da8682870161568d565b92505060406156eb8682870161568d565b915050925092509256fea2646970667358221220d23a5e3fc34839300609616937fb1bb549d7cfb0db5d6f5d3b09e822322993e164736f6c634300080a0033

Deployed Bytecode Sourcemap

32873:17476:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9727:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12035:210;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34362:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32953:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10847:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42076:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34080:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34040;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38993:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12727:529;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33056:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10689:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13665:297;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40932:189;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33011:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33333:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42241:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33895:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33413:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11018:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2846:103;;;;;;;;;;;;;:::i;:::-;;38101:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39540:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33148:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33788;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41129:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39911:403;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37901:148;;;;;;;;;;;;;:::i;:::-;;2195:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33185:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33930:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39803:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9946:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41329:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33862:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34120:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34006:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14465:482;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11408:216;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41837:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34583:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33373:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40742:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40322:412;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39276:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33631:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33218:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38488:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33754:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11687:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33260:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38283:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33825:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3104:238;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33968:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33300:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9727:100;9781:13;9814:5;9807:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9727:100;:::o;12035:210::-;12154:4;12176:39;12185:12;:10;:12::i;:::-;12199:7;12208:6;12176:8;:39::i;:::-;12233:4;12226:11;;12035:210;;;;:::o;34362:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32953:51::-;;;:::o;10847:108::-;10908:7;10935:12;;10928:19;;10847:108;:::o;42076:157::-;2426:12;:10;:12::i;:::-;2415:23;;:7;:5;:7::i;:::-;:23;;;2407:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42183:9:::1;;;;;;;;;;;42155:38;;42172:9;42155:38;;;;;;;;;;;;42216:9;42204;;:21;;;;;;;;;;;;;;;;;;42076:157:::0;:::o;34080:33::-;;;;:::o;34040:::-;;;;:::o;38993:275::-;2426:12;:10;:12::i;:::-;2415:23;;:7;:5;:7::i;:::-;:23;;;2407:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39130:4:::1;39122;39117:1;39101:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39100:26;;;;:::i;:::-;39099:35;;;;:::i;:::-;39089:6;:45;;39067:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;39253:6;39243;:17;;;;:::i;:::-;39220:20;:40;;;;38993:275:::0;:::o;12727:529::-;12867:4;12884:36;12894:6;12902:9;12913:6;12884:9;:36::i;:::-;12933:24;12960:11;:19;12972:6;12960:19;;;;;;;;;;;;;;;:33;12980:12;:10;:12::i;:::-;12960:33;;;;;;;;;;;;;;;;12933:60;;13046:6;13026:16;:26;;13004:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;13156:57;13165:6;13173:12;:10;:12::i;:::-;13206:6;13187:16;:25;13156:8;:57::i;:::-;13244:4;13237:11;;;12727:529;;;;;:::o;33056:53::-;33102:6;33056:53;:::o;10689:93::-;10747:5;10772:2;10765:9;;10689:93;:::o;13665:297::-;13780:4;13802:130;13825:12;:10;:12::i;:::-;13852:7;13911:10;13874:11;:25;13886:12;:10;:12::i;:::-;13874:25;;;;;;;;;;;;;;;:34;13900:7;13874:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13802:8;:130::i;:::-;13950:4;13943:11;;13665:297;;;;:::o;40932:189::-;2426:12;:10;:12::i;:::-;2415:23;;:7;:5;:7::i;:::-;:23;;;2407:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41019:6:::1;41014:100;41035:8;:15;41031:1;:19;41014:100;;;41098:4;41072:10;:23;41083:8;41092:1;41083:11;;;;;;;;:::i;:::-;;;;;;;;41072:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;41052:3;;;;;:::i;:::-;;;;41014:100;;;;40932:189:::0;:::o;33011:38::-;;;:::o;33333:33::-;;;;;;;;;;;;;:::o;42241:126::-;42307:4;42331:19;:28;42351:7;42331:28;;;;;;;;;;;;;;;;;;;;;;;;;42324:35;;42241:126;;;:::o;33895:28::-;;;;:::o;33413:31::-;;;;;;;;;;;;;:::o;11018:177::-;11137:7;11169:9;:18;11179:7;11169:18;;;;;;;;;;;;;;;;11162:25;;11018:177;;;:::o;2846:103::-;2426:12;:10;:12::i;:::-;2415:23;;:7;:5;:7::i;:::-;:23;;;2407:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2911:30:::1;2938:1;2911:18;:30::i;:::-;2846:103::o:0;38101:121::-;38153:4;2426:12;:10;:12::i;:::-;2415:23;;:7;:5;:7::i;:::-;:23;;;2407:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38187:5:::1;38170:14;;:22;;;;;;;;;;;;;;;;;;38210:4;38203:11;;38101:121:::0;:::o;39540:167::-;2426:12;:10;:12::i;:::-;2415:23;;:7;:5;:7::i;:::-;:23;;;2407:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39695:4:::1;39653:31;:39;39685:6;39653:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39540:167:::0;;:::o;33148:30::-;;;;;;;;;;;;;:::o;33788:::-;;;;:::o;41129:192::-;2426:12;:10;:12::i;:::-;2415:23;;:7;:5;:7::i;:::-;:23;;;2407:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41218:6:::1;41213:101;41234:8;:15;41230:1;:19;41213:101;;;41297:5;41271:10;:23;41282:8;41291:1;41282:11;;;;;;;;:::i;:::-;;;;;;;;41271:23;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;41251:3;;;;;:::i;:::-;;;;41213:101;;;;41129:192:::0;:::o;39911:403::-;2426:12;:10;:12::i;:::-;2415:23;;:7;:5;:7::i;:::-;:23;;;2407:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40079:13:::1;40061:15;:31;;;;40121:13;40103:15;:31;;;;40157:7;40145:9;:19;;;;40226:9;;40208:15;;40190;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;40175:12;:60;;;;40270:2;40254:12;;:18;;40246:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;39911:403:::0;;;:::o;37901:148::-;2426:12;:10;:12::i;:::-;2415:23;;:7;:5;:7::i;:::-;:23;;;2407:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37972:4:::1;37956:13;;:20;;;;;;;;;;;;;;;;;;38001:4;37987:11;;:18;;;;;;;;;;;;;;;;;;38029:12;38016:10;:25;;;;37901:148::o:0;2195:87::-;2241:7;2268:6;;;;;;;;;;;2261:13;;2195:87;:::o;33185:24::-;;;;;;;;;;;;;:::o;33930:31::-;;;;:::o;39803:100::-;2426:12;:10;:12::i;:::-;2415:23;;:7;:5;:7::i;:::-;:23;;;2407:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39888:7:::1;39874:11;;:21;;;;;;;;;;;;;;;;;;39803:100:::0;:::o;9946:104::-;10002:13;10035:7;10028:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9946:104;:::o;41329:304::-;2426:12;:10;:12::i;:::-;2415:23;;:7;:5;:7::i;:::-;:23;;;2407:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41473:13:::1;41465:21;;:4;:21;;;;41443:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;41584:41;41613:4;41619:5;41584:28;:41::i;:::-;41329:304:::0;;:::o;33862:24::-;;;;:::o;34120:27::-;;;;:::o;34006:25::-;;;;:::o;14465:482::-;14585:4;14607:24;14634:11;:25;14646:12;:10;:12::i;:::-;14634:25;;;;;;;;;;;;;;;:34;14660:7;14634:34;;;;;;;;;;;;;;;;14607:61;;14721:15;14701:16;:35;;14679:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;14837:67;14846:12;:10;:12::i;:::-;14860:7;14888:15;14869:16;:34;14837:8;:67::i;:::-;14935:4;14928:11;;;14465:482;;;;:::o;11408:216::-;11530:4;11552:42;11562:12;:10;:12::i;:::-;11576:9;11587:6;11552:9;:42::i;:::-;11612:4;11605:11;;11408:216;;;;:::o;41837:231::-;2426:12;:10;:12::i;:::-;2415:23;;:7;:5;:7::i;:::-;:23;;;2407:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41997:15:::1;;;;;;;;;;;41954:59;;41977:18;41954:59;;;;;;;;;;;;42042:18;42024:15;;:36;;;;;;;;;;;;;;;;;;41837:231:::0;:::o;34583:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33373:33::-;;;;;;;;;;;;;:::o;40742:182::-;2426:12;:10;:12::i;:::-;2415:23;;:7;:5;:7::i;:::-;:23;;;2407:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40858:8:::1;40827:19;:28;40847:7;40827:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40898:7;40882:34;;;40907:8;40882:34;;;;;;:::i;:::-;;;;;;;;40742:182:::0;;:::o;40322:412::-;2426:12;:10;:12::i;:::-;2415:23;;:7;:5;:7::i;:::-;:23;;;2407:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40492:13:::1;40473:16;:32;;;;40535:13;40516:16;:32;;;;40572:7;40559:10;:20;;;;40644:10;;40625:16;;40606;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;40590:13;:64;;;;40690:2;40673:13;;:19;;40665:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;40322:412:::0;;;:::o;39276:256::-;2426:12;:10;:12::i;:::-;2415:23;;:7;:5;:7::i;:::-;:23;;;2407:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39416:4:::1;39408;39403:1;39387:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39386:26;;;;:::i;:::-;39385:35;;;;:::i;:::-;39375:6;:45;;39353:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;39517:6;39507;:17;;;;:::i;:::-;39495:9;:29;;;;39276:256:::0;:::o;33631:39::-;;;;;;;;;;;;;:::o;33218:35::-;;;;:::o;38488:497::-;38596:4;2426:12;:10;:12::i;:::-;2415:23;;:7;:5;:7::i;:::-;:23;;;2407:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38675:6:::1;38670:1;38654:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38653:28;;;;:::i;:::-;38640:9;:41;;38618:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;38830:4;38825:1;38809:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38808:26;;;;:::i;:::-;38795:9;:39;;38773:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;38946:9;38925:18;:30;;;;38973:4;38966:11;;38488:497:::0;;;:::o;33754:27::-;;;;:::o;11687:201::-;11821:7;11853:11;:18;11865:5;11853:18;;;;;;;;;;;;;;;:27;11872:7;11853:27;;;;;;;;;;;;;;;;11846:34;;11687:201;;;;:::o;33260:33::-;;;;:::o;38283:135::-;38343:4;2426:12;:10;:12::i;:::-;2415:23;;:7;:5;:7::i;:::-;:23;;;2407:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38383:5:::1;38360:20;;:28;;;;;;;;;;;;;;;;;;38406:4;38399:11;;38283:135:::0;:::o;33825:30::-;;;;:::o;3104:238::-;2426:12;:10;:12::i;:::-;2415:23;;:7;:5;:7::i;:::-;:23;;;2407:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3227:1:::1;3207:22;;:8;:22;;;;3185:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;3306:28;3325:8;3306:18;:28::i;:::-;3104:238:::0;:::o;33968:31::-;;;;:::o;33300:24::-;;;;:::o;843:98::-;896:7;923:10;916:17;;843:98;:::o;18255:380::-;18408:1;18391:19;;:5;:19;;;;18383:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18489:1;18470:21;;:7;:21;;;;18462:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18573:6;18543:11;:18;18555:5;18543:18;;;;;;;;;;;;;;;:27;18562:7;18543:27;;;;;;;;;;;;;;;:36;;;;18611:7;18595:32;;18604:5;18595:32;;;18620:6;18595:32;;;;;;:::i;:::-;;;;;;;;18255:380;;;:::o;42375:5085::-;42523:1;42507:18;;:4;:18;;;;42499:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42600:1;42586:16;;:2;:16;;;;42578:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;42662:10;:14;42673:2;42662:14;;;;;;;;;;;;;;;;;;;;;;;;;42661:15;:36;;;;;42681:10;:16;42692:4;42681:16;;;;;;;;;;;;;;;;;;;;;;;;;42680:17;42661:36;42653:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;42778:1;42768:6;:11;42764:93;;;42796:28;42812:4;42818:2;42822:1;42796:15;:28::i;:::-;42839:7;;42764:93;42873:14;;;;;;;;;;;42869:2487;;;42934:7;:5;:7::i;:::-;42926:15;;:4;:15;;;;:49;;;;;42968:7;:5;:7::i;:::-;42962:13;;:2;:13;;;;42926:49;:86;;;;;43010:1;42996:16;;:2;:16;;;;42926:86;:128;;;;;43047:6;43033:21;;:2;:21;;;;42926:128;:158;;;;;43076:8;;;;;;;;;;;43075:9;42926:158;42904:2441;;;43124:13;;;;;;;;;;;43119:223;;43196:19;:25;43216:4;43196:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;43225:19;:23;43245:2;43225:23;;;;;;;;;;;;;;;;;;;;;;;;;43196:52;43162:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;43119:223;43498:20;;;;;;;;;;;43494:641;;;43579:7;:5;:7::i;:::-;43573:13;;:2;:13;;;;:72;;;;;43629:15;43615:30;;:2;:30;;;;43573:72;:129;;;;;43688:13;43674:28;;:2;:28;;;;43573:129;43543:573;;;43866:12;43791:28;:39;43820:9;43791:39;;;;;;;;;;;;;;;;:87;43753:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;44080:12;44038:28;:39;44067:9;44038:39;;;;;;;;;;;;;;;:54;;;;43543:573;43494:641;44209:25;:31;44235:4;44209:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;44266:31;:35;44298:2;44266:35;;;;;;;;;;;;;;;;;;;;;;;;;44265:36;44209:92;44183:1147;;;44388:20;;44378:6;:30;;44344:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;44596:9;;44579:13;44589:2;44579:9;:13::i;:::-;44570:6;:22;;;;:::i;:::-;:35;;44536:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44183:1147;;;44774:25;:29;44800:2;44774:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;44829:31;:37;44861:4;44829:37;;;;;;;;;;;;;;;;;;;;;;;;;44828:38;44774:92;44748:582;;;44953:20;;44943:6;:30;;44909:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;44748:582;;;45110:31;:35;45142:2;45110:35;;;;;;;;;;;;;;;;;;;;;;;;;45105:225;;45230:9;;45213:13;45223:2;45213:9;:13::i;:::-;45204:6;:22;;;;:::i;:::-;:35;;45170:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;45105:225;44748:582;44183:1147;42904:2441;42869:2487;45429:1;45416:10;;:14;;;;:::i;:::-;45399:12;:32;;:72;;;;;45458:13;45452:19;;:2;:19;;;;45399:72;:151;;;;;45507:42;45493:57;;:2;:57;;;;45399:151;45395:220;;;45599:4;45582:10;:14;45593:2;45582:14;;;;;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;45395:220;45627:28;45658:24;45676:4;45658:9;:24::i;:::-;45627:55;;45695:12;45734:18;;45710:20;:42;;45695:57;;45783:7;:35;;;;;45807:11;;;;;;;;;;;45783:35;:61;;;;;45836:8;;;;;;;;;;;45835:9;45783:61;:110;;;;;45862:25;:31;45888:4;45862:31;;;;;;;;;;;;;;;;;;;;;;;;;45861:32;45783:110;:153;;;;;45911:19;:25;45931:4;45911:25;;;;;;;;;;;;;;;;;;;;;;;;;45910:26;45783:153;:194;;;;;45954:19;:23;45974:2;45954:23;;;;;;;;;;;;;;;;;;;;;;;;;45953:24;45783:194;45765:326;;;46015:4;46004:8;;:15;;;;;;;;;;;;;;;;;;46036:10;:8;:10::i;:::-;46074:5;46063:8;;:16;;;;;;;;;;;;;;;;;;45765:326;46103:12;46119:8;;;;;;;;;;;46118:9;46103:24;;46229:19;:25;46249:4;46229:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;46258:19;:23;46278:2;46258:23;;;;;;;;;;;;;;;;;;;;;;;;;46229:52;46225:100;;;46308:5;46298:15;;46225:100;46337:12;46442:7;46438:969;;;46494:25;:29;46520:2;46494:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;46543:1;46527:13;;:17;46494:50;46490:768;;;46572:34;46602:3;46572:25;46583:13;;46572:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;46565:41;;46675:13;;46655:16;;46648:4;:23;;;;:::i;:::-;46647:41;;;;:::i;:::-;46625:18;;:63;;;;;;;:::i;:::-;;;;;;;;46745:13;;46731:10;;46724:4;:17;;;;:::i;:::-;46723:35;;;;:::i;:::-;46707:12;;:51;;;;;;;:::i;:::-;;;;;;;;46827:13;;46807:16;;46800:4;:23;;;;:::i;:::-;46799:41;;;;:::i;:::-;46777:18;;:63;;;;;;;:::i;:::-;;;;;;;;46490:768;;;46902:25;:31;46928:4;46902:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;46952:1;46937:12;;:16;46902:51;46898:360;;;46981:33;47010:3;46981:24;46992:12;;46981:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;46974:40;;47082:12;;47063:15;;47056:4;:22;;;;:::i;:::-;47055:39;;;;:::i;:::-;47033:18;;:61;;;;;;;:::i;:::-;;;;;;;;47150:12;;47137:9;;47130:4;:16;;;;:::i;:::-;47129:33;;;;:::i;:::-;47113:12;;:49;;;;;;;:::i;:::-;;;;;;;;47230:12;;47211:15;;47204:4;:22;;;;:::i;:::-;47203:39;;;;:::i;:::-;47181:18;;:61;;;;;;;:::i;:::-;;;;;;;;46898:360;46490:768;47285:1;47278:4;:8;47274:91;;;47307:42;47323:4;47337;47344;47307:15;:42::i;:::-;47274:91;47391:4;47381:14;;;;;:::i;:::-;;;46438:969;47419:33;47435:4;47441:2;47445:6;47419:15;:33::i;:::-;42488:4972;;;;42375:5085;;;;:::o;3502:191::-;3576:16;3595:6;;;;;;;;;;;3576:25;;3621:8;3612:6;;:17;;;;;;;;;;;;;;;;;;3676:8;3645:40;;3666:8;3645:40;;;;;;;;;;;;3565:128;3502:191;:::o;41641:188::-;41758:5;41724:25;:31;41750:4;41724:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41815:5;41781:40;;41809:4;41781:40;;;;;;;;;;;;41641:188;;:::o;15437:770::-;15595:1;15577:20;;:6;:20;;;;15569:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15679:1;15658:23;;:9;:23;;;;15650:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15734:47;15755:6;15763:9;15774:6;15734:20;:47::i;:::-;15794:21;15818:9;:17;15828:6;15818:17;;;;;;;;;;;;;;;;15794:41;;15885:6;15868:13;:23;;15846:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;16029:6;16013:13;:22;15993:9;:17;16003:6;15993:17;;;;;;;;;;;;;;;:42;;;;16081:6;16057:9;:20;16067:9;16057:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;16122:9;16105:35;;16114:6;16105:35;;;16133:6;16105:35;;;;;;:::i;:::-;;;;;;;;16153:46;16173:6;16181:9;16192:6;16153:19;:46::i;:::-;15558:649;15437:770;;;:::o;48590:1756::-;48629:23;48655:24;48673:4;48655:9;:24::i;:::-;48629:50;;48690:25;48786:12;;48752:18;;48718;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;48690:108;;48809:12;48857:1;48838:15;:20;:46;;;;48883:1;48862:17;:22;48838:46;48834:85;;;48901:7;;;;;48834:85;48974:2;48953:18;;:23;;;;:::i;:::-;48935:15;:41;48931:115;;;49032:2;49011:18;;:23;;;;:::i;:::-;48993:41;;48931:115;49107:23;49220:1;49187:17;49152:18;;49134:15;:36;;;;:::i;:::-;49133:71;;;;:::i;:::-;:88;;;;:::i;:::-;49107:114;;49232:26;49261:36;49281:15;49261;:19;;:36;;;;:::i;:::-;49232:65;;49310:25;49338:21;49310:49;;49372:36;49389:18;49372:16;:36::i;:::-;49421:18;49442:44;49468:17;49442:21;:25;;:44;;;;:::i;:::-;49421:65;;49499:23;49525:81;49578:17;49525:34;49540:18;;49525:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;49499:107;;49617:17;49637:51;49670:17;49637:28;49652:12;;49637:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;49617:71;;49701:23;49758:9;49740:15;49727:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;49701:66;;49801:1;49780:18;:22;;;;49834:1;49813:18;:22;;;;49861:1;49846:12;:16;;;;49897:9;;;;;;;;;;;49889:23;;49920:9;49889:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49875:59;;;;;49969:1;49951:15;:19;:42;;;;;49992:1;49974:15;:19;49951:42;49947:278;;;50010:46;50023:15;50040;50010:12;:46::i;:::-;50076:137;50109:18;50146:15;50180:18;;50076:137;;;;;;;;:::i;:::-;;;;;;;;49947:278;50259:15;;;;;;;;;;;50251:29;;50302:21;50251:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50237:101;;;;;48618:1728;;;;;;;;;;48590:1756;:::o;23868:98::-;23926:7;23957:1;23953;:5;;;;:::i;:::-;23946:12;;23868:98;;;;:::o;24267:::-;24325:7;24356:1;24352;:5;;;;:::i;:::-;24345:12;;24267:98;;;;:::o;19235:125::-;;;;:::o;19964:124::-;;;;:::o;23511:98::-;23569:7;23600:1;23596;:5;;;;:::i;:::-;23589:12;;23511:98;;;;:::o;47468:589::-;47594:21;47632:1;47618:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47594:40;;47663:4;47645;47650:1;47645:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;47689:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47679:4;47684:1;47679:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;47724:62;47741:4;47756:15;47774:11;47724:8;:62::i;:::-;47825:15;:66;;;47906:11;47932:1;47976:4;48003;48023:15;47825:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47523:534;47468:589;:::o;48065:517::-;48213:62;48230:4;48245:15;48263:11;48213:8;:62::i;:::-;48318:15;:31;;;48357:9;48390:4;48410:11;48436:1;48479;33102:6;48548:15;48318:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;48065: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:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1397:75::-;1430:6;1463:2;1457:9;1447:19;;1397:75;:::o;1478:117::-;1587:1;1584;1577:12;1601:117;1710:1;1707;1700:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:60::-;3857:3;3878:5;3871:12;;3829:60;;;:::o;3895:142::-;3945:9;3978:53;3996:34;4005:24;4023:5;4005:24;:::i;:::-;3996:34;:::i;:::-;3978:53;:::i;:::-;3965:66;;3895:142;;;:::o;4043:126::-;4093:9;4126:37;4157:5;4126:37;:::i;:::-;4113:50;;4043:126;;;:::o;4175:153::-;4252:9;4285:37;4316:5;4285:37;:::i;:::-;4272:50;;4175:153;;;:::o;4334:185::-;4448:64;4506:5;4448:64;:::i;:::-;4443:3;4436:77;4334:185;;:::o;4525:276::-;4645:4;4683:2;4672:9;4668:18;4660:26;;4696:98;4791:1;4780:9;4776:17;4767:6;4696:98;:::i;:::-;4525:276;;;;:::o;4807:118::-;4894:24;4912:5;4894:24;:::i;:::-;4889:3;4882:37;4807:118;;:::o;4931:222::-;5024:4;5062:2;5051:9;5047:18;5039:26;;5075:71;5143:1;5132:9;5128:17;5119:6;5075:71;:::i;:::-;4931:222;;;;:::o;5159:329::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:119;;;5273:79;;:::i;:::-;5235:119;5393:1;5418:53;5463:7;5454:6;5443:9;5439:22;5418:53;:::i;:::-;5408:63;;5364:117;5159:329;;;;:::o;5494:619::-;5571:6;5579;5587;5636:2;5624:9;5615:7;5611:23;5607:32;5604:119;;;5642:79;;:::i;:::-;5604:119;5762:1;5787:53;5832:7;5823:6;5812:9;5808:22;5787:53;:::i;:::-;5777:63;;5733:117;5889:2;5915:53;5960:7;5951:6;5940:9;5936:22;5915:53;:::i;:::-;5905:63;;5860:118;6017:2;6043:53;6088:7;6079:6;6068:9;6064:22;6043:53;:::i;:::-;6033:63;;5988:118;5494:619;;;;;:::o;6119:118::-;6206:24;6224:5;6206:24;:::i;:::-;6201:3;6194:37;6119:118;;:::o;6243:222::-;6336:4;6374:2;6363:9;6359:18;6351:26;;6387:71;6455:1;6444:9;6440:17;6431:6;6387:71;:::i;:::-;6243:222;;;;:::o;6471:86::-;6506:7;6546:4;6539:5;6535:16;6524:27;;6471:86;;;:::o;6563:112::-;6646:22;6662:5;6646:22;:::i;:::-;6641:3;6634:35;6563:112;;:::o;6681:214::-;6770:4;6808:2;6797:9;6793:18;6785:26;;6821:67;6885:1;6874:9;6870:17;6861:6;6821:67;:::i;:::-;6681:214;;;;:::o;6901:117::-;7010:1;7007;7000:12;7024:180;7072:77;7069:1;7062:88;7169:4;7166:1;7159:15;7193:4;7190:1;7183:15;7210:281;7293:27;7315:4;7293:27;:::i;:::-;7285:6;7281:40;7423:6;7411:10;7408:22;7387:18;7375:10;7372:34;7369:62;7366:88;;;7434:18;;:::i;:::-;7366:88;7474:10;7470:2;7463:22;7253:238;7210:281;;:::o;7497:129::-;7531:6;7558:20;;:::i;:::-;7548:30;;7587:33;7615:4;7607:6;7587:33;:::i;:::-;7497:129;;;:::o;7632:311::-;7709:4;7799:18;7791:6;7788:30;7785:56;;;7821:18;;:::i;:::-;7785:56;7871:4;7863:6;7859:17;7851:25;;7931:4;7925;7921:15;7913:23;;7632:311;;;:::o;7949:117::-;8058:1;8055;8048:12;8089:710;8185:5;8210:81;8226:64;8283:6;8226:64;:::i;:::-;8210:81;:::i;:::-;8201:90;;8311:5;8340:6;8333:5;8326:21;8374:4;8367:5;8363:16;8356:23;;8427:4;8419:6;8415:17;8407:6;8403:30;8456:3;8448:6;8445:15;8442:122;;;8475:79;;:::i;:::-;8442:122;8590:6;8573:220;8607:6;8602:3;8599:15;8573:220;;;8682:3;8711:37;8744:3;8732:10;8711:37;:::i;:::-;8706:3;8699:50;8778:4;8773:3;8769:14;8762:21;;8649:144;8633:4;8628:3;8624:14;8617:21;;8573:220;;;8577:21;8191:608;;8089:710;;;;;:::o;8822:370::-;8893:5;8942:3;8935:4;8927:6;8923:17;8919:27;8909:122;;8950:79;;:::i;:::-;8909:122;9067:6;9054:20;9092:94;9182:3;9174:6;9167:4;9159:6;9155:17;9092:94;:::i;:::-;9083:103;;8899:293;8822:370;;;;:::o;9198:539::-;9282:6;9331:2;9319:9;9310:7;9306:23;9302:32;9299:119;;;9337:79;;:::i;:::-;9299:119;9485:1;9474:9;9470:17;9457:31;9515:18;9507:6;9504:30;9501:117;;;9537:79;;:::i;:::-;9501:117;9642:78;9712:7;9703:6;9692:9;9688:22;9642:78;:::i;:::-;9632:88;;9428:302;9198:539;;;;:::o;9743:116::-;9813:21;9828:5;9813:21;:::i;:::-;9806:5;9803:32;9793:60;;9849:1;9846;9839:12;9793:60;9743:116;:::o;9865:133::-;9908:5;9946:6;9933:20;9924:29;;9962:30;9986:5;9962:30;:::i;:::-;9865:133;;;;:::o;10004:468::-;10069:6;10077;10126:2;10114:9;10105:7;10101:23;10097:32;10094:119;;;10132:79;;:::i;:::-;10094:119;10252:1;10277:53;10322:7;10313:6;10302:9;10298:22;10277:53;:::i;:::-;10267:63;;10223:117;10379:2;10405:50;10447:7;10438:6;10427:9;10423:22;10405:50;:::i;:::-;10395:60;;10350:115;10004:468;;;;;:::o;10478:619::-;10555:6;10563;10571;10620:2;10608:9;10599:7;10595:23;10591:32;10588:119;;;10626:79;;:::i;:::-;10588:119;10746:1;10771:53;10816:7;10807:6;10796:9;10792:22;10771:53;:::i;:::-;10761:63;;10717:117;10873:2;10899:53;10944:7;10935:6;10924:9;10920:22;10899:53;:::i;:::-;10889:63;;10844:118;11001:2;11027:53;11072:7;11063:6;11052:9;11048:22;11027:53;:::i;:::-;11017:63;;10972:118;10478:619;;;;;:::o;11103:323::-;11159:6;11208:2;11196:9;11187:7;11183:23;11179:32;11176:119;;;11214:79;;:::i;:::-;11176:119;11334:1;11359:50;11401:7;11392:6;11381:9;11377:22;11359:50;:::i;:::-;11349:60;;11305:114;11103:323;;;;:::o;11432:474::-;11500:6;11508;11557:2;11545:9;11536:7;11532:23;11528:32;11525:119;;;11563:79;;:::i;:::-;11525:119;11683:1;11708:53;11753:7;11744:6;11733:9;11729:22;11708:53;:::i;:::-;11698:63;;11654:117;11810:2;11836:53;11881:7;11872:6;11861:9;11857:22;11836:53;:::i;:::-;11826:63;;11781:118;11432:474;;;;;:::o;11912:180::-;11960:77;11957:1;11950:88;12057:4;12054:1;12047:15;12081:4;12078:1;12071:15;12098:320;12142:6;12179:1;12173:4;12169:12;12159:22;;12226:1;12220:4;12216:12;12247:18;12237:81;;12303:4;12295:6;12291:17;12281:27;;12237:81;12365:2;12357:6;12354:14;12334:18;12331:38;12328:84;;;12384:18;;:::i;:::-;12328:84;12149:269;12098:320;;;:::o;12424:182::-;12564:34;12560:1;12552:6;12548:14;12541:58;12424:182;:::o;12612:366::-;12754:3;12775:67;12839:2;12834:3;12775:67;:::i;:::-;12768:74;;12851:93;12940:3;12851:93;:::i;:::-;12969:2;12964:3;12960:12;12953:19;;12612:366;;;:::o;12984:419::-;13150:4;13188:2;13177:9;13173:18;13165:26;;13237:9;13231:4;13227:20;13223:1;13212:9;13208:17;13201:47;13265:131;13391:4;13265:131;:::i;:::-;13257:139;;12984:419;;;:::o;13409:180::-;13457:77;13454:1;13447:88;13554:4;13551:1;13544:15;13578:4;13575:1;13568:15;13595:348;13635:7;13658:20;13676:1;13658:20;:::i;:::-;13653:25;;13692:20;13710:1;13692:20;:::i;:::-;13687:25;;13880:1;13812:66;13808:74;13805:1;13802:81;13797:1;13790:9;13783:17;13779:105;13776:131;;;13887:18;;:::i;:::-;13776:131;13935:1;13932;13928:9;13917:20;;13595:348;;;;:::o;13949:180::-;13997:77;13994:1;13987:88;14094:4;14091:1;14084:15;14118:4;14115:1;14108:15;14135:185;14175:1;14192:20;14210:1;14192:20;:::i;:::-;14187:25;;14226:20;14244:1;14226:20;:::i;:::-;14221:25;;14265:1;14255:35;;14270:18;;:::i;:::-;14255:35;14312:1;14309;14305:9;14300:14;;14135:185;;;;:::o;14326:234::-;14466:34;14462:1;14454:6;14450:14;14443:58;14535:17;14530:2;14522:6;14518:15;14511:42;14326:234;:::o;14566:366::-;14708:3;14729:67;14793:2;14788:3;14729:67;:::i;:::-;14722:74;;14805:93;14894:3;14805:93;:::i;:::-;14923:2;14918:3;14914:12;14907:19;;14566:366;;;:::o;14938:419::-;15104:4;15142:2;15131:9;15127:18;15119:26;;15191:9;15185:4;15181:20;15177:1;15166:9;15162:17;15155:47;15219:131;15345:4;15219:131;:::i;:::-;15211:139;;14938:419;;;:::o;15363:227::-;15503:34;15499:1;15491:6;15487:14;15480:58;15572:10;15567:2;15559:6;15555:15;15548:35;15363:227;:::o;15596:366::-;15738:3;15759:67;15823:2;15818:3;15759:67;:::i;:::-;15752:74;;15835:93;15924:3;15835:93;:::i;:::-;15953:2;15948:3;15944:12;15937:19;;15596:366;;;:::o;15968:419::-;16134:4;16172:2;16161:9;16157:18;16149:26;;16221:9;16215:4;16211:20;16207:1;16196:9;16192:17;16185:47;16249:131;16375:4;16249:131;:::i;:::-;16241:139;;15968:419;;;:::o;16393:305::-;16433:3;16452:20;16470:1;16452:20;:::i;:::-;16447:25;;16486:20;16504:1;16486:20;:::i;:::-;16481:25;;16640:1;16572:66;16568:74;16565:1;16562:81;16559:107;;;16646:18;;:::i;:::-;16559:107;16690:1;16687;16683:9;16676:16;;16393:305;;;;:::o;16704:180::-;16752:77;16749:1;16742:88;16849:4;16846:1;16839:15;16873:4;16870:1;16863:15;16890:233;16929:3;16952:24;16970:5;16952:24;:::i;:::-;16943:33;;16998:66;16991:5;16988:77;16985:103;;;17068:18;;:::i;:::-;16985:103;17115:1;17108:5;17104:13;17097:20;;16890:233;;;:::o;17129:179::-;17269:31;17265:1;17257:6;17253:14;17246:55;17129:179;:::o;17314:366::-;17456:3;17477:67;17541:2;17536:3;17477:67;:::i;:::-;17470:74;;17553:93;17642:3;17553:93;:::i;:::-;17671:2;17666:3;17662:12;17655:19;;17314:366;;;:::o;17686:419::-;17852:4;17890:2;17879:9;17875:18;17867:26;;17939:9;17933:4;17929:20;17925:1;17914:9;17910:17;17903:47;17967:131;18093:4;17967:131;:::i;:::-;17959:139;;17686:419;;;:::o;18111:244::-;18251:34;18247:1;18239:6;18235:14;18228:58;18320:27;18315:2;18307:6;18303:15;18296:52;18111:244;:::o;18361:366::-;18503:3;18524:67;18588:2;18583:3;18524:67;:::i;:::-;18517:74;;18600:93;18689:3;18600:93;:::i;:::-;18718:2;18713:3;18709:12;18702:19;;18361:366;;;:::o;18733:419::-;18899:4;18937:2;18926:9;18922:18;18914:26;;18986:9;18980:4;18976:20;18972:1;18961:9;18957:17;18950:47;19014:131;19140:4;19014:131;:::i;:::-;19006:139;;18733:419;;;:::o;19158:224::-;19298:34;19294:1;19286:6;19282:14;19275:58;19367:7;19362:2;19354:6;19350:15;19343:32;19158:224;:::o;19388:366::-;19530:3;19551:67;19615:2;19610:3;19551:67;:::i;:::-;19544:74;;19627:93;19716:3;19627:93;:::i;:::-;19745:2;19740:3;19736:12;19729:19;;19388:366;;;:::o;19760:419::-;19926:4;19964:2;19953:9;19949:18;19941:26;;20013:9;20007:4;20003:20;19999:1;19988:9;19984:17;19977:47;20041:131;20167:4;20041:131;:::i;:::-;20033:139;;19760:419;;;:::o;20185:223::-;20325:34;20321:1;20313:6;20309:14;20302:58;20394:6;20389:2;20381:6;20377:15;20370:31;20185:223;:::o;20414:366::-;20556:3;20577:67;20641:2;20636:3;20577:67;:::i;:::-;20570:74;;20653:93;20742:3;20653:93;:::i;:::-;20771:2;20766:3;20762:12;20755:19;;20414:366;;;:::o;20786:419::-;20952:4;20990:2;20979:9;20975:18;20967:26;;21039:9;21033:4;21029:20;21025:1;21014:9;21010:17;21003:47;21067:131;21193:4;21067:131;:::i;:::-;21059:139;;20786:419;;;:::o;21211:240::-;21351:34;21347:1;21339:6;21335:14;21328:58;21420:23;21415:2;21407:6;21403:15;21396:48;21211:240;:::o;21457:366::-;21599:3;21620:67;21684:2;21679:3;21620:67;:::i;:::-;21613:74;;21696:93;21785:3;21696:93;:::i;:::-;21814:2;21809:3;21805:12;21798:19;;21457:366;;;:::o;21829:419::-;21995:4;22033:2;22022:9;22018:18;22010:26;;22082:9;22076:4;22072:20;22068:1;22057:9;22053:17;22046:47;22110:131;22236:4;22110:131;:::i;:::-;22102:139;;21829:419;;;:::o;22254:239::-;22394:34;22390:1;22382:6;22378:14;22371:58;22463:22;22458:2;22450:6;22446:15;22439:47;22254:239;:::o;22499:366::-;22641:3;22662:67;22726:2;22721:3;22662:67;:::i;:::-;22655:74;;22738:93;22827:3;22738:93;:::i;:::-;22856:2;22851:3;22847:12;22840:19;;22499:366;;;:::o;22871:419::-;23037:4;23075:2;23064:9;23060:18;23052:26;;23124:9;23118:4;23114:20;23110:1;23099:9;23095:17;23088:47;23152:131;23278:4;23152:131;:::i;:::-;23144:139;;22871:419;;;:::o;23296:225::-;23436:34;23432:1;23424:6;23420:14;23413:58;23505:8;23500:2;23492:6;23488:15;23481:33;23296:225;:::o;23527:366::-;23669:3;23690:67;23754:2;23749:3;23690:67;:::i;:::-;23683:74;;23766:93;23855:3;23766:93;:::i;:::-;23884:2;23879:3;23875:12;23868:19;;23527:366;;;:::o;23899:419::-;24065:4;24103:2;24092:9;24088:18;24080:26;;24152:9;24146:4;24142:20;24138:1;24127:9;24123:17;24116:47;24180:131;24306:4;24180:131;:::i;:::-;24172:139;;23899:419;;;:::o;24324:223::-;24464:34;24460:1;24452:6;24448:14;24441:58;24533:6;24528:2;24520:6;24516:15;24509:31;24324:223;:::o;24553:366::-;24695:3;24716:67;24780:2;24775:3;24716:67;:::i;:::-;24709:74;;24792:93;24881:3;24792:93;:::i;:::-;24910:2;24905:3;24901:12;24894:19;;24553:366;;;:::o;24925:419::-;25091:4;25129:2;25118:9;25114:18;25106:26;;25178:9;25172:4;25168:20;25164:1;25153:9;25149:17;25142:47;25206:131;25332:4;25206:131;:::i;:::-;25198:139;;24925:419;;;:::o;25350:221::-;25490:34;25486:1;25478:6;25474:14;25467:58;25559:4;25554:2;25546:6;25542:15;25535:29;25350:221;:::o;25577:366::-;25719:3;25740:67;25804:2;25799:3;25740:67;:::i;:::-;25733:74;;25816:93;25905:3;25816:93;:::i;:::-;25934:2;25929:3;25925:12;25918:19;;25577:366;;;:::o;25949:419::-;26115:4;26153:2;26142:9;26138:18;26130:26;;26202:9;26196:4;26192:20;26188:1;26177:9;26173:17;26166:47;26230:131;26356:4;26230:131;:::i;:::-;26222:139;;25949:419;;;:::o;26374:224::-;26514:34;26510:1;26502:6;26498:14;26491:58;26583:7;26578:2;26570:6;26566:15;26559:32;26374:224;:::o;26604:366::-;26746:3;26767:67;26831:2;26826:3;26767:67;:::i;:::-;26760:74;;26843:93;26932:3;26843:93;:::i;:::-;26961:2;26956:3;26952:12;26945:19;;26604:366;;;:::o;26976:419::-;27142:4;27180:2;27169:9;27165:18;27157:26;;27229:9;27223:4;27219:20;27215:1;27204:9;27200:17;27193:47;27257:131;27383:4;27257:131;:::i;:::-;27249:139;;26976:419;;;:::o;27401:222::-;27541:34;27537:1;27529:6;27525:14;27518:58;27610:5;27605:2;27597:6;27593:15;27586:30;27401:222;:::o;27629:366::-;27771:3;27792:67;27856:2;27851:3;27792:67;:::i;:::-;27785:74;;27868:93;27957:3;27868:93;:::i;:::-;27986:2;27981:3;27977:12;27970:19;;27629:366;;;:::o;28001:419::-;28167:4;28205:2;28194:9;28190:18;28182:26;;28254:9;28248:4;28244:20;28240:1;28229:9;28225:17;28218:47;28282:131;28408:4;28282:131;:::i;:::-;28274:139;;28001:419;;;:::o;28426:236::-;28566:34;28562:1;28554:6;28550:14;28543:58;28635:19;28630:2;28622:6;28618:15;28611:44;28426:236;:::o;28668:366::-;28810:3;28831:67;28895:2;28890:3;28831:67;:::i;:::-;28824:74;;28907:93;28996:3;28907:93;:::i;:::-;29025:2;29020:3;29016:12;29009:19;;28668:366;;;:::o;29040:419::-;29206:4;29244:2;29233:9;29229:18;29221:26;;29293:9;29287:4;29283:20;29279:1;29268:9;29264:17;29257:47;29321:131;29447:4;29321:131;:::i;:::-;29313:139;;29040:419;;;:::o;29465:172::-;29605:24;29601:1;29593:6;29589:14;29582:48;29465:172;:::o;29643:366::-;29785:3;29806:67;29870:2;29865:3;29806:67;:::i;:::-;29799:74;;29882:93;29971:3;29882:93;:::i;:::-;30000:2;29995:3;29991:12;29984:19;;29643:366;;;:::o;30015:419::-;30181:4;30219:2;30208:9;30204:18;30196:26;;30268:9;30262:4;30258:20;30254:1;30243:9;30239:17;30232:47;30296:131;30422:4;30296:131;:::i;:::-;30288:139;;30015:419;;;:::o;30440:297::-;30580:34;30576:1;30568:6;30564:14;30557:58;30649:34;30644:2;30636:6;30632:15;30625:59;30718:11;30713:2;30705:6;30701:15;30694:36;30440:297;:::o;30743:366::-;30885:3;30906:67;30970:2;30965:3;30906:67;:::i;:::-;30899:74;;30982:93;31071:3;30982:93;:::i;:::-;31100:2;31095:3;31091:12;31084:19;;30743:366;;;:::o;31115:419::-;31281:4;31319:2;31308:9;31304:18;31296:26;;31368:9;31362:4;31358:20;31354:1;31343:9;31339:17;31332:47;31396:131;31522:4;31396:131;:::i;:::-;31388:139;;31115:419;;;:::o;31540:240::-;31680:34;31676:1;31668:6;31664:14;31657:58;31749:23;31744:2;31736:6;31732:15;31725:48;31540:240;:::o;31786:366::-;31928:3;31949:67;32013:2;32008:3;31949:67;:::i;:::-;31942:74;;32025:93;32114:3;32025:93;:::i;:::-;32143:2;32138:3;32134:12;32127:19;;31786:366;;;:::o;32158:419::-;32324:4;32362:2;32351:9;32347:18;32339:26;;32411:9;32405:4;32401:20;32397:1;32386:9;32382:17;32375:47;32439:131;32565:4;32439:131;:::i;:::-;32431:139;;32158:419;;;:::o;32583:169::-;32723:21;32719:1;32711:6;32707:14;32700:45;32583:169;:::o;32758:366::-;32900:3;32921:67;32985:2;32980:3;32921:67;:::i;:::-;32914:74;;32997:93;33086:3;32997:93;:::i;:::-;33115:2;33110:3;33106:12;33099:19;;32758:366;;;:::o;33130:419::-;33296:4;33334:2;33323:9;33319:18;33311:26;;33383:9;33377:4;33373:20;33369:1;33358:9;33354:17;33347:47;33411:131;33537:4;33411:131;:::i;:::-;33403:139;;33130:419;;;:::o;33555:241::-;33695:34;33691:1;33683:6;33679:14;33672:58;33764:24;33759:2;33751:6;33747:15;33740:49;33555:241;:::o;33802:366::-;33944:3;33965:67;34029:2;34024:3;33965:67;:::i;:::-;33958:74;;34041:93;34130:3;34041:93;:::i;:::-;34159:2;34154:3;34150:12;34143:19;;33802:366;;;:::o;34174:419::-;34340:4;34378:2;34367:9;34363:18;34355:26;;34427:9;34421:4;34417:20;34413:1;34402:9;34398:17;34391:47;34455:131;34581:4;34455:131;:::i;:::-;34447:139;;34174:419;;;:::o;34599:191::-;34639:4;34659:20;34677:1;34659:20;:::i;:::-;34654:25;;34693:20;34711:1;34693:20;:::i;:::-;34688:25;;34732:1;34729;34726:8;34723:34;;;34737:18;;:::i;:::-;34723:34;34782:1;34779;34775:9;34767:17;;34599:191;;;;:::o;34796:225::-;34936:34;34932:1;34924:6;34920:14;34913:58;35005:8;35000:2;34992:6;34988:15;34981:33;34796:225;:::o;35027:366::-;35169:3;35190:67;35254:2;35249:3;35190:67;:::i;:::-;35183:74;;35266:93;35355:3;35266:93;:::i;:::-;35384:2;35379:3;35375:12;35368:19;;35027:366;;;:::o;35399:419::-;35565:4;35603:2;35592:9;35588:18;35580:26;;35652:9;35646:4;35642:20;35638:1;35627:9;35623:17;35616:47;35680:131;35806:4;35680:131;:::i;:::-;35672:139;;35399:419;;;:::o;35824:147::-;35925:11;35962:3;35947:18;;35824:147;;;;:::o;35977:114::-;;:::o;36097:398::-;36256:3;36277:83;36358:1;36353:3;36277:83;:::i;:::-;36270:90;;36369:93;36458:3;36369:93;:::i;:::-;36487:1;36482:3;36478:11;36471:18;;36097:398;;;:::o;36501:379::-;36685:3;36707:147;36850:3;36707:147;:::i;:::-;36700:154;;36871:3;36864:10;;36501:379;;;:::o;36886:442::-;37035:4;37073:2;37062:9;37058:18;37050:26;;37086:71;37154:1;37143:9;37139:17;37130:6;37086:71;:::i;:::-;37167:72;37235:2;37224:9;37220:18;37211:6;37167:72;:::i;:::-;37249;37317:2;37306:9;37302:18;37293:6;37249:72;:::i;:::-;36886:442;;;;;;:::o;37334:143::-;37391:5;37422:6;37416:13;37407:22;;37438:33;37465:5;37438:33;:::i;:::-;37334:143;;;;:::o;37483:351::-;37553:6;37602:2;37590:9;37581:7;37577:23;37573:32;37570:119;;;37608:79;;:::i;:::-;37570:119;37728:1;37753:64;37809:7;37800:6;37789:9;37785:22;37753:64;:::i;:::-;37743:74;;37699:128;37483:351;;;;:::o;37840:85::-;37885:7;37914:5;37903:16;;37840:85;;;:::o;37931:158::-;37989:9;38022:61;38040:42;38049:32;38075:5;38049:32;:::i;:::-;38040:42;:::i;:::-;38022:61;:::i;:::-;38009:74;;37931:158;;;:::o;38095:147::-;38190:45;38229:5;38190:45;:::i;:::-;38185:3;38178:58;38095:147;;:::o;38248:114::-;38315:6;38349:5;38343:12;38333:22;;38248:114;;;:::o;38368:184::-;38467:11;38501:6;38496:3;38489:19;38541:4;38536:3;38532:14;38517:29;;38368:184;;;;:::o;38558:132::-;38625:4;38648:3;38640:11;;38678:4;38673:3;38669:14;38661:22;;38558:132;;;:::o;38696:108::-;38773:24;38791:5;38773:24;:::i;:::-;38768:3;38761:37;38696:108;;:::o;38810:179::-;38879:10;38900:46;38942:3;38934:6;38900:46;:::i;:::-;38978:4;38973:3;38969:14;38955:28;;38810:179;;;;:::o;38995:113::-;39065:4;39097;39092:3;39088:14;39080:22;;38995:113;;;:::o;39144:732::-;39263:3;39292:54;39340:5;39292:54;:::i;:::-;39362:86;39441:6;39436:3;39362:86;:::i;:::-;39355:93;;39472:56;39522:5;39472:56;:::i;:::-;39551:7;39582:1;39567:284;39592:6;39589:1;39586:13;39567:284;;;39668:6;39662:13;39695:63;39754:3;39739:13;39695:63;:::i;:::-;39688:70;;39781:60;39834:6;39781:60;:::i;:::-;39771:70;;39627:224;39614:1;39611;39607:9;39602:14;;39567:284;;;39571:14;39867:3;39860:10;;39268:608;;;39144:732;;;;:::o;39882:831::-;40145:4;40183:3;40172:9;40168:19;40160:27;;40197:71;40265:1;40254:9;40250:17;40241:6;40197:71;:::i;:::-;40278:80;40354:2;40343:9;40339:18;40330:6;40278:80;:::i;:::-;40405:9;40399:4;40395:20;40390:2;40379:9;40375:18;40368:48;40433:108;40536:4;40527:6;40433:108;:::i;:::-;40425:116;;40551:72;40619:2;40608:9;40604:18;40595:6;40551:72;:::i;:::-;40633:73;40701:3;40690:9;40686:19;40677:6;40633:73;:::i;:::-;39882:831;;;;;;;;:::o;40719:807::-;40968:4;41006:3;40995:9;40991:19;40983:27;;41020:71;41088:1;41077:9;41073:17;41064:6;41020:71;:::i;:::-;41101:72;41169:2;41158:9;41154:18;41145:6;41101:72;:::i;:::-;41183:80;41259:2;41248:9;41244:18;41235:6;41183:80;:::i;:::-;41273;41349:2;41338:9;41334:18;41325:6;41273:80;:::i;:::-;41363:73;41431:3;41420:9;41416:19;41407:6;41363:73;:::i;:::-;41446;41514:3;41503:9;41499:19;41490:6;41446:73;:::i;:::-;40719:807;;;;;;;;;:::o;41532:143::-;41589:5;41620:6;41614:13;41605:22;;41636:33;41663:5;41636:33;:::i;:::-;41532:143;;;;:::o;41681:663::-;41769:6;41777;41785;41834:2;41822:9;41813:7;41809:23;41805:32;41802:119;;;41840:79;;:::i;:::-;41802:119;41960:1;41985:64;42041:7;42032:6;42021:9;42017:22;41985:64;:::i;:::-;41975:74;;41931:128;42098:2;42124:64;42180:7;42171:6;42160:9;42156:22;42124:64;:::i;:::-;42114:74;;42069:129;42237:2;42263:64;42319:7;42310:6;42299:9;42295:22;42263:64;:::i;:::-;42253:74;;42208:129;41681:663;;;;;:::o

Swarm Source

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