ETH Price: $3,484.50 (+0.67%)
Gas: 5 Gwei

Token

Bonk (BONK)
 

Overview

Max Total Supply

1,000,000 BONK

Holders

144

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,378.758537691709802181 BONK

Value
$0.00
0x7c791910960d0fa63e3b6c9dd54dcbf4a9c6c69f
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:
BONK

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

/*

https://t.me/BonkPortal


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

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

/* pragma solidity ^0.8.0; */

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* pragma solidity >=0.8.10; */

/* import {IUniswapV2Router02} from "./IUniswapV2Router02.sol"; */
/* import {IUniswapV2Factory} from "./IUniswapV2Factory.sol"; */
/* import {IUniswapV2Pair} from "./IUniswapV2Pair.sol"; */
/* import {IERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/IERC20.sol"; */
/* import {ERC20} from "lib/openzeppelin-contracts/contracts/token/ERC20/ERC20.sol"; */
/* import {Ownable} from "lib/openzeppelin-contracts/contracts/access/Ownable.sol"; */
/* import {SafeMath} from "lib/openzeppelin-contracts/contracts/utils/math/SafeMath.sol"; */

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

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

    bool private swapping;

    address public marketingWallet;
    address public devWallet;

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

    uint256 public percentForLPBurn = 25; // 25 = .25%
    bool public lpBurnEnabled = true;
    uint256 public lpBurnFrequency = 3600 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

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

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

    uint256 public buyTotalFees;
    uint256 public 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;

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

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

    event AutoNukeLP();

    event ManualNukeLP();

    constructor() ERC20("Bonk", "BONK") {
        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 = 0;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 25;

        uint256 _sellMarketingFee = 0;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 50;

        uint256 totalSupply = 1_000_000 * 1e18;

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

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

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

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

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

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

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

    receive() external payable {}

    // once enabled, can never be turned off
    function openTrading(bool enabled) external onlyOwner {

        if(enabled){
        tradingActive = true;
        swapEnabled = true;
        lastLpBurnTime = block.timestamp;

        }
        
    }

    // 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 setSwapTokensAtAmount(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 setLimits(uint256 newNumTx, uint256 newNumWallet) external onlyOwner {
        require(
            newNumTx >= ((totalSupply() * 1) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.1%"
        );
        maxTransactionAmount = newNumTx * (10**18);

        require(
            newNumWallet >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNumWallet * (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 setFees(uint256 _buyMarketingFee,  uint256 _buyLiquidityFee, uint256 _buyDevFee,  uint256 _sellMarketingFee, uint256 _sellLiquidityFee, uint256 _sellDevFee) external onlyOwner{
        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyDevFee = _buyDevFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 75, "Must keep fees at 75% or less");

        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellDevFee = _sellDevFee;
        sellTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee;
        require(buyTotalFees <= 75, "Must keep fees at 75% or less");
    }

        
        
   

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

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

        _setAutomatedMarketMakerPair(pair, value);
    }

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

        emit SetAutomatedMarketMakerPair(pair, value);
    }

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

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

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

    event BoughtEarly(address indexed sniper);

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

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

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

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

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

        uint256 contractTokenBalance = balanceOf(address(this));

        bool canSwap = contractTokenBalance >= swapTokensAtAmount;

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

            swapBack();

            swapping = false;
        }

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

        bool takeFee = !swapping;

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

        uint256 fees = 0;
        // only take fees on buys/sells, do not take on wallet transfers
        if (takeFee) {
            // on sell
            if (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
        }("");
    }

    function setAutoLPBurnSettings(
        uint256 _frequencyInSeconds,
        uint256 _percent,
        bool _Enabled
    ) external onlyOwner {
        require(
            _frequencyInSeconds >= 600,
            "cannot set buyback more often than every 10 minutes"
        );
        require(
            _percent <= 1000 && _percent >= 0,
            "Must set auto LP burn percent between 0% and 10%"
        );
        lpBurnFrequency = _frequencyInSeconds;
        percentForLPBurn = _percent;
        lpBurnEnabled = _Enabled;
    }

    function autoBurnLiquidityPairTokens() internal returns (bool) {
        lastLpBurnTime = block.timestamp;

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

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

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

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

    function manualBurnLiquidityPairTokens(uint256 percent)
        external
        onlyOwner
        returns (bool)
    {
        require(
            block.timestamp > lastManualLpBurnTime + manualBurnFrequency,
            "Must wait for cooldown to finish"
        );
        require(percent <= 1000, "May not nuke more than 10% of tokens in LP");
        lastManualLpBurnTime = block.timestamp;

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","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":[],"name":"ManualNukeLP","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":[],"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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyMarketingFee","type":"uint256"},{"internalType":"uint256","name":"_buyLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"_buyDevFee","type":"uint256"},{"internalType":"uint256","name":"_sellMarketingFee","type":"uint256"},{"internalType":"uint256","name":"_sellLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"_sellDevFee","type":"uint256"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNumTx","type":"uint256"},{"internalType":"uint256","name":"newNumWallet","type":"uint256"}],"name":"setLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"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":"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":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526019600b556001600c60006101000a81548160ff021916908315150217905550610e10600d55610708600f556001601160006101000a81548160ff0219169083151502179055506001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600481526020017f426f6e6b000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f424f4e4b0000000000000000000000000000000000000000000000000000000081525081600390805190602001906200012e92919062000b09565b5080600490805190602001906200014792919062000b09565b5050506200016a6200015e620005c960201b60201c565b620005d160201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001968160016200069760201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000216573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023c919062000c23565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ca919062000c23565b6040518363ffffffff1660e01b8152600401620002e992919062000c66565b6020604051808303816000875af115801562000309573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032f919062000c23565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200037760a05160016200069760201b60201c565b6200038c60a05160016200078160201b60201c565b600080600060199050600080600060329050600069d3c21bcecceda1000000905069043c33c193756480000060088190555069043c33c1937564800000600a81905550612710600a82620003e1919062000ccc565b620003ed919062000d5c565b6009819055508660158190555085601681905550846017819055506017546016546015546200041d919062000d94565b62000429919062000d94565b6014819055508360198190555082601a8190555081601b81905550601b54601a5460195462000459919062000d94565b62000465919062000d94565b60188190555073cd06673f6665318f17d1bcc3c4a7d5c41d6194c1600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073cd06673f6665318f17d1bcc3c4a7d5c41d6194c1600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000537620005296200082260201b60201c565b60016200084c60201b60201c565b6200054a3060016200084c60201b60201c565b6200055f61dead60016200084c60201b60201c565b62000581620005736200082260201b60201c565b60016200069760201b60201c565b620005943060016200069760201b60201c565b620005a961dead60016200069760201b60201c565b620005bb33826200098660201b60201c565b505050505050505062000fb3565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006a7620005c960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006cd6200082260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000726576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200071d9062000e52565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200085c620005c960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008826200082260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008db576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008d29062000e52565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516200097a919062000e91565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620009f9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009f09062000efe565b60405180910390fd5b62000a0d6000838362000aff60201b60201c565b806002600082825462000a21919062000d94565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a78919062000d94565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000adf919062000f31565b60405180910390a362000afb6000838362000b0460201b60201c565b5050565b505050565b505050565b82805462000b179062000f7d565b90600052602060002090601f01602090048101928262000b3b576000855562000b87565b82601f1062000b5657805160ff191683800117855562000b87565b8280016001018555821562000b87579182015b8281111562000b8657825182559160200191906001019062000b69565b5b50905062000b96919062000b9a565b5090565b5b8082111562000bb557600081600090555060010162000b9b565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000beb8262000bbe565b9050919050565b62000bfd8162000bde565b811462000c0957600080fd5b50565b60008151905062000c1d8162000bf2565b92915050565b60006020828403121562000c3c5762000c3b62000bb9565b5b600062000c4c8482850162000c0c565b91505092915050565b62000c608162000bde565b82525050565b600060408201905062000c7d600083018562000c55565b62000c8c602083018462000c55565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000cd98262000c93565b915062000ce68362000c93565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d225762000d2162000c9d565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000d698262000c93565b915062000d768362000c93565b92508262000d895762000d8862000d2d565b5b828204905092915050565b600062000da18262000c93565b915062000dae8362000c93565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000de65762000de562000c9d565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e3a60208362000df1565b915062000e478262000e02565b602082019050919050565b6000602082019050818103600083015262000e6d8162000e2b565b9050919050565b60008115159050919050565b62000e8b8162000e74565b82525050565b600060208201905062000ea8600083018462000e80565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ee6601f8362000df1565b915062000ef38262000eae565b602082019050919050565b6000602082019050818103600083015262000f198162000ed7565b9050919050565b62000f2b8162000c93565b82525050565b600060208201905062000f48600083018462000f20565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000f9657607f821691505b6020821081141562000fad5762000fac62000f4e565b5b50919050565b60805160a051615afc6200103b6000396000818161134b01528181611b21015281816125fd015281816126b4015281816126e101528181612d2501528181613e2901528181613ee20152613f0f015260008181610f3a01528181612ccd01528181614085015281816141660152818161418d0152818161422901526142500152615afc6000f3fe60806040526004361061039b5760003560e01c80638da5cb5b116101dc578063b62496f511610102578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610dad578063f637434214610dd6578063f8b45b0514610e01578063fe72b27a14610e2c576103a2565b8063dd62ed3e14610cef578063e2f4560514610d2c578063e884f26014610d57578063f11a24d314610d82576103a2565b8063c4590d3f116100dc578063c4590d3f14610c45578063c876d0b914610c6e578063c8c8ebe414610c99578063d85ba06314610cc4576103a2565b8063b62496f514610bb4578063bbc0c74214610bf1578063c024666814610c1c576103a2565b80639ec22c0e1161017a578063a4c82a0011610149578063a4c82a0014610ae6578063a9059cbb14610b11578063aacebbe314610b4e578063afa4f3b214610b77576103a2565b80639ec22c0e14610a285780639fccce3214610a53578063a0d82dc514610a7e578063a457c2d714610aa9576103a2565b8063924de9b7116101b6578063924de9b71461098057806395d89b41146109a95780639a7a23d6146109d45780639c3b4fdc146109fd576103a2565b80638da5cb5b146108ff5780638ea5220f1461092a5780639213691314610955576103a2565b8063313ce567116102c157806370a082311161025f5780637571336a1161022e5780637571336a1461085757806375f0a874146108805780637bce5a04146108ab57806386f6c3c1146108d6576103a2565b806370a08231146107af578063715018a6146107ec578063730c188814610803578063751039fc1461082c576103a2565b80634a62bb651161029b5780634a62bb65146106f15780634fbee1931461071c5780636a486a8e146107595780636ddd171314610784576103a2565b8063313ce5671461065e578063395093511461068957806349bd5a5e146106c6576103a2565b8063199ffc721161033957806327c8f8351161030857806327c8f835146105b45780632a9b8072146105df5780632c3e486c146106085780632e82f1a014610633576103a2565b8063199ffc72146104f65780631a8145bb146105215780631f3fed8f1461054c57806323b872dd14610577576103a2565b80631694505e116103755780631694505e1461044c57806318160ddd146104775780631816467f146104a2578063184c16c5146104cb576103a2565b806306fdde03146103a7578063095ea7b3146103d257806310d5de531461040f576103a2565b366103a257005b600080fd5b3480156103b357600080fd5b506103bc610e69565b6040516103c99190614398565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f49190614453565b610efb565b60405161040691906144ae565b60405180910390f35b34801561041b57600080fd5b50610436600480360381019061043191906144c9565b610f19565b60405161044391906144ae565b60405180910390f35b34801561045857600080fd5b50610461610f38565b60405161046e9190614555565b60405180910390f35b34801561048357600080fd5b5061048c610f5c565b604051610499919061457f565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c491906144c9565b610f66565b005b3480156104d757600080fd5b506104e06110a2565b6040516104ed919061457f565b60405180910390f35b34801561050257600080fd5b5061050b6110a8565b604051610518919061457f565b60405180910390f35b34801561052d57600080fd5b506105366110ae565b604051610543919061457f565b60405180910390f35b34801561055857600080fd5b506105616110b4565b60405161056e919061457f565b60405180910390f35b34801561058357600080fd5b5061059e6004803603810190610599919061459a565b6110ba565b6040516105ab91906144ae565b60405180910390f35b3480156105c057600080fd5b506105c96111b2565b6040516105d691906145fc565b60405180910390f35b3480156105eb57600080fd5b5061060660048036038101906106019190614643565b6111b8565b005b34801561061457600080fd5b5061061d61127b565b60405161062a919061457f565b60405180910390f35b34801561063f57600080fd5b50610648611281565b60405161065591906144ae565b60405180910390f35b34801561066a57600080fd5b50610673611294565b604051610680919061468c565b60405180910390f35b34801561069557600080fd5b506106b060048036038101906106ab9190614453565b61129d565b6040516106bd91906144ae565b60405180910390f35b3480156106d257600080fd5b506106db611349565b6040516106e891906145fc565b60405180910390f35b3480156106fd57600080fd5b5061070661136d565b60405161071391906144ae565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e91906144c9565b611380565b60405161075091906144ae565b60405180910390f35b34801561076557600080fd5b5061076e6113d6565b60405161077b919061457f565b60405180910390f35b34801561079057600080fd5b506107996113dc565b6040516107a691906144ae565b60405180910390f35b3480156107bb57600080fd5b506107d660048036038101906107d191906144c9565b6113ef565b6040516107e3919061457f565b60405180910390f35b3480156107f857600080fd5b50610801611437565b005b34801561080f57600080fd5b5061082a600480360381019061082591906146a7565b6114bf565b005b34801561083857600080fd5b506108416115ff565b60405161084e91906144ae565b60405180910390f35b34801561086357600080fd5b5061087e600480360381019061087991906146fa565b61169f565b005b34801561088c57600080fd5b50610895611776565b6040516108a291906145fc565b60405180910390f35b3480156108b757600080fd5b506108c061179c565b6040516108cd919061457f565b60405180910390f35b3480156108e257600080fd5b506108fd60048036038101906108f8919061473a565b6117a2565b005b34801561090b57600080fd5b50610914611922565b60405161092191906145fc565b60405180910390f35b34801561093657600080fd5b5061093f61194c565b60405161094c91906145fc565b60405180910390f35b34801561096157600080fd5b5061096a611972565b604051610977919061457f565b60405180910390f35b34801561098c57600080fd5b506109a760048036038101906109a29190614643565b611978565b005b3480156109b557600080fd5b506109be611a11565b6040516109cb9190614398565b60405180910390f35b3480156109e057600080fd5b506109fb60048036038101906109f691906146fa565b611aa3565b005b348015610a0957600080fd5b50610a12611bbc565b604051610a1f919061457f565b60405180910390f35b348015610a3457600080fd5b50610a3d611bc2565b604051610a4a919061457f565b60405180910390f35b348015610a5f57600080fd5b50610a68611bc8565b604051610a75919061457f565b60405180910390f35b348015610a8a57600080fd5b50610a93611bce565b604051610aa0919061457f565b60405180910390f35b348015610ab557600080fd5b50610ad06004803603810190610acb9190614453565b611bd4565b604051610add91906144ae565b60405180910390f35b348015610af257600080fd5b50610afb611cbf565b604051610b08919061457f565b60405180910390f35b348015610b1d57600080fd5b50610b386004803603810190610b339190614453565b611cc5565b604051610b4591906144ae565b60405180910390f35b348015610b5a57600080fd5b50610b756004803603810190610b7091906144c9565b611ce3565b005b348015610b8357600080fd5b50610b9e6004803603810190610b9991906147c7565b611e1f565b604051610bab91906144ae565b60405180910390f35b348015610bc057600080fd5b50610bdb6004803603810190610bd691906144c9565b611f74565b604051610be891906144ae565b60405180910390f35b348015610bfd57600080fd5b50610c06611f94565b604051610c1391906144ae565b60405180910390f35b348015610c2857600080fd5b50610c436004803603810190610c3e91906146fa565b611fa7565b005b348015610c5157600080fd5b50610c6c6004803603810190610c6791906147f4565b6120cc565b005b348015610c7a57600080fd5b50610c8361226c565b604051610c9091906144ae565b60405180910390f35b348015610ca557600080fd5b50610cae61227f565b604051610cbb919061457f565b60405180910390f35b348015610cd057600080fd5b50610cd9612285565b604051610ce6919061457f565b60405180910390f35b348015610cfb57600080fd5b50610d166004803603810190610d119190614834565b61228b565b604051610d23919061457f565b60405180910390f35b348015610d3857600080fd5b50610d41612312565b604051610d4e919061457f565b60405180910390f35b348015610d6357600080fd5b50610d6c612318565b604051610d7991906144ae565b60405180910390f35b348015610d8e57600080fd5b50610d976123b8565b604051610da4919061457f565b60405180910390f35b348015610db957600080fd5b50610dd46004803603810190610dcf91906144c9565b6123be565b005b348015610de257600080fd5b50610deb6124b6565b604051610df8919061457f565b60405180910390f35b348015610e0d57600080fd5b50610e166124bc565b604051610e23919061457f565b60405180910390f35b348015610e3857600080fd5b50610e536004803603810190610e4e91906147c7565b6124c2565b604051610e6091906144ae565b60405180910390f35b606060038054610e78906148a3565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea4906148a3565b8015610ef15780601f10610ec657610100808354040283529160200191610ef1565b820191906000526020600020905b815481529060010190602001808311610ed457829003601f168201915b5050505050905090565b6000610f0f610f0861279a565b84846127a2565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610f6e61279a565b73ffffffffffffffffffffffffffffffffffffffff16610f8c611922565b73ffffffffffffffffffffffffffffffffffffffff1614610fe2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd990614921565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b60006110c784848461296d565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061111261279a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611192576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611189906149b3565b60405180910390fd5b6111a68561119e61279a565b8584036127a2565b60019150509392505050565b61dead81565b6111c061279a565b73ffffffffffffffffffffffffffffffffffffffff166111de611922565b73ffffffffffffffffffffffffffffffffffffffff1614611234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122b90614921565b60405180910390fd5b8015611278576001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e819055505b50565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b600061133f6112aa61279a565b8484600160006112b861279a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461133a9190614a02565b6127a2565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61143f61279a565b73ffffffffffffffffffffffffffffffffffffffff1661145d611922565b73ffffffffffffffffffffffffffffffffffffffff16146114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa90614921565b60405180910390fd5b6114bd6000613705565b565b6114c761279a565b73ffffffffffffffffffffffffffffffffffffffff166114e5611922565b73ffffffffffffffffffffffffffffffffffffffff161461153b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153290614921565b60405180910390fd5b610258831015611580576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157790614aca565b60405180910390fd5b6103e88211158015611593575060008210155b6115d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c990614b5c565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b600061160961279a565b73ffffffffffffffffffffffffffffffffffffffff16611627611922565b73ffffffffffffffffffffffffffffffffffffffff161461167d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167490614921565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b6116a761279a565b73ffffffffffffffffffffffffffffffffffffffff166116c5611922565b73ffffffffffffffffffffffffffffffffffffffff161461171b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171290614921565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b6117aa61279a565b73ffffffffffffffffffffffffffffffffffffffff166117c8611922565b73ffffffffffffffffffffffffffffffffffffffff161461181e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181590614921565b60405180910390fd5b8560158190555084601681905550836017819055506017546016546015546118469190614a02565b6118509190614a02565b601481905550604b601454111561189c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189390614bc8565b60405180910390fd5b8260198190555081601a8190555080601b819055506017546016546015546118c49190614a02565b6118ce9190614a02565b601881905550604b601454111561191a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191190614bc8565b60405180910390fd5b505050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b61198061279a565b73ffffffffffffffffffffffffffffffffffffffff1661199e611922565b73ffffffffffffffffffffffffffffffffffffffff16146119f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119eb90614921565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611a20906148a3565b80601f0160208091040260200160405190810160405280929190818152602001828054611a4c906148a3565b8015611a995780601f10611a6e57610100808354040283529160200191611a99565b820191906000526020600020905b815481529060010190602001808311611a7c57829003601f168201915b5050505050905090565b611aab61279a565b73ffffffffffffffffffffffffffffffffffffffff16611ac9611922565b73ffffffffffffffffffffffffffffffffffffffff1614611b1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1690614921565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba590614c5a565b60405180910390fd5b611bb882826137cb565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611be361279a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9790614cec565b60405180910390fd5b611cb4611cab61279a565b858584036127a2565b600191505092915050565b600e5481565b6000611cd9611cd261279a565b848461296d565b6001905092915050565b611ceb61279a565b73ffffffffffffffffffffffffffffffffffffffff16611d09611922565b73ffffffffffffffffffffffffffffffffffffffff1614611d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5690614921565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611e2961279a565b73ffffffffffffffffffffffffffffffffffffffff16611e47611922565b73ffffffffffffffffffffffffffffffffffffffff1614611e9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9490614921565b60405180910390fd5b620186a06001611eab610f5c565b611eb59190614d0c565b611ebf9190614d95565b821015611f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef890614e38565b60405180910390fd5b6103e86005611f0e610f5c565b611f189190614d0c565b611f229190614d95565b821115611f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5b90614eca565b60405180910390fd5b8160098190555060019050919050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611faf61279a565b73ffffffffffffffffffffffffffffffffffffffff16611fcd611922565b73ffffffffffffffffffffffffffffffffffffffff1614612023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201a90614921565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516120c091906144ae565b60405180910390a25050565b6120d461279a565b73ffffffffffffffffffffffffffffffffffffffff166120f2611922565b73ffffffffffffffffffffffffffffffffffffffff1614612148576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213f90614921565b60405180910390fd5b670de0b6b3a76400006103e8600161215e610f5c565b6121689190614d0c565b6121729190614d95565b61217c9190614d95565b8210156121be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b590614f5c565b60405180910390fd5b670de0b6b3a7640000826121d29190614d0c565b600881905550670de0b6b3a76400006103e860056121ee610f5c565b6121f89190614d0c565b6122029190614d95565b61220c9190614d95565b81101561224e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224590614fee565b60405180910390fd5b670de0b6b3a7640000816122629190614d0c565b600a819055505050565b601360009054906101000a900460ff1681565b60085481565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061232261279a565b73ffffffffffffffffffffffffffffffffffffffff16612340611922565b73ffffffffffffffffffffffffffffffffffffffff1614612396576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238d90614921565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b6123c661279a565b73ffffffffffffffffffffffffffffffffffffffff166123e4611922565b73ffffffffffffffffffffffffffffffffffffffff161461243a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243190614921565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a190615080565b60405180910390fd5b6124b381613705565b50565b601a5481565b600a5481565b60006124cc61279a565b73ffffffffffffffffffffffffffffffffffffffff166124ea611922565b73ffffffffffffffffffffffffffffffffffffffff1614612540576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253790614921565b60405180910390fd5b600f546010546125509190614a02565b4211612591576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612588906150ec565b60405180910390fd5b6103e88211156125d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125cd9061517e565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b815260040161263891906145fc565b602060405180830381865afa158015612655573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061267991906151b3565b905060006126a4612710612696868561386c90919063ffffffff16565b61388290919063ffffffff16565b905060008111156126dd576126dc7f000000000000000000000000000000000000000000000000000000000000000061dead83613898565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561274a57600080fd5b505af115801561275e573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612812576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280990615252565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612882576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612879906152e4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612960919061457f565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d490615376565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4490615408565b60405180910390fd5b6000811415612a6757612a6283836000613898565b613700565b601160009054906101000a900460ff161561312a57612a84611922565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612af25750612ac2611922565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b2b5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b65575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b7e5750600560149054906101000a900460ff16155b1561312957601160019054906101000a900460ff16612c7857601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c385750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6e90615474565b60405180910390fd5b5b601360009054906101000a900460ff1615612e4057612c95611922565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612d1c57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d7457507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612e3f5743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df19061552c565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ee35750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f8a57600854811115612f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f24906155be565b60405180910390fd5b600a54612f39836113ef565b82612f449190614a02565b1115612f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7c9061562a565b60405180910390fd5b613128565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561302d5750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561307c57600854811115613077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306e906156bc565b60405180910390fd5b613127565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661312657600a546130d9836113ef565b826130e49190614a02565b1115613125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161311c9061562a565b60405180910390fd5b5b5b5b5b5b6000613135306113ef565b90506000600954821015905080801561315a5750601160029054906101000a900460ff165b80156131735750600560149054906101000a900460ff16155b80156131c95750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561321f5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156132755750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156132b9576001600560146101000a81548160ff02191690831515021790555061329d613b19565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff1615801561331f5750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156133375750600c60009054906101000a900460ff165b80156133525750600d54600e5461334e9190614a02565b4210155b80156133a85750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156133b7576133b5613e00565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061346d5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561347757600090505b600081156136f057602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156134da57506000601854115b156135a75761350760646134f96018548861386c90919063ffffffff16565b61388290919063ffffffff16565b9050601854601a548261351a9190614d0c565b6135249190614d95565b601d60008282546135359190614a02565b92505081905550601854601b548261354d9190614d0c565b6135579190614d95565b601e60008282546135689190614a02565b92505081905550601854601954826135809190614d0c565b61358a9190614d95565b601c600082825461359b9190614a02565b925050819055506136cc565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561360257506000601454115b156136cb5761362f60646136216014548861386c90919063ffffffff16565b61388290919063ffffffff16565b9050601454601654826136429190614d0c565b61364c9190614d95565b601d600082825461365d9190614a02565b92505081905550601454601754826136759190614d0c565b61367f9190614d95565b601e60008282546136909190614a02565b92505081905550601454601554826136a89190614d0c565b6136b29190614d95565b601c60008282546136c39190614a02565b925050819055505b5b60008111156136e1576136e0873083613898565b5b80856136ed91906156dc565b94505b6136fb878787613898565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000818361387a9190614d0c565b905092915050565b600081836138909190614d95565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138ff90615376565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161396f90615408565b60405180910390fd5b613983838383613fc6565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a0090615782565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613a9c9190614a02565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613b00919061457f565b60405180910390a3613b13848484613fcb565b50505050565b6000613b24306113ef565b90506000601e54601c54601d54613b3b9190614a02565b613b459190614a02565b9050600080831480613b575750600082145b15613b6457505050613dfe565b6014600954613b739190614d0c565b831115613b8c576014600954613b899190614d0c565b92505b6000600283601d5486613b9f9190614d0c565b613ba99190614d95565b613bb39190614d95565b90506000613bca8286613fd090919063ffffffff16565b90506000479050613bda82613fe6565b6000613bef8247613fd090919063ffffffff16565b90506000613c1a87613c0c601c548561386c90919063ffffffff16565b61388290919063ffffffff16565b90506000613c4588613c37601e548661386c90919063ffffffff16565b61388290919063ffffffff16565b90506000818385613c5691906156dc565b613c6091906156dc565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613cc0906157d3565b60006040518083038185875af1925050503d8060008114613cfd576040519150601f19603f3d011682016040523d82523d6000602084013e613d02565b606091505b505080985050600087118015613d185750600081115b15613d6557613d278782614223565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613d5c939291906157e8565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613dab906157d3565b60006040518083038185875af1925050503d8060008114613de8576040519150601f19603f3d011682016040523d82523d6000602084013e613ded565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401613e6491906145fc565b602060405180830381865afa158015613e81573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ea591906151b3565b90506000613ed2612710613ec4600b548561386c90919063ffffffff16565b61388290919063ffffffff16565b90506000811115613f0b57613f0a7f000000000000000000000000000000000000000000000000000000000000000061dead83613898565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613f7857600080fd5b505af1158015613f8c573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b60008183613fde91906156dc565b905092915050565b6000600267ffffffffffffffff8111156140035761400261581f565b5b6040519080825280602002602001820160405280156140315781602001602082028036833780820191505090505b50905030816000815181106140495761404861584e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156140ee573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141129190615892565b816001815181106141265761412561584e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061418b307f0000000000000000000000000000000000000000000000000000000000000000846127a2565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016141ed9594939291906159b8565b600060405180830381600087803b15801561420757600080fd5b505af115801561421b573d6000803e3d6000fd5b505050505050565b61424e307f0000000000000000000000000000000000000000000000000000000000000000846127a2565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b81526004016142b596959493929190615a12565b60606040518083038185885af11580156142d3573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906142f89190615a73565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561433957808201518184015260208101905061431e565b83811115614348576000848401525b50505050565b6000601f19601f8301169050919050565b600061436a826142ff565b614374818561430a565b935061438481856020860161431b565b61438d8161434e565b840191505092915050565b600060208201905081810360008301526143b2818461435f565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006143ea826143bf565b9050919050565b6143fa816143df565b811461440557600080fd5b50565b600081359050614417816143f1565b92915050565b6000819050919050565b6144308161441d565b811461443b57600080fd5b50565b60008135905061444d81614427565b92915050565b6000806040838503121561446a576144696143ba565b5b600061447885828601614408565b92505060206144898582860161443e565b9150509250929050565b60008115159050919050565b6144a881614493565b82525050565b60006020820190506144c3600083018461449f565b92915050565b6000602082840312156144df576144de6143ba565b5b60006144ed84828501614408565b91505092915050565b6000819050919050565b600061451b614516614511846143bf565b6144f6565b6143bf565b9050919050565b600061452d82614500565b9050919050565b600061453f82614522565b9050919050565b61454f81614534565b82525050565b600060208201905061456a6000830184614546565b92915050565b6145798161441d565b82525050565b60006020820190506145946000830184614570565b92915050565b6000806000606084860312156145b3576145b26143ba565b5b60006145c186828701614408565b93505060206145d286828701614408565b92505060406145e38682870161443e565b9150509250925092565b6145f6816143df565b82525050565b600060208201905061461160008301846145ed565b92915050565b61462081614493565b811461462b57600080fd5b50565b60008135905061463d81614617565b92915050565b600060208284031215614659576146586143ba565b5b60006146678482850161462e565b91505092915050565b600060ff82169050919050565b61468681614670565b82525050565b60006020820190506146a1600083018461467d565b92915050565b6000806000606084860312156146c0576146bf6143ba565b5b60006146ce8682870161443e565b93505060206146df8682870161443e565b92505060406146f08682870161462e565b9150509250925092565b60008060408385031215614711576147106143ba565b5b600061471f85828601614408565b92505060206147308582860161462e565b9150509250929050565b60008060008060008060c08789031215614757576147566143ba565b5b600061476589828a0161443e565b965050602061477689828a0161443e565b955050604061478789828a0161443e565b945050606061479889828a0161443e565b93505060806147a989828a0161443e565b92505060a06147ba89828a0161443e565b9150509295509295509295565b6000602082840312156147dd576147dc6143ba565b5b60006147eb8482850161443e565b91505092915050565b6000806040838503121561480b5761480a6143ba565b5b60006148198582860161443e565b925050602061482a8582860161443e565b9150509250929050565b6000806040838503121561484b5761484a6143ba565b5b600061485985828601614408565b925050602061486a85828601614408565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806148bb57607f821691505b602082108114156148cf576148ce614874565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061490b60208361430a565b9150614916826148d5565b602082019050919050565b6000602082019050818103600083015261493a816148fe565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061499d60288361430a565b91506149a882614941565b604082019050919050565b600060208201905081810360008301526149cc81614990565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614a0d8261441d565b9150614a188361441d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a4d57614a4c6149d3565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614ab460338361430a565b9150614abf82614a58565b604082019050919050565b60006020820190508181036000830152614ae381614aa7565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614b4660308361430a565b9150614b5182614aea565b604082019050919050565b60006020820190508181036000830152614b7581614b39565b9050919050565b7f4d757374206b656570206665657320617420373525206f72206c657373000000600082015250565b6000614bb2601d8361430a565b9150614bbd82614b7c565b602082019050919050565b60006020820190508181036000830152614be181614ba5565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614c4460398361430a565b9150614c4f82614be8565b604082019050919050565b60006020820190508181036000830152614c7381614c37565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614cd660258361430a565b9150614ce182614c7a565b604082019050919050565b60006020820190508181036000830152614d0581614cc9565b9050919050565b6000614d178261441d565b9150614d228361441d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614d5b57614d5a6149d3565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614da08261441d565b9150614dab8361441d565b925082614dbb57614dba614d66565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614e2260358361430a565b9150614e2d82614dc6565b604082019050919050565b60006020820190508181036000830152614e5181614e15565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614eb460348361430a565b9150614ebf82614e58565b604082019050919050565b60006020820190508181036000830152614ee381614ea7565b9050919050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614f46602f8361430a565b9150614f5182614eea565b604082019050919050565b60006020820190508181036000830152614f7581614f39565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614fd860248361430a565b9150614fe382614f7c565b604082019050919050565b6000602082019050818103600083015261500781614fcb565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061506a60268361430a565b91506150758261500e565b604082019050919050565b600060208201905081810360008301526150998161505d565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b60006150d660208361430a565b91506150e1826150a0565b602082019050919050565b60006020820190508181036000830152615105816150c9565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000615168602a8361430a565b91506151738261510c565b604082019050919050565b600060208201905081810360008301526151978161515b565b9050919050565b6000815190506151ad81614427565b92915050565b6000602082840312156151c9576151c86143ba565b5b60006151d78482850161519e565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061523c60248361430a565b9150615247826151e0565b604082019050919050565b6000602082019050818103600083015261526b8161522f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006152ce60228361430a565b91506152d982615272565b604082019050919050565b600060208201905081810360008301526152fd816152c1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061536060258361430a565b915061536b82615304565b604082019050919050565b6000602082019050818103600083015261538f81615353565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006153f260238361430a565b91506153fd82615396565b604082019050919050565b60006020820190508181036000830152615421816153e5565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061545e60168361430a565b915061546982615428565b602082019050919050565b6000602082019050818103600083015261548d81615451565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061551660498361430a565b915061552182615494565b606082019050919050565b6000602082019050818103600083015261554581615509565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006155a860358361430a565b91506155b38261554c565b604082019050919050565b600060208201905081810360008301526155d78161559b565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061561460138361430a565b915061561f826155de565b602082019050919050565b6000602082019050818103600083015261564381615607565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006156a660368361430a565b91506156b18261564a565b604082019050919050565b600060208201905081810360008301526156d581615699565b9050919050565b60006156e78261441d565b91506156f28361441d565b925082821015615705576157046149d3565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061576c60268361430a565b915061577782615710565b604082019050919050565b6000602082019050818103600083015261579b8161575f565b9050919050565b600081905092915050565b50565b60006157bd6000836157a2565b91506157c8826157ad565b600082019050919050565b60006157de826157b0565b9150819050919050565b60006060820190506157fd6000830186614570565b61580a6020830185614570565b6158176040830184614570565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061588c816143f1565b92915050565b6000602082840312156158a8576158a76143ba565b5b60006158b68482850161587d565b91505092915050565b6000819050919050565b60006158e46158df6158da846158bf565b6144f6565b61441d565b9050919050565b6158f4816158c9565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61592f816143df565b82525050565b60006159418383615926565b60208301905092915050565b6000602082019050919050565b6000615965826158fa565b61596f8185615905565b935061597a83615916565b8060005b838110156159ab5781516159928882615935565b975061599d8361594d565b92505060018101905061597e565b5085935050505092915050565b600060a0820190506159cd6000830188614570565b6159da60208301876158eb565b81810360408301526159ec818661595a565b90506159fb60608301856145ed565b615a086080830184614570565b9695505050505050565b600060c082019050615a2760008301896145ed565b615a346020830188614570565b615a4160408301876158eb565b615a4e60608301866158eb565b615a5b60808301856145ed565b615a6860a0830184614570565b979650505050505050565b600080600060608486031215615a8c57615a8b6143ba565b5b6000615a9a8682870161519e565b9350506020615aab8682870161519e565b9250506040615abc8682870161519e565b915050925092509256fea2646970667358221220c07dd40331dbd085bd33dd23ac8abbd12285e3bce3748cba33d2c9d0cb41eb2264736f6c634300080a0033

Deployed Bytecode

0x60806040526004361061039b5760003560e01c80638da5cb5b116101dc578063b62496f511610102578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610dad578063f637434214610dd6578063f8b45b0514610e01578063fe72b27a14610e2c576103a2565b8063dd62ed3e14610cef578063e2f4560514610d2c578063e884f26014610d57578063f11a24d314610d82576103a2565b8063c4590d3f116100dc578063c4590d3f14610c45578063c876d0b914610c6e578063c8c8ebe414610c99578063d85ba06314610cc4576103a2565b8063b62496f514610bb4578063bbc0c74214610bf1578063c024666814610c1c576103a2565b80639ec22c0e1161017a578063a4c82a0011610149578063a4c82a0014610ae6578063a9059cbb14610b11578063aacebbe314610b4e578063afa4f3b214610b77576103a2565b80639ec22c0e14610a285780639fccce3214610a53578063a0d82dc514610a7e578063a457c2d714610aa9576103a2565b8063924de9b7116101b6578063924de9b71461098057806395d89b41146109a95780639a7a23d6146109d45780639c3b4fdc146109fd576103a2565b80638da5cb5b146108ff5780638ea5220f1461092a5780639213691314610955576103a2565b8063313ce567116102c157806370a082311161025f5780637571336a1161022e5780637571336a1461085757806375f0a874146108805780637bce5a04146108ab57806386f6c3c1146108d6576103a2565b806370a08231146107af578063715018a6146107ec578063730c188814610803578063751039fc1461082c576103a2565b80634a62bb651161029b5780634a62bb65146106f15780634fbee1931461071c5780636a486a8e146107595780636ddd171314610784576103a2565b8063313ce5671461065e578063395093511461068957806349bd5a5e146106c6576103a2565b8063199ffc721161033957806327c8f8351161030857806327c8f835146105b45780632a9b8072146105df5780632c3e486c146106085780632e82f1a014610633576103a2565b8063199ffc72146104f65780631a8145bb146105215780631f3fed8f1461054c57806323b872dd14610577576103a2565b80631694505e116103755780631694505e1461044c57806318160ddd146104775780631816467f146104a2578063184c16c5146104cb576103a2565b806306fdde03146103a7578063095ea7b3146103d257806310d5de531461040f576103a2565b366103a257005b600080fd5b3480156103b357600080fd5b506103bc610e69565b6040516103c99190614398565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f49190614453565b610efb565b60405161040691906144ae565b60405180910390f35b34801561041b57600080fd5b50610436600480360381019061043191906144c9565b610f19565b60405161044391906144ae565b60405180910390f35b34801561045857600080fd5b50610461610f38565b60405161046e9190614555565b60405180910390f35b34801561048357600080fd5b5061048c610f5c565b604051610499919061457f565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c491906144c9565b610f66565b005b3480156104d757600080fd5b506104e06110a2565b6040516104ed919061457f565b60405180910390f35b34801561050257600080fd5b5061050b6110a8565b604051610518919061457f565b60405180910390f35b34801561052d57600080fd5b506105366110ae565b604051610543919061457f565b60405180910390f35b34801561055857600080fd5b506105616110b4565b60405161056e919061457f565b60405180910390f35b34801561058357600080fd5b5061059e6004803603810190610599919061459a565b6110ba565b6040516105ab91906144ae565b60405180910390f35b3480156105c057600080fd5b506105c96111b2565b6040516105d691906145fc565b60405180910390f35b3480156105eb57600080fd5b5061060660048036038101906106019190614643565b6111b8565b005b34801561061457600080fd5b5061061d61127b565b60405161062a919061457f565b60405180910390f35b34801561063f57600080fd5b50610648611281565b60405161065591906144ae565b60405180910390f35b34801561066a57600080fd5b50610673611294565b604051610680919061468c565b60405180910390f35b34801561069557600080fd5b506106b060048036038101906106ab9190614453565b61129d565b6040516106bd91906144ae565b60405180910390f35b3480156106d257600080fd5b506106db611349565b6040516106e891906145fc565b60405180910390f35b3480156106fd57600080fd5b5061070661136d565b60405161071391906144ae565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e91906144c9565b611380565b60405161075091906144ae565b60405180910390f35b34801561076557600080fd5b5061076e6113d6565b60405161077b919061457f565b60405180910390f35b34801561079057600080fd5b506107996113dc565b6040516107a691906144ae565b60405180910390f35b3480156107bb57600080fd5b506107d660048036038101906107d191906144c9565b6113ef565b6040516107e3919061457f565b60405180910390f35b3480156107f857600080fd5b50610801611437565b005b34801561080f57600080fd5b5061082a600480360381019061082591906146a7565b6114bf565b005b34801561083857600080fd5b506108416115ff565b60405161084e91906144ae565b60405180910390f35b34801561086357600080fd5b5061087e600480360381019061087991906146fa565b61169f565b005b34801561088c57600080fd5b50610895611776565b6040516108a291906145fc565b60405180910390f35b3480156108b757600080fd5b506108c061179c565b6040516108cd919061457f565b60405180910390f35b3480156108e257600080fd5b506108fd60048036038101906108f8919061473a565b6117a2565b005b34801561090b57600080fd5b50610914611922565b60405161092191906145fc565b60405180910390f35b34801561093657600080fd5b5061093f61194c565b60405161094c91906145fc565b60405180910390f35b34801561096157600080fd5b5061096a611972565b604051610977919061457f565b60405180910390f35b34801561098c57600080fd5b506109a760048036038101906109a29190614643565b611978565b005b3480156109b557600080fd5b506109be611a11565b6040516109cb9190614398565b60405180910390f35b3480156109e057600080fd5b506109fb60048036038101906109f691906146fa565b611aa3565b005b348015610a0957600080fd5b50610a12611bbc565b604051610a1f919061457f565b60405180910390f35b348015610a3457600080fd5b50610a3d611bc2565b604051610a4a919061457f565b60405180910390f35b348015610a5f57600080fd5b50610a68611bc8565b604051610a75919061457f565b60405180910390f35b348015610a8a57600080fd5b50610a93611bce565b604051610aa0919061457f565b60405180910390f35b348015610ab557600080fd5b50610ad06004803603810190610acb9190614453565b611bd4565b604051610add91906144ae565b60405180910390f35b348015610af257600080fd5b50610afb611cbf565b604051610b08919061457f565b60405180910390f35b348015610b1d57600080fd5b50610b386004803603810190610b339190614453565b611cc5565b604051610b4591906144ae565b60405180910390f35b348015610b5a57600080fd5b50610b756004803603810190610b7091906144c9565b611ce3565b005b348015610b8357600080fd5b50610b9e6004803603810190610b9991906147c7565b611e1f565b604051610bab91906144ae565b60405180910390f35b348015610bc057600080fd5b50610bdb6004803603810190610bd691906144c9565b611f74565b604051610be891906144ae565b60405180910390f35b348015610bfd57600080fd5b50610c06611f94565b604051610c1391906144ae565b60405180910390f35b348015610c2857600080fd5b50610c436004803603810190610c3e91906146fa565b611fa7565b005b348015610c5157600080fd5b50610c6c6004803603810190610c6791906147f4565b6120cc565b005b348015610c7a57600080fd5b50610c8361226c565b604051610c9091906144ae565b60405180910390f35b348015610ca557600080fd5b50610cae61227f565b604051610cbb919061457f565b60405180910390f35b348015610cd057600080fd5b50610cd9612285565b604051610ce6919061457f565b60405180910390f35b348015610cfb57600080fd5b50610d166004803603810190610d119190614834565b61228b565b604051610d23919061457f565b60405180910390f35b348015610d3857600080fd5b50610d41612312565b604051610d4e919061457f565b60405180910390f35b348015610d6357600080fd5b50610d6c612318565b604051610d7991906144ae565b60405180910390f35b348015610d8e57600080fd5b50610d976123b8565b604051610da4919061457f565b60405180910390f35b348015610db957600080fd5b50610dd46004803603810190610dcf91906144c9565b6123be565b005b348015610de257600080fd5b50610deb6124b6565b604051610df8919061457f565b60405180910390f35b348015610e0d57600080fd5b50610e166124bc565b604051610e23919061457f565b60405180910390f35b348015610e3857600080fd5b50610e536004803603810190610e4e91906147c7565b6124c2565b604051610e6091906144ae565b60405180910390f35b606060038054610e78906148a3565b80601f0160208091040260200160405190810160405280929190818152602001828054610ea4906148a3565b8015610ef15780601f10610ec657610100808354040283529160200191610ef1565b820191906000526020600020905b815481529060010190602001808311610ed457829003601f168201915b5050505050905090565b6000610f0f610f0861279a565b84846127a2565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610f6e61279a565b73ffffffffffffffffffffffffffffffffffffffff16610f8c611922565b73ffffffffffffffffffffffffffffffffffffffff1614610fe2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd990614921565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b60006110c784848461296d565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061111261279a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611192576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611189906149b3565b60405180910390fd5b6111a68561119e61279a565b8584036127a2565b60019150509392505050565b61dead81565b6111c061279a565b73ffffffffffffffffffffffffffffffffffffffff166111de611922565b73ffffffffffffffffffffffffffffffffffffffff1614611234576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122b90614921565b60405180910390fd5b8015611278576001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e819055505b50565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b600061133f6112aa61279a565b8484600160006112b861279a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461133a9190614a02565b6127a2565b6001905092915050565b7f000000000000000000000000060b02932e326cf23c20bdd978ffc2caa815a43581565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61143f61279a565b73ffffffffffffffffffffffffffffffffffffffff1661145d611922565b73ffffffffffffffffffffffffffffffffffffffff16146114b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114aa90614921565b60405180910390fd5b6114bd6000613705565b565b6114c761279a565b73ffffffffffffffffffffffffffffffffffffffff166114e5611922565b73ffffffffffffffffffffffffffffffffffffffff161461153b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153290614921565b60405180910390fd5b610258831015611580576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157790614aca565b60405180910390fd5b6103e88211158015611593575060008210155b6115d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c990614b5c565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b600061160961279a565b73ffffffffffffffffffffffffffffffffffffffff16611627611922565b73ffffffffffffffffffffffffffffffffffffffff161461167d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167490614921565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b6116a761279a565b73ffffffffffffffffffffffffffffffffffffffff166116c5611922565b73ffffffffffffffffffffffffffffffffffffffff161461171b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171290614921565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b6117aa61279a565b73ffffffffffffffffffffffffffffffffffffffff166117c8611922565b73ffffffffffffffffffffffffffffffffffffffff161461181e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181590614921565b60405180910390fd5b8560158190555084601681905550836017819055506017546016546015546118469190614a02565b6118509190614a02565b601481905550604b601454111561189c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189390614bc8565b60405180910390fd5b8260198190555081601a8190555080601b819055506017546016546015546118c49190614a02565b6118ce9190614a02565b601881905550604b601454111561191a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191190614bc8565b60405180910390fd5b505050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b61198061279a565b73ffffffffffffffffffffffffffffffffffffffff1661199e611922565b73ffffffffffffffffffffffffffffffffffffffff16146119f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119eb90614921565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611a20906148a3565b80601f0160208091040260200160405190810160405280929190818152602001828054611a4c906148a3565b8015611a995780601f10611a6e57610100808354040283529160200191611a99565b820191906000526020600020905b815481529060010190602001808311611a7c57829003601f168201915b5050505050905090565b611aab61279a565b73ffffffffffffffffffffffffffffffffffffffff16611ac9611922565b73ffffffffffffffffffffffffffffffffffffffff1614611b1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1690614921565b60405180910390fd5b7f000000000000000000000000060b02932e326cf23c20bdd978ffc2caa815a43573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba590614c5a565b60405180910390fd5b611bb882826137cb565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611be361279a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611ca0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9790614cec565b60405180910390fd5b611cb4611cab61279a565b858584036127a2565b600191505092915050565b600e5481565b6000611cd9611cd261279a565b848461296d565b6001905092915050565b611ceb61279a565b73ffffffffffffffffffffffffffffffffffffffff16611d09611922565b73ffffffffffffffffffffffffffffffffffffffff1614611d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5690614921565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611e2961279a565b73ffffffffffffffffffffffffffffffffffffffff16611e47611922565b73ffffffffffffffffffffffffffffffffffffffff1614611e9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9490614921565b60405180910390fd5b620186a06001611eab610f5c565b611eb59190614d0c565b611ebf9190614d95565b821015611f01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef890614e38565b60405180910390fd5b6103e86005611f0e610f5c565b611f189190614d0c565b611f229190614d95565b821115611f64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5b90614eca565b60405180910390fd5b8160098190555060019050919050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611faf61279a565b73ffffffffffffffffffffffffffffffffffffffff16611fcd611922565b73ffffffffffffffffffffffffffffffffffffffff1614612023576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201a90614921565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516120c091906144ae565b60405180910390a25050565b6120d461279a565b73ffffffffffffffffffffffffffffffffffffffff166120f2611922565b73ffffffffffffffffffffffffffffffffffffffff1614612148576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213f90614921565b60405180910390fd5b670de0b6b3a76400006103e8600161215e610f5c565b6121689190614d0c565b6121729190614d95565b61217c9190614d95565b8210156121be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121b590614f5c565b60405180910390fd5b670de0b6b3a7640000826121d29190614d0c565b600881905550670de0b6b3a76400006103e860056121ee610f5c565b6121f89190614d0c565b6122029190614d95565b61220c9190614d95565b81101561224e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224590614fee565b60405180910390fd5b670de0b6b3a7640000816122629190614d0c565b600a819055505050565b601360009054906101000a900460ff1681565b60085481565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b600061232261279a565b73ffffffffffffffffffffffffffffffffffffffff16612340611922565b73ffffffffffffffffffffffffffffffffffffffff1614612396576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238d90614921565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b6123c661279a565b73ffffffffffffffffffffffffffffffffffffffff166123e4611922565b73ffffffffffffffffffffffffffffffffffffffff161461243a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243190614921565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a190615080565b60405180910390fd5b6124b381613705565b50565b601a5481565b600a5481565b60006124cc61279a565b73ffffffffffffffffffffffffffffffffffffffff166124ea611922565b73ffffffffffffffffffffffffffffffffffffffff1614612540576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253790614921565b60405180910390fd5b600f546010546125509190614a02565b4211612591576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612588906150ec565b60405180910390fd5b6103e88211156125d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125cd9061517e565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000060b02932e326cf23c20bdd978ffc2caa815a4356040518263ffffffff1660e01b815260040161263891906145fc565b602060405180830381865afa158015612655573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061267991906151b3565b905060006126a4612710612696868561386c90919063ffffffff16565b61388290919063ffffffff16565b905060008111156126dd576126dc7f000000000000000000000000060b02932e326cf23c20bdd978ffc2caa815a43561dead83613898565b5b60007f000000000000000000000000060b02932e326cf23c20bdd978ffc2caa815a43590508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561274a57600080fd5b505af115801561275e573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612812576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161280990615252565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612882576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612879906152e4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612960919061457f565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156129dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d490615376565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a4490615408565b60405180910390fd5b6000811415612a6757612a6283836000613898565b613700565b601160009054906101000a900460ff161561312a57612a84611922565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612af25750612ac2611922565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b2b5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b65575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b7e5750600560149054906101000a900460ff16155b1561312957601160019054906101000a900460ff16612c7857601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c385750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c6e90615474565b60405180910390fd5b5b601360009054906101000a900460ff1615612e4057612c95611922565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612d1c57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612d7457507f000000000000000000000000060b02932e326cf23c20bdd978ffc2caa815a43573ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612e3f5743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612dfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612df19061552c565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ee35750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f8a57600854811115612f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f24906155be565b60405180910390fd5b600a54612f39836113ef565b82612f449190614a02565b1115612f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f7c9061562a565b60405180910390fd5b613128565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561302d5750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561307c57600854811115613077576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306e906156bc565b60405180910390fd5b613127565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661312657600a546130d9836113ef565b826130e49190614a02565b1115613125576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161311c9061562a565b60405180910390fd5b5b5b5b5b5b6000613135306113ef565b90506000600954821015905080801561315a5750601160029054906101000a900460ff165b80156131735750600560149054906101000a900460ff16155b80156131c95750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561321f5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156132755750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156132b9576001600560146101000a81548160ff02191690831515021790555061329d613b19565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff1615801561331f5750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156133375750600c60009054906101000a900460ff165b80156133525750600d54600e5461334e9190614a02565b4210155b80156133a85750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156133b7576133b5613e00565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061346d5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561347757600090505b600081156136f057602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156134da57506000601854115b156135a75761350760646134f96018548861386c90919063ffffffff16565b61388290919063ffffffff16565b9050601854601a548261351a9190614d0c565b6135249190614d95565b601d60008282546135359190614a02565b92505081905550601854601b548261354d9190614d0c565b6135579190614d95565b601e60008282546135689190614a02565b92505081905550601854601954826135809190614d0c565b61358a9190614d95565b601c600082825461359b9190614a02565b925050819055506136cc565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561360257506000601454115b156136cb5761362f60646136216014548861386c90919063ffffffff16565b61388290919063ffffffff16565b9050601454601654826136429190614d0c565b61364c9190614d95565b601d600082825461365d9190614a02565b92505081905550601454601754826136759190614d0c565b61367f9190614d95565b601e60008282546136909190614a02565b92505081905550601454601554826136a89190614d0c565b6136b29190614d95565b601c60008282546136c39190614a02565b925050819055505b5b60008111156136e1576136e0873083613898565b5b80856136ed91906156dc565b94505b6136fb878787613898565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000818361387a9190614d0c565b905092915050565b600081836138909190614d95565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613908576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138ff90615376565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613978576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161396f90615408565b60405180910390fd5b613983838383613fc6565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a0090615782565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613a9c9190614a02565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613b00919061457f565b60405180910390a3613b13848484613fcb565b50505050565b6000613b24306113ef565b90506000601e54601c54601d54613b3b9190614a02565b613b459190614a02565b9050600080831480613b575750600082145b15613b6457505050613dfe565b6014600954613b739190614d0c565b831115613b8c576014600954613b899190614d0c565b92505b6000600283601d5486613b9f9190614d0c565b613ba99190614d95565b613bb39190614d95565b90506000613bca8286613fd090919063ffffffff16565b90506000479050613bda82613fe6565b6000613bef8247613fd090919063ffffffff16565b90506000613c1a87613c0c601c548561386c90919063ffffffff16565b61388290919063ffffffff16565b90506000613c4588613c37601e548661386c90919063ffffffff16565b61388290919063ffffffff16565b90506000818385613c5691906156dc565b613c6091906156dc565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613cc0906157d3565b60006040518083038185875af1925050503d8060008114613cfd576040519150601f19603f3d011682016040523d82523d6000602084013e613d02565b606091505b505080985050600087118015613d185750600081115b15613d6557613d278782614223565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613d5c939291906157e8565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613dab906157d3565b60006040518083038185875af1925050503d8060008114613de8576040519150601f19603f3d011682016040523d82523d6000602084013e613ded565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000060b02932e326cf23c20bdd978ffc2caa815a4356040518263ffffffff1660e01b8152600401613e6491906145fc565b602060405180830381865afa158015613e81573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ea591906151b3565b90506000613ed2612710613ec4600b548561386c90919063ffffffff16565b61388290919063ffffffff16565b90506000811115613f0b57613f0a7f000000000000000000000000060b02932e326cf23c20bdd978ffc2caa815a43561dead83613898565b5b60007f000000000000000000000000060b02932e326cf23c20bdd978ffc2caa815a43590508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613f7857600080fd5b505af1158015613f8c573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b60008183613fde91906156dc565b905092915050565b6000600267ffffffffffffffff8111156140035761400261581f565b5b6040519080825280602002602001820160405280156140315781602001602082028036833780820191505090505b50905030816000815181106140495761404861584e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156140ee573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141129190615892565b816001815181106141265761412561584e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061418b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846127a2565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b81526004016141ed9594939291906159b8565b600060405180830381600087803b15801561420757600080fd5b505af115801561421b573d6000803e3d6000fd5b505050505050565b61424e307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846127a2565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b81526004016142b596959493929190615a12565b60606040518083038185885af11580156142d3573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906142f89190615a73565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561433957808201518184015260208101905061431e565b83811115614348576000848401525b50505050565b6000601f19601f8301169050919050565b600061436a826142ff565b614374818561430a565b935061438481856020860161431b565b61438d8161434e565b840191505092915050565b600060208201905081810360008301526143b2818461435f565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006143ea826143bf565b9050919050565b6143fa816143df565b811461440557600080fd5b50565b600081359050614417816143f1565b92915050565b6000819050919050565b6144308161441d565b811461443b57600080fd5b50565b60008135905061444d81614427565b92915050565b6000806040838503121561446a576144696143ba565b5b600061447885828601614408565b92505060206144898582860161443e565b9150509250929050565b60008115159050919050565b6144a881614493565b82525050565b60006020820190506144c3600083018461449f565b92915050565b6000602082840312156144df576144de6143ba565b5b60006144ed84828501614408565b91505092915050565b6000819050919050565b600061451b614516614511846143bf565b6144f6565b6143bf565b9050919050565b600061452d82614500565b9050919050565b600061453f82614522565b9050919050565b61454f81614534565b82525050565b600060208201905061456a6000830184614546565b92915050565b6145798161441d565b82525050565b60006020820190506145946000830184614570565b92915050565b6000806000606084860312156145b3576145b26143ba565b5b60006145c186828701614408565b93505060206145d286828701614408565b92505060406145e38682870161443e565b9150509250925092565b6145f6816143df565b82525050565b600060208201905061461160008301846145ed565b92915050565b61462081614493565b811461462b57600080fd5b50565b60008135905061463d81614617565b92915050565b600060208284031215614659576146586143ba565b5b60006146678482850161462e565b91505092915050565b600060ff82169050919050565b61468681614670565b82525050565b60006020820190506146a1600083018461467d565b92915050565b6000806000606084860312156146c0576146bf6143ba565b5b60006146ce8682870161443e565b93505060206146df8682870161443e565b92505060406146f08682870161462e565b9150509250925092565b60008060408385031215614711576147106143ba565b5b600061471f85828601614408565b92505060206147308582860161462e565b9150509250929050565b60008060008060008060c08789031215614757576147566143ba565b5b600061476589828a0161443e565b965050602061477689828a0161443e565b955050604061478789828a0161443e565b945050606061479889828a0161443e565b93505060806147a989828a0161443e565b92505060a06147ba89828a0161443e565b9150509295509295509295565b6000602082840312156147dd576147dc6143ba565b5b60006147eb8482850161443e565b91505092915050565b6000806040838503121561480b5761480a6143ba565b5b60006148198582860161443e565b925050602061482a8582860161443e565b9150509250929050565b6000806040838503121561484b5761484a6143ba565b5b600061485985828601614408565b925050602061486a85828601614408565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806148bb57607f821691505b602082108114156148cf576148ce614874565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061490b60208361430a565b9150614916826148d5565b602082019050919050565b6000602082019050818103600083015261493a816148fe565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b600061499d60288361430a565b91506149a882614941565b604082019050919050565b600060208201905081810360008301526149cc81614990565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614a0d8261441d565b9150614a188361441d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a4d57614a4c6149d3565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614ab460338361430a565b9150614abf82614a58565b604082019050919050565b60006020820190508181036000830152614ae381614aa7565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614b4660308361430a565b9150614b5182614aea565b604082019050919050565b60006020820190508181036000830152614b7581614b39565b9050919050565b7f4d757374206b656570206665657320617420373525206f72206c657373000000600082015250565b6000614bb2601d8361430a565b9150614bbd82614b7c565b602082019050919050565b60006020820190508181036000830152614be181614ba5565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614c4460398361430a565b9150614c4f82614be8565b604082019050919050565b60006020820190508181036000830152614c7381614c37565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614cd660258361430a565b9150614ce182614c7a565b604082019050919050565b60006020820190508181036000830152614d0581614cc9565b9050919050565b6000614d178261441d565b9150614d228361441d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614d5b57614d5a6149d3565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614da08261441d565b9150614dab8361441d565b925082614dbb57614dba614d66565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614e2260358361430a565b9150614e2d82614dc6565b604082019050919050565b60006020820190508181036000830152614e5181614e15565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614eb460348361430a565b9150614ebf82614e58565b604082019050919050565b60006020820190508181036000830152614ee381614ea7565b9050919050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614f46602f8361430a565b9150614f5182614eea565b604082019050919050565b60006020820190508181036000830152614f7581614f39565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000614fd860248361430a565b9150614fe382614f7c565b604082019050919050565b6000602082019050818103600083015261500781614fcb565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061506a60268361430a565b91506150758261500e565b604082019050919050565b600060208201905081810360008301526150998161505d565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b60006150d660208361430a565b91506150e1826150a0565b602082019050919050565b60006020820190508181036000830152615105816150c9565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000615168602a8361430a565b91506151738261510c565b604082019050919050565b600060208201905081810360008301526151978161515b565b9050919050565b6000815190506151ad81614427565b92915050565b6000602082840312156151c9576151c86143ba565b5b60006151d78482850161519e565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061523c60248361430a565b9150615247826151e0565b604082019050919050565b6000602082019050818103600083015261526b8161522f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006152ce60228361430a565b91506152d982615272565b604082019050919050565b600060208201905081810360008301526152fd816152c1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061536060258361430a565b915061536b82615304565b604082019050919050565b6000602082019050818103600083015261538f81615353565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006153f260238361430a565b91506153fd82615396565b604082019050919050565b60006020820190508181036000830152615421816153e5565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061545e60168361430a565b915061546982615428565b602082019050919050565b6000602082019050818103600083015261548d81615451565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b600061551660498361430a565b915061552182615494565b606082019050919050565b6000602082019050818103600083015261554581615509565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006155a860358361430a565b91506155b38261554c565b604082019050919050565b600060208201905081810360008301526155d78161559b565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061561460138361430a565b915061561f826155de565b602082019050919050565b6000602082019050818103600083015261564381615607565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006156a660368361430a565b91506156b18261564a565b604082019050919050565b600060208201905081810360008301526156d581615699565b9050919050565b60006156e78261441d565b91506156f28361441d565b925082821015615705576157046149d3565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061576c60268361430a565b915061577782615710565b604082019050919050565b6000602082019050818103600083015261579b8161575f565b9050919050565b600081905092915050565b50565b60006157bd6000836157a2565b91506157c8826157ad565b600082019050919050565b60006157de826157b0565b9150819050919050565b60006060820190506157fd6000830186614570565b61580a6020830185614570565b6158176040830184614570565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061588c816143f1565b92915050565b6000602082840312156158a8576158a76143ba565b5b60006158b68482850161587d565b91505092915050565b6000819050919050565b60006158e46158df6158da846158bf565b6144f6565b61441d565b9050919050565b6158f4816158c9565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61592f816143df565b82525050565b60006159418383615926565b60208301905092915050565b6000602082019050919050565b6000615965826158fa565b61596f8185615905565b935061597a83615916565b8060005b838110156159ab5781516159928882615935565b975061599d8361594d565b92505060018101905061597e565b5085935050505092915050565b600060a0820190506159cd6000830188614570565b6159da60208301876158eb565b81810360408301526159ec818661595a565b90506159fb60608301856145ed565b615a086080830184614570565b9695505050505050565b600060c082019050615a2760008301896145ed565b615a346020830188614570565b615a4160408301876158eb565b615a4e60608301866158eb565b615a5b60808301856145ed565b615a6860a0830184614570565b979650505050505050565b600080600060608486031215615a8c57615a8b6143ba565b5b6000615a9a8682870161519e565b9350506020615aab8682870161519e565b9250506040615abc8682870161519e565b915050925092509256fea2646970667358221220c07dd40331dbd085bd33dd23ac8abbd12285e3bce3748cba33d2c9d0cb41eb2264736f6c634300080a0033

Deployed Bytecode Sourcemap

32766:19369:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9594:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11761:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34389:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32840:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10714:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41463:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33405:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33220:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34173:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34133;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12412:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32943:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37732:212;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33315:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33276:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10556:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13313:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32898:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33503:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41628:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33988:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33582:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10885:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2829:103;;;;;;;;;;;;;:::i;:::-;;49717:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37996:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39389:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33035:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33881;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39760:731;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2178:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33072:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34023:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39652:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9813:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40716:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33955:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33459:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34213:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34099:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14031:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33367:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11225:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41224:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38383:494;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34610:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33543:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40526:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38885:490;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33799:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33105:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33847:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11463:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33147:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38178:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33918:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3087:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34061:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33187:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51076:1056;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9594:100;9648:13;9681:5;9674:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9594:100;:::o;11761:169::-;11844:4;11861:39;11870:12;:10;:12::i;:::-;11884:7;11893:6;11861:8;:39::i;:::-;11918:4;11911:11;;11761:169;;;;:::o;34389:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32840:51::-;;;:::o;10714:108::-;10775:7;10802:12;;10795:19;;10714:108;:::o;41463:157::-;2409:12;:10;:12::i;:::-;2398:23;;:7;:5;:7::i;:::-;:23;;;2390:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41570:9:::1;;;;;;;;;;;41542:38;;41559:9;41542:38;;;;;;;;;;;;41603:9;41591;;:21;;;;;;;;;;;;;;;;;;41463:157:::0;:::o;33405:47::-;;;;:::o;33220:36::-;;;;:::o;34173:33::-;;;;:::o;34133:::-;;;;:::o;12412:492::-;12552:4;12569:36;12579:6;12587:9;12598:6;12569:9;:36::i;:::-;12618:24;12645:11;:19;12657:6;12645:19;;;;;;;;;;;;;;;:33;12665:12;:10;:12::i;:::-;12645:33;;;;;;;;;;;;;;;;12618:60;;12717:6;12697:16;:26;;12689:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12804:57;12813:6;12821:12;:10;:12::i;:::-;12854:6;12835:16;:25;12804:8;:57::i;:::-;12892:4;12885:11;;;12412:492;;;;;:::o;32943:53::-;32989:6;32943:53;:::o;37732:212::-;2409:12;:10;:12::i;:::-;2398:23;;:7;:5;:7::i;:::-;:23;;;2390:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37802:7:::1;37799:128;;;37837:4;37821:13;;:20;;;;;;;;;;;;;;;;;;37866:4;37852:11;;:18;;;;;;;;;;;;;;;;;;37898:15;37881:14;:32;;;;37799:128;37732:212:::0;:::o;33315:45::-;;;;:::o;33276:32::-;;;;;;;;;;;;;:::o;10556:93::-;10614:5;10639:2;10632:9;;10556:93;:::o;13313:215::-;13401:4;13418:80;13427:12;:10;:12::i;:::-;13441:7;13487:10;13450:11;:25;13462:12;:10;:12::i;:::-;13450:25;;;;;;;;;;;;;;;:34;13476:7;13450:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13418:8;:80::i;:::-;13516:4;13509:11;;13313:215;;;;:::o;32898:38::-;;;:::o;33503:33::-;;;;;;;;;;;;;:::o;41628:126::-;41694:4;41718:19;:28;41738:7;41718:28;;;;;;;;;;;;;;;;;;;;;;;;;41711:35;;41628:126;;;:::o;33988:28::-;;;;:::o;33582:30::-;;;;;;;;;;;;;:::o;10885:127::-;10959:7;10986:9;:18;10996:7;10986:18;;;;;;;;;;;;;;;;10979:25;;10885:127;;;:::o;2829:103::-;2409:12;:10;:12::i;:::-;2398:23;;:7;:5;:7::i;:::-;:23;;;2390:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2894:30:::1;2921:1;2894:18;:30::i;:::-;2829:103::o:0;49717:555::-;2409:12;:10;:12::i;:::-;2398:23;;:7;:5;:7::i;:::-;:23;;;2390:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49919:3:::1;49896:19;:26;;49874:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;50046:4;50034:8;:16;;:33;;;;;50066:1;50054:8;:13;;50034:33;50012:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;50172:19;50154:15;:37;;;;50221:8;50202:16;:27;;;;50256:8;50240:13;;:24;;;;;;;;;;;;;;;;;;49717:555:::0;;;:::o;37996:121::-;38048:4;2409:12;:10;:12::i;:::-;2398:23;;:7;:5;:7::i;:::-;:23;;;2390:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38082:5:::1;38065:14;;:22;;;;;;;;;;;;;;;;;;38105:4;38098:11;;37996:121:::0;:::o;39389:167::-;2409:12;:10;:12::i;:::-;2398:23;;:7;:5;:7::i;:::-;:23;;;2390:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39544:4:::1;39502:31;:39;39534:6;39502:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39389:167:::0;;:::o;33035:30::-;;;;;;;;;;;;;:::o;33881:::-;;;;:::o;39760:731::-;2409:12;:10;:12::i;:::-;2398:23;;:7;:5;:7::i;:::-;:23;;;2390:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39973:16:::1;39955:15;:34;;;;40018:16;40000:15;:34;;;;40057:10;40045:9;:22;;;;40129:9;;40111:15;;40093;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;40078:12;:60;;;;40173:2;40157:12;;:18;;40149:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;40241:17;40222:16;:36;;;;40288:17;40269:16;:36;;;;40329:11;40316:10;:24;;;;40403:9;;40385:15;;40367;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;40351:13;:61;;;;40447:2;40431:12;;:18;;40423:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;39760:731:::0;;;;;;:::o;2178:87::-;2224:7;2251:6;;;;;;;;;;;2244:13;;2178:87;:::o;33072:24::-;;;;;;;;;;;;;:::o;34023:31::-;;;;:::o;39652:100::-;2409:12;:10;:12::i;:::-;2398:23;;:7;:5;:7::i;:::-;:23;;;2390:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39737:7:::1;39723:11;;:21;;;;;;;;;;;;;;;;;;39652:100:::0;:::o;9813:104::-;9869:13;9902:7;9895:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9813:104;:::o;40716:304::-;2409:12;:10;:12::i;:::-;2398:23;;:7;:5;:7::i;:::-;:23;;;2390:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40860:13:::1;40852:21;;:4;:21;;;;40830:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;40971:41;41000:4;41006:5;40971:28;:41::i;:::-;40716:304:::0;;:::o;33955:24::-;;;;:::o;33459:35::-;;;;:::o;34213:27::-;;;;:::o;34099:25::-;;;;:::o;14031:413::-;14124:4;14141:24;14168:11;:25;14180:12;:10;:12::i;:::-;14168:25;;;;;;;;;;;;;;;:34;14194:7;14168:34;;;;;;;;;;;;;;;;14141:61;;14241:15;14221:16;:35;;14213:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14334:67;14343:12;:10;:12::i;:::-;14357:7;14385:15;14366:16;:34;14334:8;:67::i;:::-;14432:4;14425:11;;;14031:413;;;;:::o;33367:29::-;;;;:::o;11225:175::-;11311:4;11328:42;11338:12;:10;:12::i;:::-;11352:9;11363:6;11328:9;:42::i;:::-;11388:4;11381:11;;11225:175;;;;:::o;41224:231::-;2409:12;:10;:12::i;:::-;2398:23;;:7;:5;:7::i;:::-;:23;;;2390:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41384:15:::1;;;;;;;;;;;41341:59;;41364:18;41341:59;;;;;;;;;;;;41429:18;41411:15;;:36;;;;;;;;;;;;;;;;;;41224:231:::0;:::o;38383:494::-;38488:4;2409:12;:10;:12::i;:::-;2398:23;;:7;:5;:7::i;:::-;:23;;;2390:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38567:6:::1;38562:1;38546:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38545:28;;;;:::i;:::-;38532:9;:41;;38510:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;38722:4;38717:1;38701:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38700:26;;;;:::i;:::-;38687:9;:39;;38665:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;38838:9;38817:18;:30;;;;38865:4;38858:11;;38383:494:::0;;;:::o;34610:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33543:32::-;;;;;;;;;;;;;:::o;40526:182::-;2409:12;:10;:12::i;:::-;2398:23;;:7;:5;:7::i;:::-;:23;;;2390:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40642:8:::1;40611:19;:28;40631:7;40611:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40682:7;40666:34;;;40691:8;40666:34;;;;;;:::i;:::-;;;;;;;;40526:182:::0;;:::o;38885:490::-;2409:12;:10;:12::i;:::-;2398:23;;:7;:5;:7::i;:::-;:23;;;2390:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39039:4:::1;39031;39026:1;39010:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39009:26;;;;:::i;:::-;39008:35;;;;:::i;:::-;38996:8;:47;;38974:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;39164:6;39152:8;:19;;;;:::i;:::-;39129:20;:42;;;;39253:4;39245;39240:1;39224:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39223:26;;;;:::i;:::-;39222:35;;;;:::i;:::-;39206:12;:51;;39184:137;;;;;;;;;;;;:::i;:::-;;;;;;;;;39360:6;39344:12;:23;;;;:::i;:::-;39332:9;:35;;;;38885:490:::0;;:::o;33799:39::-;;;;;;;;;;;;;:::o;33105:35::-;;;;:::o;33847:27::-;;;;:::o;11463:151::-;11552:7;11579:11;:18;11591:5;11579:18;;;;;;;;;;;;;;;:27;11598:7;11579:27;;;;;;;;;;;;;;;;11572:34;;11463:151;;;;:::o;33147:33::-;;;;:::o;38178:135::-;38238:4;2409:12;:10;:12::i;:::-;2398:23;;:7;:5;:7::i;:::-;:23;;;2390:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38278:5:::1;38255:20;;:28;;;;;;;;;;;;;;;;;;38301:4;38294:11;;38178:135:::0;:::o;33918:30::-;;;;:::o;3087:201::-;2409:12;:10;:12::i;:::-;2398:23;;:7;:5;:7::i;:::-;:23;;;2390:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3196:1:::1;3176:22;;:8;:22;;;;3168:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3252:28;3271:8;3252:18;:28::i;:::-;3087:201:::0;:::o;34061:31::-;;;;:::o;33187:24::-;;;;:::o;51076:1056::-;51187:4;2409:12;:10;:12::i;:::-;2398:23;;:7;:5;:7::i;:::-;:23;;;2390:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51272:19:::1;;51249:20;;:42;;;;:::i;:::-;51231:15;:60;51209:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;51381:4;51370:7;:15;;51362:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;51466:15;51443:20;:38;;;;51536:28;51567:4;:14;;;51582:13;51567:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51536:60;;51646:20;51669:44;51707:5;51669:33;51694:7;51669:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;51646:67;;51833:1;51818:12;:16;51814:110;;;51851:61;51867:13;51890:6;51899:12;51851:15;:61::i;:::-;51814:110;51999:19;52036:13;51999:51;;52061:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;52088:14;;;;;;;;;;52120:4;52113:11;;;;;51076:1056:::0;;;:::o;851:98::-;904:7;931:10;924:17;;851:98;:::o;17715:380::-;17868:1;17851:19;;:5;:19;;;;17843:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17949:1;17930:21;;:7;:21;;;;17922:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18033:6;18003:11;:18;18015:5;18003:18;;;;;;;;;;;;;;;:27;18022:7;18003:27;;;;;;;;;;;;;;;:36;;;;18071:7;18055:32;;18064:5;18055:32;;;18080:6;18055:32;;;;;;:::i;:::-;;;;;;;;17715:380;;;:::o;41812:5011::-;41960:1;41944:18;;:4;:18;;;;41936:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42037:1;42023:16;;:2;:16;;;;42015:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;42106:1;42096:6;:11;42092:93;;;42124:28;42140:4;42146:2;42150:1;42124:15;:28::i;:::-;42167:7;;42092:93;42201:14;;;;;;;;;;;42197:2487;;;42262:7;:5;:7::i;:::-;42254:15;;:4;:15;;;;:49;;;;;42296:7;:5;:7::i;:::-;42290:13;;:2;:13;;;;42254:49;:86;;;;;42338:1;42324:16;;:2;:16;;;;42254:86;:128;;;;;42375:6;42361:21;;:2;:21;;;;42254:128;:158;;;;;42404:8;;;;;;;;;;;42403:9;42254:158;42232:2441;;;42452:13;;;;;;;;;;;42447:223;;42524:19;:25;42544:4;42524:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42553:19;:23;42573:2;42553:23;;;;;;;;;;;;;;;;;;;;;;;;;42524:52;42490:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;42447:223;42826:20;;;;;;;;;;;42822:641;;;42907:7;:5;:7::i;:::-;42901:13;;:2;:13;;;;:72;;;;;42957:15;42943:30;;:2;:30;;;;42901:72;:129;;;;;43016:13;43002:28;;:2;:28;;;;42901:129;42871:573;;;43194:12;43119:28;:39;43148:9;43119:39;;;;;;;;;;;;;;;;:87;43081:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;43408:12;43366:28;:39;43395:9;43366:39;;;;;;;;;;;;;;;:54;;;;42871:573;42822:641;43537:25;:31;43563:4;43537:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43594:31;:35;43626:2;43594:35;;;;;;;;;;;;;;;;;;;;;;;;;43593:36;43537:92;43511:1147;;;43716:20;;43706:6;:30;;43672:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;43924:9;;43907:13;43917:2;43907:9;:13::i;:::-;43898:6;:22;;;;:::i;:::-;:35;;43864:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43511:1147;;;44102:25;:29;44128:2;44102:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;44157:31;:37;44189:4;44157:37;;;;;;;;;;;;;;;;;;;;;;;;;44156:38;44102:92;44076:582;;;44281:20;;44271:6;:30;;44237:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;44076:582;;;44438:31;:35;44470:2;44438:35;;;;;;;;;;;;;;;;;;;;;;;;;44433:225;;44558:9;;44541:13;44551:2;44541:9;:13::i;:::-;44532:6;:22;;;;:::i;:::-;:35;;44498:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44433:225;44076:582;43511:1147;42232:2441;42197:2487;44696:28;44727:24;44745:4;44727:9;:24::i;:::-;44696:55;;44764:12;44803:18;;44779:20;:42;;44764:57;;44852:7;:35;;;;;44876:11;;;;;;;;;;;44852:35;:61;;;;;44905:8;;;;;;;;;;;44904:9;44852:61;:110;;;;;44931:25;:31;44957:4;44931:31;;;;;;;;;;;;;;;;;;;;;;;;;44930:32;44852:110;:153;;;;;44980:19;:25;45000:4;44980:25;;;;;;;;;;;;;;;;;;;;;;;;;44979:26;44852:153;:194;;;;;45023:19;:23;45043:2;45023:23;;;;;;;;;;;;;;;;;;;;;;;;;45022:24;44852:194;44834:326;;;45084:4;45073:8;;:15;;;;;;;;;;;;;;;;;;45105:10;:8;:10::i;:::-;45143:5;45132:8;;:16;;;;;;;;;;;;;;;;;;44834:326;45191:8;;;;;;;;;;;45190:9;:55;;;;;45216:25;:29;45242:2;45216:29;;;;;;;;;;;;;;;;;;;;;;;;;45190:55;:85;;;;;45262:13;;;;;;;;;;;45190:85;:153;;;;;45328:15;;45311:14;;:32;;;;:::i;:::-;45292:15;:51;;45190:153;:196;;;;;45361:19;:25;45381:4;45361:25;;;;;;;;;;;;;;;;;;;;;;;;;45360:26;45190:196;45172:282;;;45413:29;:27;:29::i;:::-;;45172:282;45466:12;45482:8;;;;;;;;;;;45481:9;45466:24;;45592:19;:25;45612:4;45592:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;45621:19;:23;45641:2;45621:23;;;;;;;;;;;;;;;;;;;;;;;;;45592:52;45588:100;;;45671:5;45661:15;;45588:100;45700:12;45805:7;45801:969;;;45857:25;:29;45883:2;45857:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;45906:1;45890:13;;:17;45857:50;45853:768;;;45935:34;45965:3;45935:25;45946:13;;45935:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;45928:41;;46038:13;;46018:16;;46011:4;:23;;;;:::i;:::-;46010:41;;;;:::i;:::-;45988:18;;:63;;;;;;;:::i;:::-;;;;;;;;46108:13;;46094:10;;46087:4;:17;;;;:::i;:::-;46086:35;;;;:::i;:::-;46070:12;;:51;;;;;;;:::i;:::-;;;;;;;;46190:13;;46170:16;;46163:4;:23;;;;:::i;:::-;46162:41;;;;:::i;:::-;46140:18;;:63;;;;;;;:::i;:::-;;;;;;;;45853:768;;;46265:25;:31;46291:4;46265:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;46315:1;46300:12;;:16;46265:51;46261:360;;;46344:33;46373:3;46344:24;46355:12;;46344:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;46337:40;;46445:12;;46426:15;;46419:4;:22;;;;:::i;:::-;46418:39;;;;:::i;:::-;46396:18;;:61;;;;;;;:::i;:::-;;;;;;;;46513:12;;46500:9;;46493:4;:16;;;;:::i;:::-;46492:33;;;;:::i;:::-;46476:12;;:49;;;;;;;:::i;:::-;;;;;;;;46593:12;;46574:15;;46567:4;:22;;;;:::i;:::-;46566:39;;;;:::i;:::-;46544:18;;:61;;;;;;;:::i;:::-;;;;;;;;46261:360;45853:768;46648:1;46641:4;:8;46637:91;;;46670:42;46686:4;46700;46707;46670:15;:42::i;:::-;46637:91;46754:4;46744:14;;;;;:::i;:::-;;;45801:969;46782:33;46798:4;46804:2;46808:6;46782:15;:33::i;:::-;41925:4898;;;;41812:5011;;;;:::o;3448:191::-;3522:16;3541:6;;;;;;;;;;;3522:25;;3567:8;3558:6;;:17;;;;;;;;;;;;;;;;;;3622:8;3591:40;;3612:8;3591:40;;;;;;;;;;;;3511:128;3448:191;:::o;41028:188::-;41145:5;41111:25;:31;41137:4;41111:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41202:5;41168:40;;41196:4;41168:40;;;;;;;;;;;;41028:188;;:::o;23168:98::-;23226:7;23257:1;23253;:5;;;;:::i;:::-;23246:12;;23168:98;;;;:::o;23567:::-;23625:7;23656:1;23652;:5;;;;:::i;:::-;23645:12;;23567:98;;;;:::o;14934:733::-;15092:1;15074:20;;:6;:20;;;;15066:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15176:1;15155:23;;:9;:23;;;;15147:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15231:47;15252:6;15260:9;15271:6;15231:20;:47::i;:::-;15291:21;15315:9;:17;15325:6;15315:17;;;;;;;;;;;;;;;;15291:41;;15368:6;15351:13;:23;;15343:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15489:6;15473:13;:22;15453:9;:17;15463:6;15453:17;;;;;;;;;;;;;;;:42;;;;15541:6;15517:9;:20;15527:9;15517:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15582:9;15565:35;;15574:6;15565:35;;;15593:6;15565:35;;;;;;:::i;:::-;;;;;;;;15613:46;15633:6;15641:9;15652:6;15613:19;:46::i;:::-;15055:612;14934:733;;;:::o;47953:1756::-;47992:23;48018:24;48036:4;48018:9;:24::i;:::-;47992:50;;48053:25;48149:12;;48115:18;;48081;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;48053:108;;48172:12;48220:1;48201:15;:20;:46;;;;48246:1;48225:17;:22;48201:46;48197:85;;;48264:7;;;;;48197:85;48337:2;48316:18;;:23;;;;:::i;:::-;48298:15;:41;48294:115;;;48395:2;48374:18;;:23;;;;:::i;:::-;48356:41;;48294:115;48470:23;48583:1;48550:17;48515:18;;48497:15;:36;;;;:::i;:::-;48496:71;;;;:::i;:::-;:88;;;;:::i;:::-;48470:114;;48595:26;48624:36;48644:15;48624;:19;;:36;;;;:::i;:::-;48595:65;;48673:25;48701:21;48673:49;;48735:36;48752:18;48735:16;:36::i;:::-;48784:18;48805:44;48831:17;48805:21;:25;;:44;;;;:::i;:::-;48784:65;;48862:23;48888:81;48941:17;48888:34;48903:18;;48888:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;48862:107;;48980:17;49000:51;49033:17;49000:28;49015:12;;49000:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;48980:71;;49064:23;49121:9;49103:15;49090:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;49064:66;;49164:1;49143:18;:22;;;;49197:1;49176:18;:22;;;;49224:1;49209:12;:16;;;;49260:9;;;;;;;;;;;49252:23;;49283:9;49252:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49238:59;;;;;49332:1;49314:15;:19;:42;;;;;49355:1;49337:15;:19;49314:42;49310:278;;;49373:46;49386:15;49403;49373:12;:46::i;:::-;49439:137;49472:18;49509:15;49543:18;;49439:137;;;;;;;;:::i;:::-;;;;;;;;49310:278;49622:15;;;;;;;;;;;49614:29;;49665:21;49614:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49600:101;;;;;47981:1728;;;;;;;;;;47953:1756;:::o;50280:788::-;50337:4;50371:15;50354:14;:32;;;;50441:28;50472:4;:14;;;50487:13;50472:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50441:60;;50551:20;50574:77;50635:5;50574:42;50599:16;;50574:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;50551:100;;50771:1;50756:12;:16;50752:110;;;50789:61;50805:13;50828:6;50837:12;50789:15;:61::i;:::-;50752:110;50937:19;50974:13;50937:51;;50999:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51026:12;;;;;;;;;;51056:4;51049:11;;;;;50280:788;:::o;18695:125::-;;;;:::o;19424:124::-;;;;:::o;22811:98::-;22869:7;22900:1;22896;:5;;;;:::i;:::-;22889:12;;22811:98;;;;:::o;46831:589::-;46957:21;46995:1;46981:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46957:40;;47026:4;47008;47013:1;47008:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;47052:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47042:4;47047:1;47042:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;47087:62;47104:4;47119:15;47137:11;47087:8;:62::i;:::-;47188:15;:66;;;47269:11;47295:1;47339:4;47366;47386:15;47188:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46886:534;46831:589;:::o;47428:517::-;47576:62;47593:4;47608:15;47626:11;47576:8;:62::i;:::-;47681:15;:31;;;47720:9;47753:4;47773:11;47799:1;47842;32989:6;47911:15;47681:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47428: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;1478:117::-;1587:1;1584;1577: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:619::-;5236:6;5244;5252;5301:2;5289:9;5280:7;5276:23;5272:32;5269:119;;;5307:79;;:::i;:::-;5269:119;5427:1;5452:53;5497:7;5488:6;5477:9;5473:22;5452:53;:::i;:::-;5442:63;;5398:117;5554:2;5580:53;5625:7;5616:6;5605:9;5601:22;5580:53;:::i;:::-;5570:63;;5525:118;5682:2;5708:53;5753:7;5744:6;5733:9;5729:22;5708:53;:::i;:::-;5698:63;;5653:118;5159:619;;;;;:::o;5784:118::-;5871:24;5889:5;5871:24;:::i;:::-;5866:3;5859:37;5784:118;;:::o;5908:222::-;6001:4;6039:2;6028:9;6024:18;6016:26;;6052:71;6120:1;6109:9;6105:17;6096:6;6052:71;:::i;:::-;5908:222;;;;:::o;6136:116::-;6206:21;6221:5;6206:21;:::i;:::-;6199:5;6196:32;6186:60;;6242:1;6239;6232:12;6186:60;6136:116;:::o;6258:133::-;6301:5;6339:6;6326:20;6317:29;;6355:30;6379:5;6355:30;:::i;:::-;6258:133;;;;:::o;6397:323::-;6453:6;6502:2;6490:9;6481:7;6477:23;6473:32;6470:119;;;6508:79;;:::i;:::-;6470:119;6628:1;6653:50;6695:7;6686:6;6675:9;6671:22;6653:50;:::i;:::-;6643:60;;6599:114;6397:323;;;;:::o;6726:86::-;6761:7;6801:4;6794:5;6790:16;6779:27;;6726:86;;;:::o;6818:112::-;6901:22;6917:5;6901:22;:::i;:::-;6896:3;6889:35;6818:112;;:::o;6936:214::-;7025:4;7063:2;7052:9;7048:18;7040:26;;7076:67;7140:1;7129:9;7125:17;7116:6;7076:67;:::i;:::-;6936:214;;;;:::o;7156:613::-;7230:6;7238;7246;7295:2;7283:9;7274:7;7270:23;7266:32;7263:119;;;7301:79;;:::i;:::-;7263:119;7421:1;7446:53;7491:7;7482:6;7471:9;7467:22;7446:53;:::i;:::-;7436:63;;7392:117;7548:2;7574:53;7619:7;7610:6;7599:9;7595:22;7574:53;:::i;:::-;7564:63;;7519:118;7676:2;7702:50;7744:7;7735:6;7724:9;7720:22;7702:50;:::i;:::-;7692:60;;7647:115;7156:613;;;;;:::o;7775:468::-;7840:6;7848;7897:2;7885:9;7876:7;7872:23;7868:32;7865:119;;;7903:79;;:::i;:::-;7865:119;8023:1;8048:53;8093:7;8084:6;8073:9;8069:22;8048:53;:::i;:::-;8038:63;;7994:117;8150:2;8176:50;8218:7;8209:6;8198:9;8194:22;8176:50;:::i;:::-;8166:60;;8121:115;7775:468;;;;;:::o;8249:1057::-;8353:6;8361;8369;8377;8385;8393;8442:3;8430:9;8421:7;8417:23;8413:33;8410:120;;;8449:79;;:::i;:::-;8410:120;8569:1;8594:53;8639:7;8630:6;8619:9;8615:22;8594:53;:::i;:::-;8584:63;;8540:117;8696:2;8722:53;8767:7;8758:6;8747:9;8743:22;8722:53;:::i;:::-;8712:63;;8667:118;8824:2;8850:53;8895:7;8886:6;8875:9;8871:22;8850:53;:::i;:::-;8840:63;;8795:118;8952:2;8978:53;9023:7;9014:6;9003:9;8999:22;8978:53;:::i;:::-;8968:63;;8923:118;9080:3;9107:53;9152:7;9143:6;9132:9;9128:22;9107:53;:::i;:::-;9097:63;;9051:119;9209:3;9236:53;9281:7;9272:6;9261:9;9257:22;9236:53;:::i;:::-;9226:63;;9180:119;8249:1057;;;;;;;;:::o;9312:329::-;9371:6;9420:2;9408:9;9399:7;9395:23;9391:32;9388:119;;;9426:79;;:::i;:::-;9388:119;9546:1;9571:53;9616:7;9607:6;9596:9;9592:22;9571:53;:::i;:::-;9561:63;;9517:117;9312:329;;;;:::o;9647:474::-;9715:6;9723;9772:2;9760:9;9751:7;9747:23;9743:32;9740:119;;;9778:79;;:::i;:::-;9740:119;9898:1;9923:53;9968:7;9959:6;9948:9;9944:22;9923:53;:::i;:::-;9913:63;;9869:117;10025:2;10051:53;10096:7;10087:6;10076:9;10072:22;10051:53;:::i;:::-;10041:63;;9996:118;9647:474;;;;;:::o;10127:::-;10195:6;10203;10252:2;10240:9;10231:7;10227:23;10223:32;10220:119;;;10258:79;;:::i;:::-;10220:119;10378:1;10403:53;10448:7;10439:6;10428:9;10424:22;10403:53;:::i;:::-;10393:63;;10349:117;10505:2;10531:53;10576:7;10567:6;10556:9;10552:22;10531:53;:::i;:::-;10521:63;;10476:118;10127:474;;;;;:::o;10607:180::-;10655:77;10652:1;10645:88;10752:4;10749:1;10742:15;10776:4;10773:1;10766:15;10793:320;10837:6;10874:1;10868:4;10864:12;10854:22;;10921:1;10915:4;10911:12;10942:18;10932:81;;10998:4;10990:6;10986:17;10976:27;;10932:81;11060:2;11052:6;11049:14;11029:18;11026:38;11023:84;;;11079:18;;:::i;:::-;11023:84;10844:269;10793:320;;;:::o;11119:182::-;11259:34;11255:1;11247:6;11243:14;11236:58;11119:182;:::o;11307:366::-;11449:3;11470:67;11534:2;11529:3;11470:67;:::i;:::-;11463:74;;11546:93;11635:3;11546:93;:::i;:::-;11664:2;11659:3;11655:12;11648:19;;11307:366;;;:::o;11679:419::-;11845:4;11883:2;11872:9;11868:18;11860:26;;11932:9;11926:4;11922:20;11918:1;11907:9;11903:17;11896:47;11960:131;12086:4;11960:131;:::i;:::-;11952:139;;11679:419;;;:::o;12104:227::-;12244:34;12240:1;12232:6;12228:14;12221:58;12313:10;12308:2;12300:6;12296:15;12289:35;12104:227;:::o;12337:366::-;12479:3;12500:67;12564:2;12559:3;12500:67;:::i;:::-;12493:74;;12576:93;12665:3;12576:93;:::i;:::-;12694:2;12689:3;12685:12;12678:19;;12337:366;;;:::o;12709:419::-;12875:4;12913:2;12902:9;12898:18;12890:26;;12962:9;12956:4;12952:20;12948:1;12937:9;12933:17;12926:47;12990:131;13116:4;12990:131;:::i;:::-;12982:139;;12709:419;;;:::o;13134:180::-;13182:77;13179:1;13172:88;13279:4;13276:1;13269:15;13303:4;13300:1;13293:15;13320:305;13360:3;13379:20;13397:1;13379:20;:::i;:::-;13374:25;;13413:20;13431:1;13413:20;:::i;:::-;13408:25;;13567:1;13499:66;13495:74;13492:1;13489:81;13486:107;;;13573:18;;:::i;:::-;13486:107;13617:1;13614;13610:9;13603:16;;13320:305;;;;:::o;13631:238::-;13771:34;13767:1;13759:6;13755:14;13748:58;13840:21;13835:2;13827:6;13823:15;13816:46;13631:238;:::o;13875:366::-;14017:3;14038:67;14102:2;14097:3;14038:67;:::i;:::-;14031:74;;14114:93;14203:3;14114:93;:::i;:::-;14232:2;14227:3;14223:12;14216:19;;13875:366;;;:::o;14247:419::-;14413:4;14451:2;14440:9;14436:18;14428:26;;14500:9;14494:4;14490:20;14486:1;14475:9;14471:17;14464:47;14528:131;14654:4;14528:131;:::i;:::-;14520:139;;14247:419;;;:::o;14672:235::-;14812:34;14808:1;14800:6;14796:14;14789:58;14881:18;14876:2;14868:6;14864:15;14857:43;14672:235;:::o;14913:366::-;15055:3;15076:67;15140:2;15135:3;15076:67;:::i;:::-;15069:74;;15152:93;15241:3;15152:93;:::i;:::-;15270:2;15265:3;15261:12;15254:19;;14913:366;;;:::o;15285:419::-;15451:4;15489:2;15478:9;15474:18;15466:26;;15538:9;15532:4;15528:20;15524:1;15513:9;15509:17;15502:47;15566:131;15692:4;15566:131;:::i;:::-;15558:139;;15285:419;;;:::o;15710:179::-;15850:31;15846:1;15838:6;15834:14;15827:55;15710:179;:::o;15895:366::-;16037:3;16058:67;16122:2;16117:3;16058:67;:::i;:::-;16051:74;;16134:93;16223:3;16134:93;:::i;:::-;16252:2;16247:3;16243:12;16236:19;;15895:366;;;:::o;16267:419::-;16433:4;16471:2;16460:9;16456:18;16448:26;;16520:9;16514:4;16510:20;16506:1;16495:9;16491:17;16484:47;16548:131;16674:4;16548:131;:::i;:::-;16540:139;;16267:419;;;:::o;16692:244::-;16832:34;16828:1;16820:6;16816:14;16809:58;16901:27;16896:2;16888:6;16884:15;16877:52;16692:244;:::o;16942:366::-;17084:3;17105:67;17169:2;17164:3;17105:67;:::i;:::-;17098:74;;17181:93;17270:3;17181:93;:::i;:::-;17299:2;17294:3;17290:12;17283:19;;16942:366;;;:::o;17314:419::-;17480:4;17518:2;17507:9;17503:18;17495:26;;17567:9;17561:4;17557:20;17553:1;17542:9;17538:17;17531:47;17595:131;17721:4;17595:131;:::i;:::-;17587:139;;17314:419;;;:::o;17739:224::-;17879:34;17875:1;17867:6;17863:14;17856:58;17948:7;17943:2;17935:6;17931:15;17924:32;17739:224;:::o;17969:366::-;18111:3;18132:67;18196:2;18191:3;18132:67;:::i;:::-;18125:74;;18208:93;18297:3;18208:93;:::i;:::-;18326:2;18321:3;18317:12;18310:19;;17969:366;;;:::o;18341:419::-;18507:4;18545:2;18534:9;18530:18;18522:26;;18594:9;18588:4;18584:20;18580:1;18569:9;18565:17;18558:47;18622:131;18748:4;18622:131;:::i;:::-;18614:139;;18341:419;;;:::o;18766:348::-;18806:7;18829:20;18847:1;18829:20;:::i;:::-;18824:25;;18863:20;18881:1;18863:20;:::i;:::-;18858:25;;19051:1;18983:66;18979:74;18976:1;18973:81;18968:1;18961:9;18954:17;18950:105;18947:131;;;19058:18;;:::i;:::-;18947:131;19106:1;19103;19099:9;19088:20;;18766:348;;;;:::o;19120:180::-;19168:77;19165:1;19158:88;19265:4;19262:1;19255:15;19289:4;19286:1;19279:15;19306:185;19346:1;19363:20;19381:1;19363:20;:::i;:::-;19358:25;;19397:20;19415:1;19397:20;:::i;:::-;19392:25;;19436:1;19426:35;;19441:18;;:::i;:::-;19426:35;19483:1;19480;19476:9;19471:14;;19306:185;;;;:::o;19497:240::-;19637:34;19633:1;19625:6;19621:14;19614:58;19706:23;19701:2;19693:6;19689:15;19682:48;19497:240;:::o;19743:366::-;19885:3;19906:67;19970:2;19965:3;19906:67;:::i;:::-;19899:74;;19982:93;20071:3;19982:93;:::i;:::-;20100:2;20095:3;20091:12;20084:19;;19743:366;;;:::o;20115:419::-;20281:4;20319:2;20308:9;20304:18;20296:26;;20368:9;20362:4;20358:20;20354:1;20343:9;20339:17;20332:47;20396:131;20522:4;20396:131;:::i;:::-;20388:139;;20115:419;;;:::o;20540:239::-;20680:34;20676:1;20668:6;20664:14;20657:58;20749:22;20744:2;20736:6;20732:15;20725:47;20540:239;:::o;20785:366::-;20927:3;20948:67;21012:2;21007:3;20948:67;:::i;:::-;20941:74;;21024:93;21113:3;21024:93;:::i;:::-;21142:2;21137:3;21133:12;21126:19;;20785:366;;;:::o;21157:419::-;21323:4;21361:2;21350:9;21346:18;21338:26;;21410:9;21404:4;21400:20;21396:1;21385:9;21381:17;21374:47;21438:131;21564:4;21438:131;:::i;:::-;21430:139;;21157:419;;;:::o;21582:234::-;21722:34;21718:1;21710:6;21706:14;21699:58;21791:17;21786:2;21778:6;21774:15;21767:42;21582:234;:::o;21822:366::-;21964:3;21985:67;22049:2;22044:3;21985:67;:::i;:::-;21978:74;;22061:93;22150:3;22061:93;:::i;:::-;22179:2;22174:3;22170:12;22163:19;;21822:366;;;:::o;22194:419::-;22360:4;22398:2;22387:9;22383:18;22375:26;;22447:9;22441:4;22437:20;22433:1;22422:9;22418:17;22411:47;22475:131;22601:4;22475:131;:::i;:::-;22467:139;;22194:419;;;:::o;22619:223::-;22759:34;22755:1;22747:6;22743:14;22736:58;22828:6;22823:2;22815:6;22811:15;22804:31;22619:223;:::o;22848:366::-;22990:3;23011:67;23075:2;23070:3;23011:67;:::i;:::-;23004:74;;23087:93;23176:3;23087:93;:::i;:::-;23205:2;23200:3;23196:12;23189:19;;22848:366;;;:::o;23220:419::-;23386:4;23424:2;23413:9;23409:18;23401:26;;23473:9;23467:4;23463:20;23459:1;23448:9;23444:17;23437:47;23501:131;23627:4;23501:131;:::i;:::-;23493:139;;23220:419;;;:::o;23645:225::-;23785:34;23781:1;23773:6;23769:14;23762:58;23854:8;23849:2;23841:6;23837:15;23830:33;23645:225;:::o;23876:366::-;24018:3;24039:67;24103:2;24098:3;24039:67;:::i;:::-;24032:74;;24115:93;24204:3;24115:93;:::i;:::-;24233:2;24228:3;24224:12;24217:19;;23876:366;;;:::o;24248:419::-;24414:4;24452:2;24441:9;24437:18;24429:26;;24501:9;24495:4;24491:20;24487:1;24476:9;24472:17;24465:47;24529:131;24655:4;24529:131;:::i;:::-;24521:139;;24248:419;;;:::o;24673:182::-;24813:34;24809:1;24801:6;24797:14;24790:58;24673:182;:::o;24861:366::-;25003:3;25024:67;25088:2;25083:3;25024:67;:::i;:::-;25017:74;;25100:93;25189:3;25100:93;:::i;:::-;25218:2;25213:3;25209:12;25202:19;;24861:366;;;:::o;25233:419::-;25399:4;25437:2;25426:9;25422:18;25414:26;;25486:9;25480:4;25476:20;25472:1;25461:9;25457:17;25450:47;25514:131;25640:4;25514:131;:::i;:::-;25506:139;;25233:419;;;:::o;25658:229::-;25798:34;25794:1;25786:6;25782:14;25775:58;25867:12;25862:2;25854:6;25850:15;25843:37;25658:229;:::o;25893:366::-;26035:3;26056:67;26120:2;26115:3;26056:67;:::i;:::-;26049:74;;26132:93;26221:3;26132:93;:::i;:::-;26250:2;26245:3;26241:12;26234:19;;25893:366;;;:::o;26265:419::-;26431:4;26469:2;26458:9;26454:18;26446:26;;26518:9;26512:4;26508:20;26504:1;26493:9;26489:17;26482:47;26546:131;26672:4;26546:131;:::i;:::-;26538:139;;26265:419;;;:::o;26690:143::-;26747:5;26778:6;26772:13;26763:22;;26794:33;26821:5;26794:33;:::i;:::-;26690:143;;;;:::o;26839:351::-;26909:6;26958:2;26946:9;26937:7;26933:23;26929:32;26926:119;;;26964:79;;:::i;:::-;26926:119;27084:1;27109:64;27165:7;27156:6;27145:9;27141:22;27109:64;:::i;:::-;27099:74;;27055:128;26839:351;;;;:::o;27196:223::-;27336:34;27332:1;27324:6;27320:14;27313:58;27405:6;27400:2;27392:6;27388:15;27381:31;27196:223;:::o;27425:366::-;27567:3;27588:67;27652:2;27647:3;27588:67;:::i;:::-;27581:74;;27664:93;27753:3;27664:93;:::i;:::-;27782:2;27777:3;27773:12;27766:19;;27425:366;;;:::o;27797:419::-;27963:4;28001:2;27990:9;27986:18;27978:26;;28050:9;28044:4;28040:20;28036:1;28025:9;28021:17;28014:47;28078:131;28204:4;28078:131;:::i;:::-;28070:139;;27797:419;;;:::o;28222:221::-;28362:34;28358:1;28350:6;28346:14;28339:58;28431:4;28426:2;28418:6;28414:15;28407:29;28222:221;:::o;28449:366::-;28591:3;28612:67;28676:2;28671:3;28612:67;:::i;:::-;28605:74;;28688:93;28777:3;28688:93;:::i;:::-;28806:2;28801:3;28797:12;28790:19;;28449:366;;;:::o;28821:419::-;28987:4;29025:2;29014:9;29010:18;29002:26;;29074:9;29068:4;29064:20;29060:1;29049:9;29045:17;29038:47;29102:131;29228:4;29102:131;:::i;:::-;29094:139;;28821:419;;;:::o;29246:224::-;29386:34;29382:1;29374:6;29370:14;29363:58;29455:7;29450:2;29442:6;29438:15;29431:32;29246:224;:::o;29476:366::-;29618:3;29639:67;29703:2;29698:3;29639:67;:::i;:::-;29632:74;;29715:93;29804:3;29715:93;:::i;:::-;29833:2;29828:3;29824:12;29817:19;;29476:366;;;:::o;29848:419::-;30014:4;30052:2;30041:9;30037:18;30029:26;;30101:9;30095:4;30091:20;30087:1;30076:9;30072:17;30065:47;30129:131;30255:4;30129:131;:::i;:::-;30121:139;;29848:419;;;:::o;30273:222::-;30413:34;30409:1;30401:6;30397:14;30390:58;30482:5;30477:2;30469:6;30465:15;30458:30;30273:222;:::o;30501:366::-;30643:3;30664:67;30728:2;30723:3;30664:67;:::i;:::-;30657:74;;30740:93;30829:3;30740:93;:::i;:::-;30858:2;30853:3;30849:12;30842:19;;30501:366;;;:::o;30873:419::-;31039:4;31077:2;31066:9;31062:18;31054:26;;31126:9;31120:4;31116:20;31112:1;31101:9;31097:17;31090:47;31154:131;31280:4;31154:131;:::i;:::-;31146:139;;30873:419;;;:::o;31298:172::-;31438:24;31434:1;31426:6;31422:14;31415:48;31298:172;:::o;31476:366::-;31618:3;31639:67;31703:2;31698:3;31639:67;:::i;:::-;31632:74;;31715:93;31804:3;31715:93;:::i;:::-;31833:2;31828:3;31824:12;31817:19;;31476:366;;;:::o;31848:419::-;32014:4;32052:2;32041:9;32037:18;32029:26;;32101:9;32095:4;32091:20;32087:1;32076:9;32072:17;32065:47;32129:131;32255:4;32129:131;:::i;:::-;32121:139;;31848:419;;;:::o;32273:297::-;32413:34;32409:1;32401:6;32397:14;32390:58;32482:34;32477:2;32469:6;32465:15;32458:59;32551:11;32546:2;32538:6;32534:15;32527:36;32273:297;:::o;32576:366::-;32718:3;32739:67;32803:2;32798:3;32739:67;:::i;:::-;32732:74;;32815:93;32904:3;32815:93;:::i;:::-;32933:2;32928:3;32924:12;32917:19;;32576:366;;;:::o;32948:419::-;33114:4;33152:2;33141:9;33137:18;33129:26;;33201:9;33195:4;33191:20;33187:1;33176:9;33172:17;33165:47;33229:131;33355:4;33229:131;:::i;:::-;33221:139;;32948:419;;;:::o;33373:240::-;33513:34;33509:1;33501:6;33497:14;33490:58;33582:23;33577:2;33569:6;33565:15;33558:48;33373:240;:::o;33619:366::-;33761:3;33782:67;33846:2;33841:3;33782:67;:::i;:::-;33775:74;;33858:93;33947:3;33858:93;:::i;:::-;33976:2;33971:3;33967:12;33960:19;;33619:366;;;:::o;33991:419::-;34157:4;34195:2;34184:9;34180:18;34172:26;;34244:9;34238:4;34234:20;34230:1;34219:9;34215:17;34208:47;34272:131;34398:4;34272:131;:::i;:::-;34264:139;;33991:419;;;:::o;34416:169::-;34556:21;34552:1;34544:6;34540:14;34533:45;34416:169;:::o;34591:366::-;34733:3;34754:67;34818:2;34813:3;34754:67;:::i;:::-;34747:74;;34830:93;34919:3;34830:93;:::i;:::-;34948:2;34943:3;34939:12;34932:19;;34591:366;;;:::o;34963:419::-;35129:4;35167:2;35156:9;35152:18;35144:26;;35216:9;35210:4;35206:20;35202:1;35191:9;35187:17;35180:47;35244:131;35370:4;35244:131;:::i;:::-;35236:139;;34963:419;;;:::o;35388:241::-;35528:34;35524:1;35516:6;35512:14;35505:58;35597:24;35592:2;35584:6;35580:15;35573:49;35388:241;:::o;35635:366::-;35777:3;35798:67;35862:2;35857:3;35798:67;:::i;:::-;35791:74;;35874:93;35963:3;35874:93;:::i;:::-;35992:2;35987:3;35983:12;35976:19;;35635:366;;;:::o;36007:419::-;36173:4;36211:2;36200:9;36196:18;36188:26;;36260:9;36254:4;36250:20;36246:1;36235:9;36231:17;36224:47;36288:131;36414:4;36288:131;:::i;:::-;36280:139;;36007:419;;;:::o;36432:191::-;36472:4;36492:20;36510:1;36492:20;:::i;:::-;36487:25;;36526:20;36544:1;36526:20;:::i;:::-;36521:25;;36565:1;36562;36559:8;36556:34;;;36570:18;;:::i;:::-;36556:34;36615:1;36612;36608:9;36600:17;;36432:191;;;;:::o;36629:225::-;36769:34;36765:1;36757:6;36753:14;36746:58;36838:8;36833:2;36825:6;36821:15;36814:33;36629:225;:::o;36860:366::-;37002:3;37023:67;37087:2;37082:3;37023:67;:::i;:::-;37016:74;;37099:93;37188:3;37099:93;:::i;:::-;37217:2;37212:3;37208:12;37201:19;;36860:366;;;:::o;37232:419::-;37398:4;37436:2;37425:9;37421:18;37413:26;;37485:9;37479:4;37475:20;37471:1;37460:9;37456:17;37449:47;37513:131;37639:4;37513:131;:::i;:::-;37505:139;;37232:419;;;:::o;37657:147::-;37758:11;37795:3;37780:18;;37657:147;;;;:::o;37810:114::-;;:::o;37930:398::-;38089:3;38110:83;38191:1;38186:3;38110:83;:::i;:::-;38103:90;;38202:93;38291:3;38202:93;:::i;:::-;38320:1;38315:3;38311:11;38304:18;;37930:398;;;:::o;38334:379::-;38518:3;38540:147;38683:3;38540:147;:::i;:::-;38533:154;;38704:3;38697:10;;38334:379;;;:::o;38719:442::-;38868:4;38906:2;38895:9;38891:18;38883:26;;38919:71;38987:1;38976:9;38972:17;38963:6;38919:71;:::i;:::-;39000:72;39068:2;39057:9;39053:18;39044:6;39000:72;:::i;:::-;39082;39150:2;39139:9;39135:18;39126:6;39082:72;:::i;:::-;38719:442;;;;;;:::o;39167:180::-;39215:77;39212:1;39205:88;39312:4;39309:1;39302:15;39336:4;39333:1;39326:15;39353:180;39401:77;39398:1;39391:88;39498:4;39495:1;39488:15;39522:4;39519:1;39512:15;39539:143;39596:5;39627:6;39621:13;39612:22;;39643:33;39670:5;39643:33;:::i;:::-;39539:143;;;;:::o;39688:351::-;39758:6;39807:2;39795:9;39786:7;39782:23;39778:32;39775:119;;;39813:79;;:::i;:::-;39775:119;39933:1;39958:64;40014:7;40005:6;39994:9;39990:22;39958:64;:::i;:::-;39948:74;;39904:128;39688:351;;;;:::o;40045:85::-;40090:7;40119:5;40108:16;;40045:85;;;:::o;40136:158::-;40194:9;40227:61;40245:42;40254:32;40280:5;40254:32;:::i;:::-;40245:42;:::i;:::-;40227:61;:::i;:::-;40214:74;;40136:158;;;:::o;40300:147::-;40395:45;40434:5;40395:45;:::i;:::-;40390:3;40383:58;40300:147;;:::o;40453:114::-;40520:6;40554:5;40548:12;40538:22;;40453:114;;;:::o;40573:184::-;40672:11;40706:6;40701:3;40694:19;40746:4;40741:3;40737:14;40722:29;;40573:184;;;;:::o;40763:132::-;40830:4;40853:3;40845:11;;40883:4;40878:3;40874:14;40866:22;;40763:132;;;:::o;40901:108::-;40978:24;40996:5;40978:24;:::i;:::-;40973:3;40966:37;40901:108;;:::o;41015:179::-;41084:10;41105:46;41147:3;41139:6;41105:46;:::i;:::-;41183:4;41178:3;41174:14;41160:28;;41015:179;;;;:::o;41200:113::-;41270:4;41302;41297:3;41293:14;41285:22;;41200:113;;;:::o;41349:732::-;41468:3;41497:54;41545:5;41497:54;:::i;:::-;41567:86;41646:6;41641:3;41567:86;:::i;:::-;41560:93;;41677:56;41727:5;41677:56;:::i;:::-;41756:7;41787:1;41772:284;41797:6;41794:1;41791:13;41772:284;;;41873:6;41867:13;41900:63;41959:3;41944:13;41900:63;:::i;:::-;41893:70;;41986:60;42039:6;41986:60;:::i;:::-;41976:70;;41832:224;41819:1;41816;41812:9;41807:14;;41772:284;;;41776:14;42072:3;42065:10;;41473:608;;;41349:732;;;;:::o;42087:831::-;42350:4;42388:3;42377:9;42373:19;42365:27;;42402:71;42470:1;42459:9;42455:17;42446:6;42402:71;:::i;:::-;42483:80;42559:2;42548:9;42544:18;42535:6;42483:80;:::i;:::-;42610:9;42604:4;42600:20;42595:2;42584:9;42580:18;42573:48;42638:108;42741:4;42732:6;42638:108;:::i;:::-;42630:116;;42756:72;42824:2;42813:9;42809:18;42800:6;42756:72;:::i;:::-;42838:73;42906:3;42895:9;42891:19;42882:6;42838:73;:::i;:::-;42087:831;;;;;;;;:::o;42924:807::-;43173:4;43211:3;43200:9;43196:19;43188:27;;43225:71;43293:1;43282:9;43278:17;43269:6;43225:71;:::i;:::-;43306:72;43374:2;43363:9;43359:18;43350:6;43306:72;:::i;:::-;43388:80;43464:2;43453:9;43449:18;43440:6;43388:80;:::i;:::-;43478;43554:2;43543:9;43539:18;43530:6;43478:80;:::i;:::-;43568:73;43636:3;43625:9;43621:19;43612:6;43568:73;:::i;:::-;43651;43719:3;43708:9;43704:19;43695:6;43651:73;:::i;:::-;42924:807;;;;;;;;;:::o;43737:663::-;43825:6;43833;43841;43890:2;43878:9;43869:7;43865:23;43861:32;43858:119;;;43896:79;;:::i;:::-;43858:119;44016:1;44041:64;44097:7;44088:6;44077:9;44073:22;44041:64;:::i;:::-;44031:74;;43987:128;44154:2;44180:64;44236:7;44227:6;44216:9;44212:22;44180:64;:::i;:::-;44170:74;;44125:129;44293:2;44319:64;44375:7;44366:6;44355:9;44351:22;44319:64;:::i;:::-;44309:74;;44264:129;43737:663;;;;;:::o

Swarm Source

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