ETH Price: $3,256.13 (-0.84%)
Gas: 1 Gwei

Token

$BCSAUL ($BCS)
 

Overview

Max Total Supply

1,000,000,000 $BCS

Holders

49

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
825,319.265867289287840456 $BCS

Value
$0.00
0x55758e35398f46194384892b54d478a0588cf381
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:
BCS

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-11-14
*/

/**
https://t.me/BCSAUL5
*/
// SPDX-License-Identifier: MIT
pragma solidity =0.8.17 >=0.8.17 >=0.8.0 <0.9.0;
pragma experimental ABIEncoderV2;

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

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

abstract contract Ownable is Context {
    address private _owner;

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

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

    /**
     * @dev 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 BCS 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 = false;
    uint256 public lpBurnFrequency = 3600 seconds;
    uint256 public lastLpBurnTime;

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

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

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

    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("$BCSAUL", "$BCS") {
        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 = 3;
        uint256 _buyLiquidityFee = 1;
        uint256 _buyDevFee = 2;

        uint256 _sellMarketingFee = 3;
        uint256 _sellLiquidityFee = 1;
        uint256 _sellDevFee = 2;

        uint256 totalSupply = 1_000_000_000 * 1e18;

        maxTransactionAmount = 5_000_000 * 1e18;
        maxWallet = 20_000_000 * 1e18;
        swapTokensAtAmount = (totalSupply) / 1000; // 

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

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

        marketingWallet = address(0x5B5Af4538D5f4a1E958883cff8B26F0210d8c41F); // set as marketing wallet
        devWallet = address(0x8a3bb1Fd8C3347c9A08621273ad2f018bD597A92); // 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 enableTrading() external onlyOwner {
        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 updateSwapTokensAtAmount(uint256 newAmount)
        external
        onlyOwner
        returns (bool)
    {
        require(
            newAmount >= (totalSupply() * 1) / 100000,
            "Swap amount cannot be lower than 0.001% total supply."
        );
        require(
            newAmount <= (totalSupply() * 5) / 1000,
            "Swap amount cannot be higher than 0.5% total supply."
        );
        swapTokensAtAmount = newAmount;
        return true;
    }

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

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

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

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

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

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee;
        require(sellTotalFees <= 9, "Must keep fees at 9% 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 * 5) {
            contractBalance = swapTokensAtAmount * 5;
        }

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

}

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":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastManualLpBurnTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualBurnFrequency","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentForLPBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newMarketingWallet","type":"address"}],"name":"updateMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526019600b556000600c60006101000a81548160ff021916908315150217905550610e10600d55610708600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280600781526020017f2442435341554c000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f2442435300000000000000000000000000000000000000000000000000000000815250816003908162000127919062000d7c565b50806004908162000139919062000d7c565b5050506200015c62000150620005c360201b60201c565b620005cb60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001888160016200069160201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000208573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022e919062000ecd565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000296573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002bc919062000ecd565b6040518363ffffffff1660e01b8152600401620002db92919062000f10565b6020604051808303816000875af1158015620002fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000321919062000ecd565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200036960a05160016200069160201b60201c565b6200037e60a05160016200077b60201b60201c565b60006003905060006001905060006002905060006003905060006001905060006002905060006b033b2e3c9fd0803ce800000090506a0422ca8b0a00a4250000006008819055506a108b2a2c28029094000000600a819055506103e881620003e7919062000f9b565b60098190555086601581905550856016819055508460178190555060175460165460155462000417919062000fd3565b62000423919062000fd3565b6014819055508360198190555082601a8190555081601b81905550601b54601a5460195462000453919062000fd3565b6200045f919062000fd3565b601881905550735b5af4538d5f4a1e958883cff8b26f0210d8c41f600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550738a3bb1fd8c3347c9a08621273ad2f018bd597a92600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000531620005236200081c60201b60201c565b60016200084660201b60201c565b620005443060016200084660201b60201c565b6200055961dead60016200084660201b60201c565b6200057b6200056d6200081c60201b60201c565b60016200069160201b60201c565b6200058e3060016200069160201b60201c565b620005a361dead60016200069160201b60201c565b620005b533826200098060201b60201c565b50505050505050506200116b565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006a1620005c360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006c76200081c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000720576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000717906200106f565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000856620005c360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200087c6200081c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008d5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008cc906200106f565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009749190620010ae565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620009f2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009e9906200111b565b60405180910390fd5b62000a066000838362000af860201b60201c565b806002600082825462000a1a919062000fd3565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a71919062000fd3565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000ad891906200114e565b60405180910390a362000af46000838362000afd60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b8457607f821691505b60208210810362000b9a5762000b9962000b3c565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000c047fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000bc5565b62000c10868362000bc5565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000c5d62000c5762000c518462000c28565b62000c32565b62000c28565b9050919050565b6000819050919050565b62000c798362000c3c565b62000c9162000c888262000c64565b84845462000bd2565b825550505050565b600090565b62000ca862000c99565b62000cb581848462000c6e565b505050565b5b8181101562000cdd5762000cd160008262000c9e565b60018101905062000cbb565b5050565b601f82111562000d2c5762000cf68162000ba0565b62000d018462000bb5565b8101602085101562000d11578190505b62000d2962000d208562000bb5565b83018262000cba565b50505b505050565b600082821c905092915050565b600062000d516000198460080262000d31565b1980831691505092915050565b600062000d6c838362000d3e565b9150826002028217905092915050565b62000d878262000b02565b67ffffffffffffffff81111562000da35762000da262000b0d565b5b62000daf825462000b6b565b62000dbc82828562000ce1565b600060209050601f83116001811462000df4576000841562000ddf578287015190505b62000deb858262000d5e565b86555062000e5b565b601f19841662000e048662000ba0565b60005b8281101562000e2e5784890151825560018201915060208501945060208101905062000e07565b8683101562000e4e578489015162000e4a601f89168262000d3e565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e958262000e68565b9050919050565b62000ea78162000e88565b811462000eb357600080fd5b50565b60008151905062000ec78162000e9c565b92915050565b60006020828403121562000ee65762000ee562000e63565b5b600062000ef68482850162000eb6565b91505092915050565b62000f0a8162000e88565b82525050565b600060408201905062000f27600083018562000eff565b62000f36602083018462000eff565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000fa88262000c28565b915062000fb58362000c28565b92508262000fc85762000fc762000f3d565b5b828204905092915050565b600062000fe08262000c28565b915062000fed8362000c28565b925082820190508082111562001008576200100762000f6c565b5b92915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620010576020836200100e565b915062001064826200101f565b602082019050919050565b600060208201905081810360008301526200108a8162001048565b9050919050565b60008115159050919050565b620010a88162001091565b82525050565b6000602082019050620010c560008301846200109d565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001103601f836200100e565b91506200111082620010cb565b602082019050919050565b600060208201905081810360008301526200113681620010f4565b9050919050565b620011488162000c28565b82525050565b60006020820190506200116560008301846200113d565b92915050565b60805160a051615476620011de6000396000818161137101528181611a41015281816129d401528181613aaa01528181613b630152613b90015260008181610f140152818161297c01528181613d3201528181613e1301528181613e3a01528181613ed60152613efd01526154766000f3fe60806040526004361061039b5760003560e01c80638da5cb5b116101dc578063bbc0c74211610102578063d85ba063116100a0578063f11a24d31161006f578063f11a24d314610d99578063f2fde38b14610dc4578063f637434214610ded578063f8b45b0514610e18576103a2565b8063d85ba06314610cdb578063dd62ed3e14610d06578063e2f4560514610d43578063e884f26014610d6e576103a2565b8063c18bc195116100dc578063c18bc19514610c1f578063c876d0b914610c48578063c8c8ebe414610c73578063d257b34f14610c9e576103a2565b8063bbc0c74214610ba2578063c024666814610bcd578063c17b5b8c14610bf6576103a2565b80639ec22c0e1161017a578063a4c82a0011610149578063a4c82a0014610ad4578063a9059cbb14610aff578063aacebbe314610b3c578063b62496f514610b65576103a2565b80639ec22c0e14610a165780639fccce3214610a41578063a0d82dc514610a6c578063a457c2d714610a97576103a2565b8063924de9b7116101b6578063924de9b71461096e57806395d89b41146109975780639a7a23d6146109c25780639c3b4fdc146109eb576103a2565b80638da5cb5b146108ed5780638ea5220f146109185780639213691314610943576103a2565b8063313ce567116102c157806370a082311161025f57806375f0a8741161022e57806375f0a874146108575780637bce5a04146108825780638095d564146108ad5780638a8c523c146108d6576103a2565b806370a08231146107af578063715018a6146107ec578063751039fc146108035780637571336a1461082e576103a2565b80634a62bb651161029b5780634a62bb65146106f15780634fbee1931461071c5780636a486a8e146107595780636ddd171314610784576103a2565b8063313ce5671461065e578063395093511461068957806349bd5a5e146106c6576103a2565b8063199ffc721161033957806323b872dd1161030857806323b872dd146105a057806327c8f835146105dd5780632c3e486c146106085780632e82f1a014610633576103a2565b8063199ffc72146104f65780631a8145bb146105215780631f3fed8f1461054c578063203e727e14610577576103a2565b80631694505e116103755780631694505e1461044c57806318160ddd146104775780631816467f146104a2578063184c16c5146104cb576103a2565b806306fdde03146103a7578063095ea7b3146103d257806310d5de531461040f576103a2565b366103a257005b600080fd5b3480156103b357600080fd5b506103bc610e43565b6040516103c9919061403c565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f491906140f7565b610ed5565b6040516104069190614152565b60405180910390f35b34801561041b57600080fd5b506104366004803603810190610431919061416d565b610ef3565b6040516104439190614152565b60405180910390f35b34801561045857600080fd5b50610461610f12565b60405161046e91906141f9565b60405180910390f35b34801561048357600080fd5b5061048c610f36565b6040516104999190614223565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c4919061416d565b610f40565b005b3480156104d757600080fd5b506104e061107c565b6040516104ed9190614223565b60405180910390f35b34801561050257600080fd5b5061050b611082565b6040516105189190614223565b60405180910390f35b34801561052d57600080fd5b50610536611088565b6040516105439190614223565b60405180910390f35b34801561055857600080fd5b5061056161108e565b60405161056e9190614223565b60405180910390f35b34801561058357600080fd5b5061059e6004803603810190610599919061423e565b611094565b005b3480156105ac57600080fd5b506105c760048036038101906105c2919061426b565b6111a3565b6040516105d49190614152565b60405180910390f35b3480156105e957600080fd5b506105f261129b565b6040516105ff91906142cd565b60405180910390f35b34801561061457600080fd5b5061061d6112a1565b60405161062a9190614223565b60405180910390f35b34801561063f57600080fd5b506106486112a7565b6040516106559190614152565b60405180910390f35b34801561066a57600080fd5b506106736112ba565b6040516106809190614304565b60405180910390f35b34801561069557600080fd5b506106b060048036038101906106ab91906140f7565b6112c3565b6040516106bd9190614152565b60405180910390f35b3480156106d257600080fd5b506106db61136f565b6040516106e891906142cd565b60405180910390f35b3480156106fd57600080fd5b50610706611393565b6040516107139190614152565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e919061416d565b6113a6565b6040516107509190614152565b60405180910390f35b34801561076557600080fd5b5061076e6113fc565b60405161077b9190614223565b60405180910390f35b34801561079057600080fd5b50610799611402565b6040516107a69190614152565b60405180910390f35b3480156107bb57600080fd5b506107d660048036038101906107d1919061416d565b611415565b6040516107e39190614223565b60405180910390f35b3480156107f857600080fd5b5061080161145d565b005b34801561080f57600080fd5b506108186114e5565b6040516108259190614152565b60405180910390f35b34801561083a57600080fd5b506108556004803603810190610850919061434b565b611585565b005b34801561086357600080fd5b5061086c61165c565b60405161087991906142cd565b60405180910390f35b34801561088e57600080fd5b50610897611682565b6040516108a49190614223565b60405180910390f35b3480156108b957600080fd5b506108d460048036038101906108cf919061438b565b611688565b005b3480156108e257600080fd5b506108eb611787565b005b3480156108f957600080fd5b50610902611842565b60405161090f91906142cd565b60405180910390f35b34801561092457600080fd5b5061092d61186c565b60405161093a91906142cd565b60405180910390f35b34801561094f57600080fd5b50610958611892565b6040516109659190614223565b60405180910390f35b34801561097a57600080fd5b50610995600480360381019061099091906143de565b611898565b005b3480156109a357600080fd5b506109ac611931565b6040516109b9919061403c565b60405180910390f35b3480156109ce57600080fd5b506109e960048036038101906109e4919061434b565b6119c3565b005b3480156109f757600080fd5b50610a00611adb565b604051610a0d9190614223565b60405180910390f35b348015610a2257600080fd5b50610a2b611ae1565b604051610a389190614223565b60405180910390f35b348015610a4d57600080fd5b50610a56611ae7565b604051610a639190614223565b60405180910390f35b348015610a7857600080fd5b50610a81611aed565b604051610a8e9190614223565b60405180910390f35b348015610aa357600080fd5b50610abe6004803603810190610ab991906140f7565b611af3565b604051610acb9190614152565b60405180910390f35b348015610ae057600080fd5b50610ae9611bde565b604051610af69190614223565b60405180910390f35b348015610b0b57600080fd5b50610b266004803603810190610b2191906140f7565b611be4565b604051610b339190614152565b60405180910390f35b348015610b4857600080fd5b50610b636004803603810190610b5e919061416d565b611c02565b005b348015610b7157600080fd5b50610b8c6004803603810190610b87919061416d565b611d3e565b604051610b999190614152565b60405180910390f35b348015610bae57600080fd5b50610bb7611d5e565b604051610bc49190614152565b60405180910390f35b348015610bd957600080fd5b50610bf46004803603810190610bef919061434b565b611d71565b005b348015610c0257600080fd5b50610c1d6004803603810190610c18919061438b565b611e96565b005b348015610c2b57600080fd5b50610c466004803603810190610c41919061423e565b611f95565b005b348015610c5457600080fd5b50610c5d6120a4565b604051610c6a9190614152565b60405180910390f35b348015610c7f57600080fd5b50610c886120b7565b604051610c959190614223565b60405180910390f35b348015610caa57600080fd5b50610cc56004803603810190610cc0919061423e565b6120bd565b604051610cd29190614152565b60405180910390f35b348015610ce757600080fd5b50610cf0612212565b604051610cfd9190614223565b60405180910390f35b348015610d1257600080fd5b50610d2d6004803603810190610d28919061440b565b612218565b604051610d3a9190614223565b60405180910390f35b348015610d4f57600080fd5b50610d5861229f565b604051610d659190614223565b60405180910390f35b348015610d7a57600080fd5b50610d836122a5565b604051610d909190614152565b60405180910390f35b348015610da557600080fd5b50610dae612345565b604051610dbb9190614223565b60405180910390f35b348015610dd057600080fd5b50610deb6004803603810190610de6919061416d565b61234b565b005b348015610df957600080fd5b50610e02612442565b604051610e0f9190614223565b60405180910390f35b348015610e2457600080fd5b50610e2d612448565b604051610e3a9190614223565b60405180910390f35b606060038054610e529061447a565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7e9061447a565b8015610ecb5780601f10610ea057610100808354040283529160200191610ecb565b820191906000526020600020905b815481529060010190602001808311610eae57829003601f168201915b5050505050905090565b6000610ee9610ee261244e565b8484612456565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610f4861244e565b73ffffffffffffffffffffffffffffffffffffffff16610f66611842565b73ffffffffffffffffffffffffffffffffffffffff1614610fbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb3906144f7565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b61109c61244e565b73ffffffffffffffffffffffffffffffffffffffff166110ba611842565b73ffffffffffffffffffffffffffffffffffffffff1614611110576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611107906144f7565b60405180910390fd5b670de0b6b3a76400006103e86001611126610f36565b6111309190614546565b61113a91906145b7565b61114491906145b7565b811015611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d9061465a565b60405180910390fd5b670de0b6b3a76400008161119a9190614546565b60088190555050565b60006111b084848461261f565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006111fb61244e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561127b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611272906146ec565b60405180910390fd5b61128f8561128761244e565b858403612456565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006113656112d061244e565b8484600160006112de61244e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611360919061470c565b612456565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61146561244e565b73ffffffffffffffffffffffffffffffffffffffff16611483611842565b73ffffffffffffffffffffffffffffffffffffffff16146114d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d0906144f7565b60405180910390fd5b6114e360006133b4565b565b60006114ef61244e565b73ffffffffffffffffffffffffffffffffffffffff1661150d611842565b73ffffffffffffffffffffffffffffffffffffffff1614611563576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155a906144f7565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b61158d61244e565b73ffffffffffffffffffffffffffffffffffffffff166115ab611842565b73ffffffffffffffffffffffffffffffffffffffff1614611601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f8906144f7565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61169061244e565b73ffffffffffffffffffffffffffffffffffffffff166116ae611842565b73ffffffffffffffffffffffffffffffffffffffff1614611704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fb906144f7565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461172c919061470c565b611736919061470c565b60148190555060096014541115611782576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117799061478c565b60405180910390fd5b505050565b61178f61244e565b73ffffffffffffffffffffffffffffffffffffffff166117ad611842565b73ffffffffffffffffffffffffffffffffffffffff1614611803576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fa906144f7565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b6118a061244e565b73ffffffffffffffffffffffffffffffffffffffff166118be611842565b73ffffffffffffffffffffffffffffffffffffffff1614611914576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190b906144f7565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b6060600480546119409061447a565b80601f016020809104026020016040519081016040528092919081815260200182805461196c9061447a565b80156119b95780601f1061198e576101008083540402835291602001916119b9565b820191906000526020600020905b81548152906001019060200180831161199c57829003601f168201915b5050505050905090565b6119cb61244e565b73ffffffffffffffffffffffffffffffffffffffff166119e9611842565b73ffffffffffffffffffffffffffffffffffffffff1614611a3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a36906144f7565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611acd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac49061481e565b60405180910390fd5b611ad7828261347a565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611b0261244e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611bbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb6906148b0565b60405180910390fd5b611bd3611bca61244e565b85858403612456565b600191505092915050565b600e5481565b6000611bf8611bf161244e565b848461261f565b6001905092915050565b611c0a61244e565b73ffffffffffffffffffffffffffffffffffffffff16611c28611842565b73ffffffffffffffffffffffffffffffffffffffff1614611c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c75906144f7565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611d7961244e565b73ffffffffffffffffffffffffffffffffffffffff16611d97611842565b73ffffffffffffffffffffffffffffffffffffffff1614611ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de4906144f7565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611e8a9190614152565b60405180910390a25050565b611e9e61244e565b73ffffffffffffffffffffffffffffffffffffffff16611ebc611842565b73ffffffffffffffffffffffffffffffffffffffff1614611f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f09906144f7565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a54601954611f3a919061470c565b611f44919061470c565b60188190555060096018541115611f90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f879061478c565b60405180910390fd5b505050565b611f9d61244e565b73ffffffffffffffffffffffffffffffffffffffff16611fbb611842565b73ffffffffffffffffffffffffffffffffffffffff1614612011576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612008906144f7565b60405180910390fd5b670de0b6b3a76400006103e86005612027610f36565b6120319190614546565b61203b91906145b7565b61204591906145b7565b811015612087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207e90614942565b60405180910390fd5b670de0b6b3a76400008161209b9190614546565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b60006120c761244e565b73ffffffffffffffffffffffffffffffffffffffff166120e5611842565b73ffffffffffffffffffffffffffffffffffffffff161461213b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612132906144f7565b60405180910390fd5b620186a06001612149610f36565b6121539190614546565b61215d91906145b7565b82101561219f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612196906149d4565b60405180910390fd5b6103e860056121ac610f36565b6121b69190614546565b6121c091906145b7565b821115612202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f990614a66565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006122af61244e565b73ffffffffffffffffffffffffffffffffffffffff166122cd611842565b73ffffffffffffffffffffffffffffffffffffffff1614612323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231a906144f7565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b61235361244e565b73ffffffffffffffffffffffffffffffffffffffff16612371611842565b73ffffffffffffffffffffffffffffffffffffffff16146123c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123be906144f7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612436576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242d90614af8565b60405180910390fd5b61243f816133b4565b50565b601a5481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036124c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bc90614b8a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612534576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252b90614c1c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516126129190614223565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361268e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268590614cae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036126fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f490614d40565b60405180910390fd5b60008103612716576127118383600061351b565b6133af565b601160009054906101000a900460ff1615612dd957612733611842565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156127a15750612771611842565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127da5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612814575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561282d5750600560149054906101000a900460ff16155b15612dd857601160019054906101000a900460ff1661292757601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128e75750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612926576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291d90614dac565b60405180910390fd5b5b601360009054906101000a900460ff1615612aef57612944611842565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156129cb57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a2357507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612aee5743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa090614e64565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b925750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c3957600854811115612bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd390614ef6565b60405180910390fd5b600a54612be883611415565b82612bf3919061470c565b1115612c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2b90614f62565b60405180910390fd5b612dd7565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612cdc5750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d2b57600854811115612d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1d90614ff4565b60405180910390fd5b612dd6565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612dd557600a54612d8883611415565b82612d93919061470c565b1115612dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dcb90614f62565b60405180910390fd5b5b5b5b5b5b6000612de430611415565b905060006009548210159050808015612e095750601160029054906101000a900460ff165b8015612e225750600560149054906101000a900460ff16155b8015612e785750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ece5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612f245750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f68576001600560146101000a81548160ff021916908315150217905550612f4c61379a565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff16158015612fce5750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015612fe65750600c60009054906101000a900460ff165b80156130015750600d54600e54612ffd919061470c565b4210155b80156130575750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561306657613064613a81565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061311c5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561312657600090505b6000811561339f57602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561318957506000601854115b15613256576131b660646131a860185488613c4790919063ffffffff16565b613c5d90919063ffffffff16565b9050601854601a54826131c99190614546565b6131d391906145b7565b601d60008282546131e4919061470c565b92505081905550601854601b54826131fc9190614546565b61320691906145b7565b601e6000828254613217919061470c565b925050819055506018546019548261322f9190614546565b61323991906145b7565b601c600082825461324a919061470c565b9250508190555061337b565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156132b157506000601454115b1561337a576132de60646132d060145488613c4790919063ffffffff16565b613c5d90919063ffffffff16565b9050601454601654826132f19190614546565b6132fb91906145b7565b601d600082825461330c919061470c565b92505081905550601454601754826133249190614546565b61332e91906145b7565b601e600082825461333f919061470c565b92505081905550601454601554826133579190614546565b61336191906145b7565b601c6000828254613372919061470c565b925050819055505b5b60008111156133905761338f87308361351b565b5b808561339c9190615014565b94505b6133aa87878761351b565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361358a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161358190614cae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036135f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135f090614d40565b60405180910390fd5b613604838383613c73565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561368a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613681906150ba565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461371d919061470c565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516137819190614223565b60405180910390a3613794848484613c78565b50505050565b60006137a530611415565b90506000601e54601c54601d546137bc919061470c565b6137c6919061470c565b90506000808314806137d85750600082145b156137e557505050613a7f565b60056009546137f49190614546565b83111561380d57600560095461380a9190614546565b92505b6000600283601d54866138209190614546565b61382a91906145b7565b61383491906145b7565b9050600061384b8286613c7d90919063ffffffff16565b9050600047905061385b82613c93565b60006138708247613c7d90919063ffffffff16565b9050600061389b8761388d601c5485613c4790919063ffffffff16565b613c5d90919063ffffffff16565b905060006138c6886138b8601e5486613c4790919063ffffffff16565b613c5d90919063ffffffff16565b905060008183856138d79190615014565b6138e19190615014565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516139419061510b565b60006040518083038185875af1925050503d806000811461397e576040519150601f19603f3d011682016040523d82523d6000602084013e613983565b606091505b5050809850506000871180156139995750600081115b156139e6576139a88782613ed0565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d546040516139dd93929190615120565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613a2c9061510b565b60006040518083038185875af1925050503d8060008114613a69576040519150601f19603f3d011682016040523d82523d6000602084013e613a6e565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401613ae591906142cd565b602060405180830381865afa158015613b02573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b26919061516c565b90506000613b53612710613b45600b5485613c4790919063ffffffff16565b613c5d90919063ffffffff16565b90506000811115613b8c57613b8b7f000000000000000000000000000000000000000000000000000000000000000061dead8361351b565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613bf957600080fd5b505af1158015613c0d573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b60008183613c559190614546565b905092915050565b60008183613c6b91906145b7565b905092915050565b505050565b505050565b60008183613c8b9190615014565b905092915050565b6000600267ffffffffffffffff811115613cb057613caf615199565b5b604051908082528060200260200182016040528015613cde5781602001602082028036833780820191505090505b5090503081600081518110613cf657613cf56151c8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613d9b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613dbf919061520c565b81600181518110613dd357613dd26151c8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613e38307f000000000000000000000000000000000000000000000000000000000000000084612456565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613e9a959493929190615332565b600060405180830381600087803b158015613eb457600080fd5b505af1158015613ec8573d6000803e3d6000fd5b505050505050565b613efb307f000000000000000000000000000000000000000000000000000000000000000084612456565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613f629695949392919061538c565b60606040518083038185885af1158015613f80573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613fa591906153ed565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613fe6578082015181840152602081019050613fcb565b60008484015250505050565b6000601f19601f8301169050919050565b600061400e82613fac565b6140188185613fb7565b9350614028818560208601613fc8565b61403181613ff2565b840191505092915050565b600060208201905081810360008301526140568184614003565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061408e82614063565b9050919050565b61409e81614083565b81146140a957600080fd5b50565b6000813590506140bb81614095565b92915050565b6000819050919050565b6140d4816140c1565b81146140df57600080fd5b50565b6000813590506140f1816140cb565b92915050565b6000806040838503121561410e5761410d61405e565b5b600061411c858286016140ac565b925050602061412d858286016140e2565b9150509250929050565b60008115159050919050565b61414c81614137565b82525050565b60006020820190506141676000830184614143565b92915050565b6000602082840312156141835761418261405e565b5b6000614191848285016140ac565b91505092915050565b6000819050919050565b60006141bf6141ba6141b584614063565b61419a565b614063565b9050919050565b60006141d1826141a4565b9050919050565b60006141e3826141c6565b9050919050565b6141f3816141d8565b82525050565b600060208201905061420e60008301846141ea565b92915050565b61421d816140c1565b82525050565b60006020820190506142386000830184614214565b92915050565b6000602082840312156142545761425361405e565b5b6000614262848285016140e2565b91505092915050565b6000806000606084860312156142845761428361405e565b5b6000614292868287016140ac565b93505060206142a3868287016140ac565b92505060406142b4868287016140e2565b9150509250925092565b6142c781614083565b82525050565b60006020820190506142e260008301846142be565b92915050565b600060ff82169050919050565b6142fe816142e8565b82525050565b600060208201905061431960008301846142f5565b92915050565b61432881614137565b811461433357600080fd5b50565b6000813590506143458161431f565b92915050565b600080604083850312156143625761436161405e565b5b6000614370858286016140ac565b925050602061438185828601614336565b9150509250929050565b6000806000606084860312156143a4576143a361405e565b5b60006143b2868287016140e2565b93505060206143c3868287016140e2565b92505060406143d4868287016140e2565b9150509250925092565b6000602082840312156143f4576143f361405e565b5b600061440284828501614336565b91505092915050565b600080604083850312156144225761442161405e565b5b6000614430858286016140ac565b9250506020614441858286016140ac565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061449257607f821691505b6020821081036144a5576144a461444b565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006144e1602083613fb7565b91506144ec826144ab565b602082019050919050565b60006020820190508181036000830152614510816144d4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614551826140c1565b915061455c836140c1565b925082820261456a816140c1565b9150828204841483151761458157614580614517565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006145c2826140c1565b91506145cd836140c1565b9250826145dd576145dc614588565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614644602f83613fb7565b915061464f826145e8565b604082019050919050565b6000602082019050818103600083015261467381614637565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006146d6602883613fb7565b91506146e18261467a565b604082019050919050565b60006020820190508181036000830152614705816146c9565b9050919050565b6000614717826140c1565b9150614722836140c1565b925082820190508082111561473a57614739614517565b5b92915050565b7f4d757374206b6565702066656573206174203925206f72206c65737300000000600082015250565b6000614776601c83613fb7565b915061478182614740565b602082019050919050565b600060208201905081810360008301526147a581614769565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614808603983613fb7565b9150614813826147ac565b604082019050919050565b60006020820190508181036000830152614837816147fb565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061489a602583613fb7565b91506148a58261483e565b604082019050919050565b600060208201905081810360008301526148c98161488d565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061492c602483613fb7565b9150614937826148d0565b604082019050919050565b6000602082019050818103600083015261495b8161491f565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006149be603583613fb7565b91506149c982614962565b604082019050919050565b600060208201905081810360008301526149ed816149b1565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614a50603483613fb7565b9150614a5b826149f4565b604082019050919050565b60006020820190508181036000830152614a7f81614a43565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614ae2602683613fb7565b9150614aed82614a86565b604082019050919050565b60006020820190508181036000830152614b1181614ad5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614b74602483613fb7565b9150614b7f82614b18565b604082019050919050565b60006020820190508181036000830152614ba381614b67565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614c06602283613fb7565b9150614c1182614baa565b604082019050919050565b60006020820190508181036000830152614c3581614bf9565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614c98602583613fb7565b9150614ca382614c3c565b604082019050919050565b60006020820190508181036000830152614cc781614c8b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614d2a602383613fb7565b9150614d3582614cce565b604082019050919050565b60006020820190508181036000830152614d5981614d1d565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614d96601683613fb7565b9150614da182614d60565b602082019050919050565b60006020820190508181036000830152614dc581614d89565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614e4e604983613fb7565b9150614e5982614dcc565b606082019050919050565b60006020820190508181036000830152614e7d81614e41565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614ee0603583613fb7565b9150614eeb82614e84565b604082019050919050565b60006020820190508181036000830152614f0f81614ed3565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614f4c601383613fb7565b9150614f5782614f16565b602082019050919050565b60006020820190508181036000830152614f7b81614f3f565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614fde603683613fb7565b9150614fe982614f82565b604082019050919050565b6000602082019050818103600083015261500d81614fd1565b9050919050565b600061501f826140c1565b915061502a836140c1565b925082820390508181111561504257615041614517565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006150a4602683613fb7565b91506150af82615048565b604082019050919050565b600060208201905081810360008301526150d381615097565b9050919050565b600081905092915050565b50565b60006150f56000836150da565b9150615100826150e5565b600082019050919050565b6000615116826150e8565b9150819050919050565b60006060820190506151356000830186614214565b6151426020830185614214565b61514f6040830184614214565b949350505050565b600081519050615166816140cb565b92915050565b6000602082840312156151825761518161405e565b5b600061519084828501615157565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061520681614095565b92915050565b6000602082840312156152225761522161405e565b5b6000615230848285016151f7565b91505092915050565b6000819050919050565b600061525e61525961525484615239565b61419a565b6140c1565b9050919050565b61526e81615243565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6152a981614083565b82525050565b60006152bb83836152a0565b60208301905092915050565b6000602082019050919050565b60006152df82615274565b6152e9818561527f565b93506152f483615290565b8060005b8381101561532557815161530c88826152af565b9750615317836152c7565b9250506001810190506152f8565b5085935050505092915050565b600060a0820190506153476000830188614214565b6153546020830187615265565b818103604083015261536681866152d4565b905061537560608301856142be565b6153826080830184614214565b9695505050505050565b600060c0820190506153a160008301896142be565b6153ae6020830188614214565b6153bb6040830187615265565b6153c86060830186615265565b6153d560808301856142be565b6153e260a0830184614214565b979650505050505050565b6000806000606084860312156154065761540561405e565b5b600061541486828701615157565b935050602061542586828701615157565b925050604061543686828701615157565b915050925092509256fea26469706673582212208fc366408dbf4e1391736185a0778796f0a8db365d4b640e98378f95d6c451ea64736f6c63430008110033

Deployed Bytecode

0x60806040526004361061039b5760003560e01c80638da5cb5b116101dc578063bbc0c74211610102578063d85ba063116100a0578063f11a24d31161006f578063f11a24d314610d99578063f2fde38b14610dc4578063f637434214610ded578063f8b45b0514610e18576103a2565b8063d85ba06314610cdb578063dd62ed3e14610d06578063e2f4560514610d43578063e884f26014610d6e576103a2565b8063c18bc195116100dc578063c18bc19514610c1f578063c876d0b914610c48578063c8c8ebe414610c73578063d257b34f14610c9e576103a2565b8063bbc0c74214610ba2578063c024666814610bcd578063c17b5b8c14610bf6576103a2565b80639ec22c0e1161017a578063a4c82a0011610149578063a4c82a0014610ad4578063a9059cbb14610aff578063aacebbe314610b3c578063b62496f514610b65576103a2565b80639ec22c0e14610a165780639fccce3214610a41578063a0d82dc514610a6c578063a457c2d714610a97576103a2565b8063924de9b7116101b6578063924de9b71461096e57806395d89b41146109975780639a7a23d6146109c25780639c3b4fdc146109eb576103a2565b80638da5cb5b146108ed5780638ea5220f146109185780639213691314610943576103a2565b8063313ce567116102c157806370a082311161025f57806375f0a8741161022e57806375f0a874146108575780637bce5a04146108825780638095d564146108ad5780638a8c523c146108d6576103a2565b806370a08231146107af578063715018a6146107ec578063751039fc146108035780637571336a1461082e576103a2565b80634a62bb651161029b5780634a62bb65146106f15780634fbee1931461071c5780636a486a8e146107595780636ddd171314610784576103a2565b8063313ce5671461065e578063395093511461068957806349bd5a5e146106c6576103a2565b8063199ffc721161033957806323b872dd1161030857806323b872dd146105a057806327c8f835146105dd5780632c3e486c146106085780632e82f1a014610633576103a2565b8063199ffc72146104f65780631a8145bb146105215780631f3fed8f1461054c578063203e727e14610577576103a2565b80631694505e116103755780631694505e1461044c57806318160ddd146104775780631816467f146104a2578063184c16c5146104cb576103a2565b806306fdde03146103a7578063095ea7b3146103d257806310d5de531461040f576103a2565b366103a257005b600080fd5b3480156103b357600080fd5b506103bc610e43565b6040516103c9919061403c565b60405180910390f35b3480156103de57600080fd5b506103f960048036038101906103f491906140f7565b610ed5565b6040516104069190614152565b60405180910390f35b34801561041b57600080fd5b506104366004803603810190610431919061416d565b610ef3565b6040516104439190614152565b60405180910390f35b34801561045857600080fd5b50610461610f12565b60405161046e91906141f9565b60405180910390f35b34801561048357600080fd5b5061048c610f36565b6040516104999190614223565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c4919061416d565b610f40565b005b3480156104d757600080fd5b506104e061107c565b6040516104ed9190614223565b60405180910390f35b34801561050257600080fd5b5061050b611082565b6040516105189190614223565b60405180910390f35b34801561052d57600080fd5b50610536611088565b6040516105439190614223565b60405180910390f35b34801561055857600080fd5b5061056161108e565b60405161056e9190614223565b60405180910390f35b34801561058357600080fd5b5061059e6004803603810190610599919061423e565b611094565b005b3480156105ac57600080fd5b506105c760048036038101906105c2919061426b565b6111a3565b6040516105d49190614152565b60405180910390f35b3480156105e957600080fd5b506105f261129b565b6040516105ff91906142cd565b60405180910390f35b34801561061457600080fd5b5061061d6112a1565b60405161062a9190614223565b60405180910390f35b34801561063f57600080fd5b506106486112a7565b6040516106559190614152565b60405180910390f35b34801561066a57600080fd5b506106736112ba565b6040516106809190614304565b60405180910390f35b34801561069557600080fd5b506106b060048036038101906106ab91906140f7565b6112c3565b6040516106bd9190614152565b60405180910390f35b3480156106d257600080fd5b506106db61136f565b6040516106e891906142cd565b60405180910390f35b3480156106fd57600080fd5b50610706611393565b6040516107139190614152565b60405180910390f35b34801561072857600080fd5b50610743600480360381019061073e919061416d565b6113a6565b6040516107509190614152565b60405180910390f35b34801561076557600080fd5b5061076e6113fc565b60405161077b9190614223565b60405180910390f35b34801561079057600080fd5b50610799611402565b6040516107a69190614152565b60405180910390f35b3480156107bb57600080fd5b506107d660048036038101906107d1919061416d565b611415565b6040516107e39190614223565b60405180910390f35b3480156107f857600080fd5b5061080161145d565b005b34801561080f57600080fd5b506108186114e5565b6040516108259190614152565b60405180910390f35b34801561083a57600080fd5b506108556004803603810190610850919061434b565b611585565b005b34801561086357600080fd5b5061086c61165c565b60405161087991906142cd565b60405180910390f35b34801561088e57600080fd5b50610897611682565b6040516108a49190614223565b60405180910390f35b3480156108b957600080fd5b506108d460048036038101906108cf919061438b565b611688565b005b3480156108e257600080fd5b506108eb611787565b005b3480156108f957600080fd5b50610902611842565b60405161090f91906142cd565b60405180910390f35b34801561092457600080fd5b5061092d61186c565b60405161093a91906142cd565b60405180910390f35b34801561094f57600080fd5b50610958611892565b6040516109659190614223565b60405180910390f35b34801561097a57600080fd5b50610995600480360381019061099091906143de565b611898565b005b3480156109a357600080fd5b506109ac611931565b6040516109b9919061403c565b60405180910390f35b3480156109ce57600080fd5b506109e960048036038101906109e4919061434b565b6119c3565b005b3480156109f757600080fd5b50610a00611adb565b604051610a0d9190614223565b60405180910390f35b348015610a2257600080fd5b50610a2b611ae1565b604051610a389190614223565b60405180910390f35b348015610a4d57600080fd5b50610a56611ae7565b604051610a639190614223565b60405180910390f35b348015610a7857600080fd5b50610a81611aed565b604051610a8e9190614223565b60405180910390f35b348015610aa357600080fd5b50610abe6004803603810190610ab991906140f7565b611af3565b604051610acb9190614152565b60405180910390f35b348015610ae057600080fd5b50610ae9611bde565b604051610af69190614223565b60405180910390f35b348015610b0b57600080fd5b50610b266004803603810190610b2191906140f7565b611be4565b604051610b339190614152565b60405180910390f35b348015610b4857600080fd5b50610b636004803603810190610b5e919061416d565b611c02565b005b348015610b7157600080fd5b50610b8c6004803603810190610b87919061416d565b611d3e565b604051610b999190614152565b60405180910390f35b348015610bae57600080fd5b50610bb7611d5e565b604051610bc49190614152565b60405180910390f35b348015610bd957600080fd5b50610bf46004803603810190610bef919061434b565b611d71565b005b348015610c0257600080fd5b50610c1d6004803603810190610c18919061438b565b611e96565b005b348015610c2b57600080fd5b50610c466004803603810190610c41919061423e565b611f95565b005b348015610c5457600080fd5b50610c5d6120a4565b604051610c6a9190614152565b60405180910390f35b348015610c7f57600080fd5b50610c886120b7565b604051610c959190614223565b60405180910390f35b348015610caa57600080fd5b50610cc56004803603810190610cc0919061423e565b6120bd565b604051610cd29190614152565b60405180910390f35b348015610ce757600080fd5b50610cf0612212565b604051610cfd9190614223565b60405180910390f35b348015610d1257600080fd5b50610d2d6004803603810190610d28919061440b565b612218565b604051610d3a9190614223565b60405180910390f35b348015610d4f57600080fd5b50610d5861229f565b604051610d659190614223565b60405180910390f35b348015610d7a57600080fd5b50610d836122a5565b604051610d909190614152565b60405180910390f35b348015610da557600080fd5b50610dae612345565b604051610dbb9190614223565b60405180910390f35b348015610dd057600080fd5b50610deb6004803603810190610de6919061416d565b61234b565b005b348015610df957600080fd5b50610e02612442565b604051610e0f9190614223565b60405180910390f35b348015610e2457600080fd5b50610e2d612448565b604051610e3a9190614223565b60405180910390f35b606060038054610e529061447a565b80601f0160208091040260200160405190810160405280929190818152602001828054610e7e9061447a565b8015610ecb5780601f10610ea057610100808354040283529160200191610ecb565b820191906000526020600020905b815481529060010190602001808311610eae57829003601f168201915b5050505050905090565b6000610ee9610ee261244e565b8484612456565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610f4861244e565b73ffffffffffffffffffffffffffffffffffffffff16610f66611842565b73ffffffffffffffffffffffffffffffffffffffff1614610fbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb3906144f7565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b61109c61244e565b73ffffffffffffffffffffffffffffffffffffffff166110ba611842565b73ffffffffffffffffffffffffffffffffffffffff1614611110576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611107906144f7565b60405180910390fd5b670de0b6b3a76400006103e86001611126610f36565b6111309190614546565b61113a91906145b7565b61114491906145b7565b811015611186576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117d9061465a565b60405180910390fd5b670de0b6b3a76400008161119a9190614546565b60088190555050565b60006111b084848461261f565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006111fb61244e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561127b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611272906146ec565b60405180910390fd5b61128f8561128761244e565b858403612456565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b60006113656112d061244e565b8484600160006112de61244e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611360919061470c565b612456565b6001905092915050565b7f000000000000000000000000f3548627fd0219b9e9bcf0a2c5152f171d22b59b81565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61146561244e565b73ffffffffffffffffffffffffffffffffffffffff16611483611842565b73ffffffffffffffffffffffffffffffffffffffff16146114d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d0906144f7565b60405180910390fd5b6114e360006133b4565b565b60006114ef61244e565b73ffffffffffffffffffffffffffffffffffffffff1661150d611842565b73ffffffffffffffffffffffffffffffffffffffff1614611563576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161155a906144f7565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b61158d61244e565b73ffffffffffffffffffffffffffffffffffffffff166115ab611842565b73ffffffffffffffffffffffffffffffffffffffff1614611601576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f8906144f7565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b61169061244e565b73ffffffffffffffffffffffffffffffffffffffff166116ae611842565b73ffffffffffffffffffffffffffffffffffffffff1614611704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fb906144f7565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461172c919061470c565b611736919061470c565b60148190555060096014541115611782576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117799061478c565b60405180910390fd5b505050565b61178f61244e565b73ffffffffffffffffffffffffffffffffffffffff166117ad611842565b73ffffffffffffffffffffffffffffffffffffffff1614611803576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fa906144f7565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b6118a061244e565b73ffffffffffffffffffffffffffffffffffffffff166118be611842565b73ffffffffffffffffffffffffffffffffffffffff1614611914576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190b906144f7565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b6060600480546119409061447a565b80601f016020809104026020016040519081016040528092919081815260200182805461196c9061447a565b80156119b95780601f1061198e576101008083540402835291602001916119b9565b820191906000526020600020905b81548152906001019060200180831161199c57829003601f168201915b5050505050905090565b6119cb61244e565b73ffffffffffffffffffffffffffffffffffffffff166119e9611842565b73ffffffffffffffffffffffffffffffffffffffff1614611a3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a36906144f7565b60405180910390fd5b7f000000000000000000000000f3548627fd0219b9e9bcf0a2c5152f171d22b59b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611acd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac49061481e565b60405180910390fd5b611ad7828261347a565b5050565b60175481565b60105481565b601e5481565b601b5481565b60008060016000611b0261244e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611bbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb6906148b0565b60405180910390fd5b611bd3611bca61244e565b85858403612456565b600191505092915050565b600e5481565b6000611bf8611bf161244e565b848461261f565b6001905092915050565b611c0a61244e565b73ffffffffffffffffffffffffffffffffffffffff16611c28611842565b73ffffffffffffffffffffffffffffffffffffffff1614611c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c75906144f7565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611d7961244e565b73ffffffffffffffffffffffffffffffffffffffff16611d97611842565b73ffffffffffffffffffffffffffffffffffffffff1614611ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de4906144f7565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611e8a9190614152565b60405180910390a25050565b611e9e61244e565b73ffffffffffffffffffffffffffffffffffffffff16611ebc611842565b73ffffffffffffffffffffffffffffffffffffffff1614611f12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f09906144f7565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a54601954611f3a919061470c565b611f44919061470c565b60188190555060096018541115611f90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f879061478c565b60405180910390fd5b505050565b611f9d61244e565b73ffffffffffffffffffffffffffffffffffffffff16611fbb611842565b73ffffffffffffffffffffffffffffffffffffffff1614612011576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612008906144f7565b60405180910390fd5b670de0b6b3a76400006103e86005612027610f36565b6120319190614546565b61203b91906145b7565b61204591906145b7565b811015612087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207e90614942565b60405180910390fd5b670de0b6b3a76400008161209b9190614546565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b60006120c761244e565b73ffffffffffffffffffffffffffffffffffffffff166120e5611842565b73ffffffffffffffffffffffffffffffffffffffff161461213b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612132906144f7565b60405180910390fd5b620186a06001612149610f36565b6121539190614546565b61215d91906145b7565b82101561219f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612196906149d4565b60405180910390fd5b6103e860056121ac610f36565b6121b69190614546565b6121c091906145b7565b821115612202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f990614a66565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006122af61244e565b73ffffffffffffffffffffffffffffffffffffffff166122cd611842565b73ffffffffffffffffffffffffffffffffffffffff1614612323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231a906144f7565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b61235361244e565b73ffffffffffffffffffffffffffffffffffffffff16612371611842565b73ffffffffffffffffffffffffffffffffffffffff16146123c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123be906144f7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612436576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242d90614af8565b60405180910390fd5b61243f816133b4565b50565b601a5481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036124c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bc90614b8a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612534576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252b90614c1c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516126129190614223565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361268e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268590614cae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036126fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126f490614d40565b60405180910390fd5b60008103612716576127118383600061351b565b6133af565b601160009054906101000a900460ff1615612dd957612733611842565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156127a15750612771611842565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156127da5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612814575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561282d5750600560149054906101000a900460ff16155b15612dd857601160019054906101000a900460ff1661292757601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806128e75750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612926576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291d90614dac565b60405180910390fd5b5b601360009054906101000a900460ff1615612aef57612944611842565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156129cb57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612a2357507f000000000000000000000000f3548627fd0219b9e9bcf0a2c5152f171d22b59b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612aee5743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612aa9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa090614e64565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612b925750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c3957600854811115612bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bd390614ef6565b60405180910390fd5b600a54612be883611415565b82612bf3919061470c565b1115612c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c2b90614f62565b60405180910390fd5b612dd7565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612cdc5750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612d2b57600854811115612d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d1d90614ff4565b60405180910390fd5b612dd6565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612dd557600a54612d8883611415565b82612d93919061470c565b1115612dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dcb90614f62565b60405180910390fd5b5b5b5b5b5b6000612de430611415565b905060006009548210159050808015612e095750601160029054906101000a900460ff165b8015612e225750600560149054906101000a900460ff16155b8015612e785750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612ece5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612f245750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612f68576001600560146101000a81548160ff021916908315150217905550612f4c61379a565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff16158015612fce5750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b8015612fe65750600c60009054906101000a900460ff165b80156130015750600d54600e54612ffd919061470c565b4210155b80156130575750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561306657613064613a81565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061311c5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561312657600090505b6000811561339f57602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561318957506000601854115b15613256576131b660646131a860185488613c4790919063ffffffff16565b613c5d90919063ffffffff16565b9050601854601a54826131c99190614546565b6131d391906145b7565b601d60008282546131e4919061470c565b92505081905550601854601b54826131fc9190614546565b61320691906145b7565b601e6000828254613217919061470c565b925050819055506018546019548261322f9190614546565b61323991906145b7565b601c600082825461324a919061470c565b9250508190555061337b565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156132b157506000601454115b1561337a576132de60646132d060145488613c4790919063ffffffff16565b613c5d90919063ffffffff16565b9050601454601654826132f19190614546565b6132fb91906145b7565b601d600082825461330c919061470c565b92505081905550601454601754826133249190614546565b61332e91906145b7565b601e600082825461333f919061470c565b92505081905550601454601554826133579190614546565b61336191906145b7565b601c6000828254613372919061470c565b925050819055505b5b60008111156133905761338f87308361351b565b5b808561339c9190615014565b94505b6133aa87878761351b565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361358a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161358190614cae565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036135f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135f090614d40565b60405180910390fd5b613604838383613c73565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561368a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613681906150ba565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461371d919061470c565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516137819190614223565b60405180910390a3613794848484613c78565b50505050565b60006137a530611415565b90506000601e54601c54601d546137bc919061470c565b6137c6919061470c565b90506000808314806137d85750600082145b156137e557505050613a7f565b60056009546137f49190614546565b83111561380d57600560095461380a9190614546565b92505b6000600283601d54866138209190614546565b61382a91906145b7565b61383491906145b7565b9050600061384b8286613c7d90919063ffffffff16565b9050600047905061385b82613c93565b60006138708247613c7d90919063ffffffff16565b9050600061389b8761388d601c5485613c4790919063ffffffff16565b613c5d90919063ffffffff16565b905060006138c6886138b8601e5486613c4790919063ffffffff16565b613c5d90919063ffffffff16565b905060008183856138d79190615014565b6138e19190615014565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16826040516139419061510b565b60006040518083038185875af1925050503d806000811461397e576040519150601f19603f3d011682016040523d82523d6000602084013e613983565b606091505b5050809850506000871180156139995750600081115b156139e6576139a88782613ed0565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d546040516139dd93929190615120565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613a2c9061510b565b60006040518083038185875af1925050503d8060008114613a69576040519150601f19603f3d011682016040523d82523d6000602084013e613a6e565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f000000000000000000000000f3548627fd0219b9e9bcf0a2c5152f171d22b59b6040518263ffffffff1660e01b8152600401613ae591906142cd565b602060405180830381865afa158015613b02573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613b26919061516c565b90506000613b53612710613b45600b5485613c4790919063ffffffff16565b613c5d90919063ffffffff16565b90506000811115613b8c57613b8b7f000000000000000000000000f3548627fd0219b9e9bcf0a2c5152f171d22b59b61dead8361351b565b5b60007f000000000000000000000000f3548627fd0219b9e9bcf0a2c5152f171d22b59b90508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613bf957600080fd5b505af1158015613c0d573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b60008183613c559190614546565b905092915050565b60008183613c6b91906145b7565b905092915050565b505050565b505050565b60008183613c8b9190615014565b905092915050565b6000600267ffffffffffffffff811115613cb057613caf615199565b5b604051908082528060200260200182016040528015613cde5781602001602082028036833780820191505090505b5090503081600081518110613cf657613cf56151c8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613d9b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613dbf919061520c565b81600181518110613dd357613dd26151c8565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050613e38307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612456565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613e9a959493929190615332565b600060405180830381600087803b158015613eb457600080fd5b505af1158015613ec8573d6000803e3d6000fd5b505050505050565b613efb307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612456565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401613f629695949392919061538c565b60606040518083038185885af1158015613f80573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613fa591906153ed565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613fe6578082015181840152602081019050613fcb565b60008484015250505050565b6000601f19601f8301169050919050565b600061400e82613fac565b6140188185613fb7565b9350614028818560208601613fc8565b61403181613ff2565b840191505092915050565b600060208201905081810360008301526140568184614003565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061408e82614063565b9050919050565b61409e81614083565b81146140a957600080fd5b50565b6000813590506140bb81614095565b92915050565b6000819050919050565b6140d4816140c1565b81146140df57600080fd5b50565b6000813590506140f1816140cb565b92915050565b6000806040838503121561410e5761410d61405e565b5b600061411c858286016140ac565b925050602061412d858286016140e2565b9150509250929050565b60008115159050919050565b61414c81614137565b82525050565b60006020820190506141676000830184614143565b92915050565b6000602082840312156141835761418261405e565b5b6000614191848285016140ac565b91505092915050565b6000819050919050565b60006141bf6141ba6141b584614063565b61419a565b614063565b9050919050565b60006141d1826141a4565b9050919050565b60006141e3826141c6565b9050919050565b6141f3816141d8565b82525050565b600060208201905061420e60008301846141ea565b92915050565b61421d816140c1565b82525050565b60006020820190506142386000830184614214565b92915050565b6000602082840312156142545761425361405e565b5b6000614262848285016140e2565b91505092915050565b6000806000606084860312156142845761428361405e565b5b6000614292868287016140ac565b93505060206142a3868287016140ac565b92505060406142b4868287016140e2565b9150509250925092565b6142c781614083565b82525050565b60006020820190506142e260008301846142be565b92915050565b600060ff82169050919050565b6142fe816142e8565b82525050565b600060208201905061431960008301846142f5565b92915050565b61432881614137565b811461433357600080fd5b50565b6000813590506143458161431f565b92915050565b600080604083850312156143625761436161405e565b5b6000614370858286016140ac565b925050602061438185828601614336565b9150509250929050565b6000806000606084860312156143a4576143a361405e565b5b60006143b2868287016140e2565b93505060206143c3868287016140e2565b92505060406143d4868287016140e2565b9150509250925092565b6000602082840312156143f4576143f361405e565b5b600061440284828501614336565b91505092915050565b600080604083850312156144225761442161405e565b5b6000614430858286016140ac565b9250506020614441858286016140ac565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061449257607f821691505b6020821081036144a5576144a461444b565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006144e1602083613fb7565b91506144ec826144ab565b602082019050919050565b60006020820190508181036000830152614510816144d4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614551826140c1565b915061455c836140c1565b925082820261456a816140c1565b9150828204841483151761458157614580614517565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006145c2826140c1565b91506145cd836140c1565b9250826145dd576145dc614588565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614644602f83613fb7565b915061464f826145e8565b604082019050919050565b6000602082019050818103600083015261467381614637565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006146d6602883613fb7565b91506146e18261467a565b604082019050919050565b60006020820190508181036000830152614705816146c9565b9050919050565b6000614717826140c1565b9150614722836140c1565b925082820190508082111561473a57614739614517565b5b92915050565b7f4d757374206b6565702066656573206174203925206f72206c65737300000000600082015250565b6000614776601c83613fb7565b915061478182614740565b602082019050919050565b600060208201905081810360008301526147a581614769565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614808603983613fb7565b9150614813826147ac565b604082019050919050565b60006020820190508181036000830152614837816147fb565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061489a602583613fb7565b91506148a58261483e565b604082019050919050565b600060208201905081810360008301526148c98161488d565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061492c602483613fb7565b9150614937826148d0565b604082019050919050565b6000602082019050818103600083015261495b8161491f565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006149be603583613fb7565b91506149c982614962565b604082019050919050565b600060208201905081810360008301526149ed816149b1565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614a50603483613fb7565b9150614a5b826149f4565b604082019050919050565b60006020820190508181036000830152614a7f81614a43565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614ae2602683613fb7565b9150614aed82614a86565b604082019050919050565b60006020820190508181036000830152614b1181614ad5565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614b74602483613fb7565b9150614b7f82614b18565b604082019050919050565b60006020820190508181036000830152614ba381614b67565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614c06602283613fb7565b9150614c1182614baa565b604082019050919050565b60006020820190508181036000830152614c3581614bf9565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614c98602583613fb7565b9150614ca382614c3c565b604082019050919050565b60006020820190508181036000830152614cc781614c8b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000614d2a602383613fb7565b9150614d3582614cce565b604082019050919050565b60006020820190508181036000830152614d5981614d1d565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614d96601683613fb7565b9150614da182614d60565b602082019050919050565b60006020820190508181036000830152614dc581614d89565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614e4e604983613fb7565b9150614e5982614dcc565b606082019050919050565b60006020820190508181036000830152614e7d81614e41565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614ee0603583613fb7565b9150614eeb82614e84565b604082019050919050565b60006020820190508181036000830152614f0f81614ed3565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614f4c601383613fb7565b9150614f5782614f16565b602082019050919050565b60006020820190508181036000830152614f7b81614f3f565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614fde603683613fb7565b9150614fe982614f82565b604082019050919050565b6000602082019050818103600083015261500d81614fd1565b9050919050565b600061501f826140c1565b915061502a836140c1565b925082820390508181111561504257615041614517565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006150a4602683613fb7565b91506150af82615048565b604082019050919050565b600060208201905081810360008301526150d381615097565b9050919050565b600081905092915050565b50565b60006150f56000836150da565b9150615100826150e5565b600082019050919050565b6000615116826150e8565b9150819050919050565b60006060820190506151356000830186614214565b6151426020830185614214565b61514f6040830184614214565b949350505050565b600081519050615166816140cb565b92915050565b6000602082840312156151825761518161405e565b5b600061519084828501615157565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061520681614095565b92915050565b6000602082840312156152225761522161405e565b5b6000615230848285016151f7565b91505092915050565b6000819050919050565b600061525e61525961525484615239565b61419a565b6140c1565b9050919050565b61526e81615243565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6152a981614083565b82525050565b60006152bb83836152a0565b60208301905092915050565b6000602082019050919050565b60006152df82615274565b6152e9818561527f565b93506152f483615290565b8060005b8381101561532557815161530c88826152af565b9750615317836152c7565b9250506001810190506152f8565b5085935050505092915050565b600060a0820190506153476000830188614214565b6153546020830187615265565b818103604083015261536681866152d4565b905061537560608301856142be565b6153826080830184614214565b9695505050505050565b600060c0820190506153a160008301896142be565b6153ae6020830188614214565b6153bb6040830187615265565b6153c86060830186615265565b6153d560808301856142be565b6153e260a0830184614214565b979650505050505050565b6000806000606084860312156154065761540561405e565b5b600061541486828701615157565b935050602061542586828701615157565b925050604061543686828701615157565b915050925092509256fea26469706673582212208fc366408dbf4e1391736185a0778796f0a8db365d4b640e98378f95d6c451ea64736f6c63430008110033

Deployed Bytecode Sourcemap

31398:17702:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8226:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10393:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33023:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31471:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9346:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40055:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32037:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31851:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32807:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32767;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37373:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11044:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31574:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31947:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31907:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9188:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11945:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31529:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32135:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40220:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32622:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32215:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9517:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1461:103;;;;;;;;;;;;;:::i;:::-;;36481:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37920:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31666:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32515;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38291:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36274:155;;;;;;;;;;;;;:::i;:::-;;810:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31703:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32657:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38183:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8445:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39308:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32589:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32091:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32847:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32733:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12663:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31999:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9857:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39816:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33244:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32175:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39118:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38700:410;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37656:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32433:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31736:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36868:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32481:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10095:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31778:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36663:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32552:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1719:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32695:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31818:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8226:100;8280:13;8313:5;8306:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8226:100;:::o;10393:169::-;10476:4;10493:39;10502:12;:10;:12::i;:::-;10516:7;10525:6;10493:8;:39::i;:::-;10550:4;10543:11;;10393:169;;;;:::o;33023:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;31471:51::-;;;:::o;9346:108::-;9407:7;9434:12;;9427:19;;9346:108;:::o;40055:157::-;1041:12;:10;:12::i;:::-;1030:23;;:7;:5;:7::i;:::-;:23;;;1022:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40162:9:::1;;;;;;;;;;;40134:38;;40151:9;40134:38;;;;;;;;;;;;40195:9;40183;;:21;;;;;;;;;;;;;;;;;;40055:157:::0;:::o;32037:47::-;;;;:::o;31851:36::-;;;;:::o;32807:33::-;;;;:::o;32767:::-;;;;:::o;37373:275::-;1041:12;:10;:12::i;:::-;1030:23;;:7;:5;:7::i;:::-;:23;;;1022:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37510:4:::1;37502;37497:1;37481:13;:11;:13::i;:::-;:17;;;;:::i;:::-;37480:26;;;;:::i;:::-;37479:35;;;;:::i;:::-;37469:6;:45;;37447:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;37633:6;37623;:17;;;;:::i;:::-;37600:20;:40;;;;37373:275:::0;:::o;11044:492::-;11184:4;11201:36;11211:6;11219:9;11230:6;11201:9;:36::i;:::-;11250:24;11277:11;:19;11289:6;11277:19;;;;;;;;;;;;;;;:33;11297:12;:10;:12::i;:::-;11277:33;;;;;;;;;;;;;;;;11250:60;;11349:6;11329:16;:26;;11321:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;11436:57;11445:6;11453:12;:10;:12::i;:::-;11486:6;11467:16;:25;11436:8;:57::i;:::-;11524:4;11517:11;;;11044:492;;;;;:::o;31574:53::-;31620:6;31574:53;:::o;31947:45::-;;;;:::o;31907:33::-;;;;;;;;;;;;;:::o;9188:93::-;9246:5;9271:2;9264:9;;9188:93;:::o;11945:215::-;12033:4;12050:80;12059:12;:10;:12::i;:::-;12073:7;12119:10;12082:11;:25;12094:12;:10;:12::i;:::-;12082:25;;;;;;;;;;;;;;;:34;12108:7;12082:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;12050:8;:80::i;:::-;12148:4;12141:11;;11945:215;;;;:::o;31529:38::-;;;:::o;32135:33::-;;;;;;;;;;;;;:::o;40220:126::-;40286:4;40310:19;:28;40330:7;40310:28;;;;;;;;;;;;;;;;;;;;;;;;;40303:35;;40220:126;;;:::o;32622:28::-;;;;:::o;32215:31::-;;;;;;;;;;;;;:::o;9517:127::-;9591:7;9618:9;:18;9628:7;9618:18;;;;;;;;;;;;;;;;9611:25;;9517:127;;;:::o;1461:103::-;1041:12;:10;:12::i;:::-;1030:23;;:7;:5;:7::i;:::-;:23;;;1022:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1526:30:::1;1553:1;1526:18;:30::i;:::-;1461:103::o:0;36481:121::-;36533:4;1041:12;:10;:12::i;:::-;1030:23;;:7;:5;:7::i;:::-;:23;;;1022:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36567:5:::1;36550:14;;:22;;;;;;;;;;;;;;;;;;36590:4;36583:11;;36481:121:::0;:::o;37920:167::-;1041:12;:10;:12::i;:::-;1030:23;;:7;:5;:7::i;:::-;:23;;;1022:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38075:4:::1;38033:31;:39;38065:6;38033:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;37920:167:::0;;:::o;31666:30::-;;;;;;;;;;;;;:::o;32515:::-;;;;:::o;38291:401::-;1041:12;:10;:12::i;:::-;1030:23;;:7;:5;:7::i;:::-;:23;;;1022:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38459:13:::1;38441:15;:31;;;;38501:13;38483:15;:31;;;;38537:7;38525:9;:19;;;;38606:9;;38588:15;;38570;;:33;;;;:::i;:::-;:45;;;;:::i;:::-;38555:12;:60;;;;38650:1;38634:12;;:17;;38626:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;38291:401:::0;;;:::o;36274:155::-;1041:12;:10;:12::i;:::-;1030:23;;:7;:5;:7::i;:::-;:23;;;1022:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36345:4:::1;36329:13;;:20;;;;;;;;;;;;;;;;;;36374:4;36360:11;;:18;;;;;;;;;;;;;;;;;;36406:15;36389:14;:32;;;;36274:155::o:0;810:87::-;856:7;883:6;;;;;;;;;;;876:13;;810:87;:::o;31703:24::-;;;;;;;;;;;;;:::o;32657:31::-;;;;:::o;38183:100::-;1041:12;:10;:12::i;:::-;1030:23;;:7;:5;:7::i;:::-;:23;;;1022:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38268:7:::1;38254:11;;:21;;;;;;;;;;;;;;;;;;38183:100:::0;:::o;8445:104::-;8501:13;8534:7;8527:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8445:104;:::o;39308:304::-;1041:12;:10;:12::i;:::-;1030:23;;:7;:5;:7::i;:::-;:23;;;1022:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39452:13:::1;39444:21;;:4;:21;;::::0;39422:128:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;39563:41;39592:4;39598:5;39563:28;:41::i;:::-;39308:304:::0;;:::o;32589:24::-;;;;:::o;32091:35::-;;;;:::o;32847:27::-;;;;:::o;32733:25::-;;;;:::o;12663:413::-;12756:4;12773:24;12800:11;:25;12812:12;:10;:12::i;:::-;12800:25;;;;;;;;;;;;;;;:34;12826:7;12800:34;;;;;;;;;;;;;;;;12773:61;;12873:15;12853:16;:35;;12845:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;12966:67;12975:12;:10;:12::i;:::-;12989:7;13017:15;12998:16;:34;12966:8;:67::i;:::-;13064:4;13057:11;;;12663:413;;;;:::o;31999:29::-;;;;:::o;9857:175::-;9943:4;9960:42;9970:12;:10;:12::i;:::-;9984:9;9995:6;9960:9;:42::i;:::-;10020:4;10013:11;;9857:175;;;;:::o;39816:231::-;1041:12;:10;:12::i;:::-;1030:23;;:7;:5;:7::i;:::-;:23;;;1022:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39976:15:::1;;;;;;;;;;;39933:59;;39956:18;39933:59;;;;;;;;;;;;40021:18;40003:15;;:36;;;;;;;;;;;;;;;;;;39816:231:::0;:::o;33244:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;32175:33::-;;;;;;;;;;;;;:::o;39118:182::-;1041:12;:10;:12::i;:::-;1030:23;;:7;:5;:7::i;:::-;:23;;;1022:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39234:8:::1;39203:19;:28;39223:7;39203:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;39274:7;39258:34;;;39283:8;39258:34;;;;;;:::i;:::-;;;;;;;;39118:182:::0;;:::o;38700:410::-;1041:12;:10;:12::i;:::-;1030:23;;:7;:5;:7::i;:::-;:23;;;1022:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38870:13:::1;38851:16;:32;;;;38913:13;38894:16;:32;;;;38950:7;38937:10;:20;;;;39022:10;;39003:16;;38984;;:35;;;;:::i;:::-;:48;;;;:::i;:::-;38968:13;:64;;;;39068:1;39051:13;;:18;;39043:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;38700:410:::0;;;:::o;37656:256::-;1041:12;:10;:12::i;:::-;1030:23;;:7;:5;:7::i;:::-;:23;;;1022:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37796:4:::1;37788;37783:1;37767:13;:11;:13::i;:::-;:17;;;;:::i;:::-;37766:26;;;;:::i;:::-;37765:35;;;;:::i;:::-;37755:6;:45;;37733:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;37897:6;37887;:17;;;;:::i;:::-;37875:9;:29;;;;37656:256:::0;:::o;32433:39::-;;;;;;;;;;;;;:::o;31736:35::-;;;;:::o;36868:497::-;36976:4;1041:12;:10;:12::i;:::-;1030:23;;:7;:5;:7::i;:::-;:23;;;1022:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37055:6:::1;37050:1;37034:13;:11;:13::i;:::-;:17;;;;:::i;:::-;37033:28;;;;:::i;:::-;37020:9;:41;;36998:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;37210:4;37205:1;37189:13;:11;:13::i;:::-;:17;;;;:::i;:::-;37188:26;;;;:::i;:::-;37175:9;:39;;37153:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;37326:9;37305:18;:30;;;;37353:4;37346:11;;36868:497:::0;;;:::o;32481:27::-;;;;:::o;10095:151::-;10184:7;10211:11;:18;10223:5;10211:18;;;;;;;;;;;;;;;:27;10230:7;10211:27;;;;;;;;;;;;;;;;10204:34;;10095:151;;;;:::o;31778:33::-;;;;:::o;36663:135::-;36723:4;1041:12;:10;:12::i;:::-;1030:23;;:7;:5;:7::i;:::-;:23;;;1022:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36763:5:::1;36740:20;;:28;;;;;;;;;;;;;;;;;;36786:4;36779:11;;36663:135:::0;:::o;32552:30::-;;;;:::o;1719:201::-;1041:12;:10;:12::i;:::-;1030:23;;:7;:5;:7::i;:::-;:23;;;1022:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1828:1:::1;1808:22;;:8;:22;;::::0;1800:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1884:28;1903:8;1884:18;:28::i;:::-;1719:201:::0;:::o;32695:31::-;;;;:::o;31818:24::-;;;;:::o;184:98::-;237:7;264:10;257:17;;184:98;:::o;16347:380::-;16500:1;16483:19;;:5;:19;;;16475:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16581:1;16562:21;;:7;:21;;;16554:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16665:6;16635:11;:18;16647:5;16635:18;;;;;;;;;;;;;;;:27;16654:7;16635:27;;;;;;;;;;;;;;;:36;;;;16703:7;16687:32;;16696:5;16687:32;;;16712:6;16687:32;;;;;;:::i;:::-;;;;;;;;16347:380;;;:::o;40404:5011::-;40552:1;40536:18;;:4;:18;;;40528:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40629:1;40615:16;;:2;:16;;;40607:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;40698:1;40688:6;:11;40684:93;;40716:28;40732:4;40738:2;40742:1;40716:15;:28::i;:::-;40759:7;;40684:93;40793:14;;;;;;;;;;;40789:2487;;;40854:7;:5;:7::i;:::-;40846:15;;:4;:15;;;;:49;;;;;40888:7;:5;:7::i;:::-;40882:13;;:2;:13;;;;40846:49;:86;;;;;40930:1;40916:16;;:2;:16;;;;40846:86;:128;;;;;40967:6;40953:21;;:2;:21;;;;40846:128;:158;;;;;40996:8;;;;;;;;;;;40995:9;40846:158;40824:2441;;;41044:13;;;;;;;;;;;41039:223;;41116:19;:25;41136:4;41116:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;41145:19;:23;41165:2;41145:23;;;;;;;;;;;;;;;;;;;;;;;;;41116:52;41082:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;41039:223;41418:20;;;;;;;;;;;41414:641;;;41499:7;:5;:7::i;:::-;41493:13;;:2;:13;;;;:72;;;;;41549:15;41535:30;;:2;:30;;;;41493:72;:129;;;;;41608:13;41594:28;;:2;:28;;;;41493:129;41463:573;;;41786:12;41711:28;:39;41740:9;41711:39;;;;;;;;;;;;;;;;:87;41673:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;42000:12;41958:28;:39;41987:9;41958:39;;;;;;;;;;;;;;;:54;;;;41463:573;41414:641;42129:25;:31;42155:4;42129:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;42186:31;:35;42218:2;42186:35;;;;;;;;;;;;;;;;;;;;;;;;;42185:36;42129:92;42103:1147;;;42308:20;;42298:6;:30;;42264:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;42516:9;;42499:13;42509:2;42499:9;:13::i;:::-;42490:6;:22;;;;:::i;:::-;:35;;42456:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;42103:1147;;;42694:25;:29;42720:2;42694:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;42749:31;:37;42781:4;42749:37;;;;;;;;;;;;;;;;;;;;;;;;;42748:38;42694:92;42668:582;;;42873:20;;42863:6;:30;;42829:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;42668:582;;;43030:31;:35;43062:2;43030:35;;;;;;;;;;;;;;;;;;;;;;;;;43025:225;;43150:9;;43133:13;43143:2;43133:9;:13::i;:::-;43124:6;:22;;;;:::i;:::-;:35;;43090:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43025:225;42668:582;42103:1147;40824:2441;40789:2487;43288:28;43319:24;43337:4;43319:9;:24::i;:::-;43288:55;;43356:12;43395:18;;43371:20;:42;;43356:57;;43444:7;:35;;;;;43468:11;;;;;;;;;;;43444:35;:61;;;;;43497:8;;;;;;;;;;;43496:9;43444:61;:110;;;;;43523:25;:31;43549:4;43523:31;;;;;;;;;;;;;;;;;;;;;;;;;43522:32;43444:110;:153;;;;;43572:19;:25;43592:4;43572:25;;;;;;;;;;;;;;;;;;;;;;;;;43571:26;43444:153;:194;;;;;43615:19;:23;43635:2;43615:23;;;;;;;;;;;;;;;;;;;;;;;;;43614:24;43444:194;43426:326;;;43676:4;43665:8;;:15;;;;;;;;;;;;;;;;;;43697:10;:8;:10::i;:::-;43735:5;43724:8;;:16;;;;;;;;;;;;;;;;;;43426:326;43783:8;;;;;;;;;;;43782:9;:55;;;;;43808:25;:29;43834:2;43808:29;;;;;;;;;;;;;;;;;;;;;;;;;43782:55;:85;;;;;43854:13;;;;;;;;;;;43782:85;:153;;;;;43920:15;;43903:14;;:32;;;;:::i;:::-;43884:15;:51;;43782:153;:196;;;;;43953:19;:25;43973:4;43953:25;;;;;;;;;;;;;;;;;;;;;;;;;43952:26;43782:196;43764:282;;;44005:29;:27;:29::i;:::-;;43764:282;44058:12;44074:8;;;;;;;;;;;44073:9;44058:24;;44184:19;:25;44204:4;44184:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;44213:19;:23;44233:2;44213:23;;;;;;;;;;;;;;;;;;;;;;;;;44184:52;44180:100;;;44263:5;44253:15;;44180:100;44292:12;44397:7;44393:969;;;44449:25;:29;44475:2;44449:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;44498:1;44482:13;;:17;44449:50;44445:768;;;44527:34;44557:3;44527:25;44538:13;;44527:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;44520:41;;44630:13;;44610:16;;44603:4;:23;;;;:::i;:::-;44602:41;;;;:::i;:::-;44580:18;;:63;;;;;;;:::i;:::-;;;;;;;;44700:13;;44686:10;;44679:4;:17;;;;:::i;:::-;44678:35;;;;:::i;:::-;44662:12;;:51;;;;;;;:::i;:::-;;;;;;;;44782:13;;44762:16;;44755:4;:23;;;;:::i;:::-;44754:41;;;;:::i;:::-;44732:18;;:63;;;;;;;:::i;:::-;;;;;;;;44445:768;;;44857:25;:31;44883:4;44857:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;44907:1;44892:12;;:16;44857:51;44853:360;;;44936:33;44965:3;44936:24;44947:12;;44936:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;44929:40;;45037:12;;45018:15;;45011:4;:22;;;;:::i;:::-;45010:39;;;;:::i;:::-;44988:18;;:61;;;;;;;:::i;:::-;;;;;;;;45105:12;;45092:9;;45085:4;:16;;;;:::i;:::-;45084:33;;;;:::i;:::-;45068:12;;:49;;;;;;;:::i;:::-;;;;;;;;45185:12;;45166:15;;45159:4;:22;;;;:::i;:::-;45158:39;;;;:::i;:::-;45136:18;;:61;;;;;;;:::i;:::-;;;;;;;;44853:360;44445:768;45240:1;45233:4;:8;45229:91;;;45262:42;45278:4;45292;45299;45262:15;:42::i;:::-;45229:91;45346:4;45336:14;;;;;:::i;:::-;;;44393:969;45374:33;45390:4;45396:2;45400:6;45374:15;:33::i;:::-;40517:4898;;;;40404:5011;;;;:::o;2080:191::-;2154:16;2173:6;;;;;;;;;;;2154:25;;2199:8;2190:6;;:17;;;;;;;;;;;;;;;;;;2254:8;2223:40;;2244:8;2223:40;;;;;;;;;;;;2143:128;2080:191;:::o;39620:188::-;39737:5;39703:25;:31;39729:4;39703:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;39794:5;39760:40;;39788:4;39760:40;;;;;;;;;;;;39620:188;;:::o;13566:733::-;13724:1;13706:20;;:6;:20;;;13698:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;13808:1;13787:23;;:9;:23;;;13779:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13863:47;13884:6;13892:9;13903:6;13863:20;:47::i;:::-;13923:21;13947:9;:17;13957:6;13947:17;;;;;;;;;;;;;;;;13923:41;;14000:6;13983:13;:23;;13975:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;14121:6;14105:13;:22;14085:9;:17;14095:6;14085:17;;;;;;;;;;;;;;;:42;;;;14173:6;14149:9;:20;14159:9;14149:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;14214:9;14197:35;;14206:6;14197:35;;;14225:6;14197:35;;;;;;:::i;:::-;;;;;;;;14245:46;14265:6;14273:9;14284:6;14245:19;:46::i;:::-;13687:612;13566:733;;;:::o;46545:1754::-;46584:23;46610:24;46628:4;46610:9;:24::i;:::-;46584:50;;46645:25;46741:12;;46707:18;;46673;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;46645:108;;46764:12;46812:1;46793:15;:20;:46;;;;46838:1;46817:17;:22;46793:46;46789:85;;;46856:7;;;;;46789:85;46929:1;46908:18;;:22;;;;:::i;:::-;46890:15;:40;46886:113;;;46986:1;46965:18;;:22;;;;:::i;:::-;46947:40;;46886:113;47060:23;47173:1;47140:17;47105:18;;47087:15;:36;;;;:::i;:::-;47086:71;;;;:::i;:::-;:88;;;;:::i;:::-;47060:114;;47185:26;47214:36;47234:15;47214;:19;;:36;;;;:::i;:::-;47185:65;;47263:25;47291:21;47263:49;;47325:36;47342:18;47325:16;:36::i;:::-;47374:18;47395:44;47421:17;47395:21;:25;;:44;;;;:::i;:::-;47374:65;;47452:23;47478:81;47531:17;47478:34;47493:18;;47478:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;47452:107;;47570:17;47590:51;47623:17;47590:28;47605:12;;47590:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;47570:71;;47654:23;47711:9;47693:15;47680:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;47654:66;;47754:1;47733:18;:22;;;;47787:1;47766:18;:22;;;;47814:1;47799:12;:16;;;;47850:9;;;;;;;;;;;47842:23;;47873:9;47842:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47828:59;;;;;47922:1;47904:15;:19;:42;;;;;47945:1;47927:15;:19;47904:42;47900:278;;;47963:46;47976:15;47993;47963:12;:46::i;:::-;48029:137;48062:18;48099:15;48133:18;;48029:137;;;;;;;;:::i;:::-;;;;;;;;47900:278;48212:15;;;;;;;;;;;48204:29;;48255:21;48204:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48190:101;;;;;46573:1726;;;;;;;;;;46545:1754;:::o;48307:788::-;48364:4;48398:15;48381:14;:32;;;;48468:28;48499:4;:14;;;48514:13;48499:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48468:60;;48578:20;48601:77;48662:5;48601:42;48626:16;;48601:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;48578:100;;48798:1;48783:12;:16;48779:110;;;48816:61;48832:13;48855:6;48864:12;48816:15;:61::i;:::-;48779:110;48964:19;49001:13;48964:51;;49026:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49053:12;;;;;;;;;;49083:4;49076:11;;;;;48307:788;:::o;21800:98::-;21858:7;21889:1;21885;:5;;;;:::i;:::-;21878:12;;21800:98;;;;:::o;22199:::-;22257:7;22288:1;22284;:5;;;;:::i;:::-;22277:12;;22199:98;;;;:::o;17327:125::-;;;;:::o;18056:124::-;;;;:::o;21443:98::-;21501:7;21532:1;21528;:5;;;;:::i;:::-;21521:12;;21443:98;;;;:::o;45423:589::-;45549:21;45587:1;45573:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45549:40;;45618:4;45600;45605:1;45600:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;45644:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45634:4;45639:1;45634:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;45679:62;45696:4;45711:15;45729:11;45679:8;:62::i;:::-;45780:15;:66;;;45861:11;45887:1;45931:4;45958;45978:15;45780:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45478:534;45423:589;:::o;46020:517::-;46168:62;46185:4;46200:15;46218:11;46168:8;:62::i;:::-;46273:15;:31;;;46312:9;46345:4;46365:11;46391:1;46434;31620:6;46503:15;46273:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;46020:517;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:60::-;3809:3;3830:5;3823:12;;3781:60;;;:::o;3847:142::-;3897:9;3930:53;3948:34;3957:24;3975:5;3957:24;:::i;:::-;3948:34;:::i;:::-;3930:53;:::i;:::-;3917:66;;3847:142;;;:::o;3995:126::-;4045:9;4078:37;4109:5;4078:37;:::i;:::-;4065:50;;3995:126;;;:::o;4127:153::-;4204:9;4237:37;4268:5;4237:37;:::i;:::-;4224:50;;4127:153;;;:::o;4286:185::-;4400:64;4458:5;4400:64;:::i;:::-;4395:3;4388:77;4286:185;;:::o;4477:276::-;4597:4;4635:2;4624:9;4620:18;4612:26;;4648:98;4743:1;4732:9;4728:17;4719:6;4648:98;:::i;:::-;4477:276;;;;:::o;4759:118::-;4846:24;4864:5;4846:24;:::i;:::-;4841:3;4834:37;4759:118;;:::o;4883:222::-;4976:4;5014:2;5003:9;4999:18;4991:26;;5027:71;5095:1;5084:9;5080:17;5071:6;5027:71;:::i;:::-;4883:222;;;;:::o;5111:329::-;5170:6;5219:2;5207:9;5198:7;5194:23;5190:32;5187:119;;;5225:79;;:::i;:::-;5187:119;5345:1;5370:53;5415:7;5406:6;5395:9;5391:22;5370:53;:::i;:::-;5360:63;;5316:117;5111:329;;;;:::o;5446:619::-;5523:6;5531;5539;5588:2;5576:9;5567:7;5563:23;5559:32;5556:119;;;5594:79;;:::i;:::-;5556:119;5714:1;5739:53;5784:7;5775:6;5764:9;5760:22;5739:53;:::i;:::-;5729:63;;5685:117;5841:2;5867:53;5912:7;5903:6;5892:9;5888:22;5867:53;:::i;:::-;5857:63;;5812:118;5969:2;5995:53;6040:7;6031:6;6020:9;6016:22;5995:53;:::i;:::-;5985:63;;5940:118;5446:619;;;;;:::o;6071:118::-;6158:24;6176:5;6158:24;:::i;:::-;6153:3;6146:37;6071:118;;:::o;6195:222::-;6288:4;6326:2;6315:9;6311:18;6303:26;;6339:71;6407:1;6396:9;6392:17;6383:6;6339:71;:::i;:::-;6195:222;;;;:::o;6423:86::-;6458:7;6498:4;6491:5;6487:16;6476:27;;6423:86;;;:::o;6515:112::-;6598:22;6614:5;6598:22;:::i;:::-;6593:3;6586:35;6515:112;;:::o;6633:214::-;6722:4;6760:2;6749:9;6745:18;6737:26;;6773:67;6837:1;6826:9;6822:17;6813:6;6773:67;:::i;:::-;6633:214;;;;:::o;6853:116::-;6923:21;6938:5;6923:21;:::i;:::-;6916:5;6913:32;6903:60;;6959:1;6956;6949:12;6903:60;6853:116;:::o;6975:133::-;7018:5;7056:6;7043:20;7034:29;;7072:30;7096:5;7072:30;:::i;:::-;6975:133;;;;:::o;7114:468::-;7179:6;7187;7236:2;7224:9;7215:7;7211:23;7207:32;7204:119;;;7242:79;;:::i;:::-;7204:119;7362:1;7387:53;7432:7;7423:6;7412:9;7408:22;7387:53;:::i;:::-;7377:63;;7333:117;7489:2;7515:50;7557:7;7548:6;7537:9;7533:22;7515:50;:::i;:::-;7505:60;;7460:115;7114:468;;;;;:::o;7588:619::-;7665:6;7673;7681;7730:2;7718:9;7709:7;7705:23;7701:32;7698:119;;;7736:79;;:::i;:::-;7698:119;7856:1;7881:53;7926:7;7917:6;7906:9;7902:22;7881:53;:::i;:::-;7871:63;;7827:117;7983:2;8009:53;8054:7;8045:6;8034:9;8030:22;8009:53;:::i;:::-;7999:63;;7954:118;8111:2;8137:53;8182:7;8173:6;8162:9;8158:22;8137:53;:::i;:::-;8127:63;;8082:118;7588:619;;;;;:::o;8213:323::-;8269:6;8318:2;8306:9;8297:7;8293:23;8289:32;8286:119;;;8324:79;;:::i;:::-;8286:119;8444:1;8469:50;8511:7;8502:6;8491:9;8487:22;8469:50;:::i;:::-;8459:60;;8415:114;8213:323;;;;:::o;8542:474::-;8610:6;8618;8667:2;8655:9;8646:7;8642:23;8638:32;8635:119;;;8673:79;;:::i;:::-;8635:119;8793:1;8818:53;8863:7;8854:6;8843:9;8839:22;8818:53;:::i;:::-;8808:63;;8764:117;8920:2;8946:53;8991:7;8982:6;8971:9;8967:22;8946:53;:::i;:::-;8936:63;;8891:118;8542:474;;;;;:::o;9022:180::-;9070:77;9067:1;9060:88;9167:4;9164:1;9157:15;9191:4;9188:1;9181:15;9208:320;9252:6;9289:1;9283:4;9279:12;9269:22;;9336:1;9330:4;9326:12;9357:18;9347:81;;9413:4;9405:6;9401:17;9391:27;;9347:81;9475:2;9467:6;9464:14;9444:18;9441:38;9438:84;;9494:18;;:::i;:::-;9438:84;9259:269;9208:320;;;:::o;9534:182::-;9674:34;9670:1;9662:6;9658:14;9651:58;9534:182;:::o;9722:366::-;9864:3;9885:67;9949:2;9944:3;9885:67;:::i;:::-;9878:74;;9961:93;10050:3;9961:93;:::i;:::-;10079:2;10074:3;10070:12;10063:19;;9722:366;;;:::o;10094:419::-;10260:4;10298:2;10287:9;10283:18;10275:26;;10347:9;10341:4;10337:20;10333:1;10322:9;10318:17;10311:47;10375:131;10501:4;10375:131;:::i;:::-;10367:139;;10094:419;;;:::o;10519:180::-;10567:77;10564:1;10557:88;10664:4;10661:1;10654:15;10688:4;10685:1;10678:15;10705:410;10745:7;10768:20;10786:1;10768:20;:::i;:::-;10763:25;;10802:20;10820:1;10802:20;:::i;:::-;10797:25;;10857:1;10854;10850:9;10879:30;10897:11;10879:30;:::i;:::-;10868:41;;11058:1;11049:7;11045:15;11042:1;11039:22;11019:1;11012:9;10992:83;10969:139;;11088:18;;:::i;:::-;10969:139;10753:362;10705:410;;;;:::o;11121:180::-;11169:77;11166:1;11159:88;11266:4;11263:1;11256:15;11290:4;11287:1;11280:15;11307:185;11347:1;11364:20;11382:1;11364:20;:::i;:::-;11359:25;;11398:20;11416:1;11398:20;:::i;:::-;11393:25;;11437:1;11427:35;;11442:18;;:::i;:::-;11427:35;11484:1;11481;11477:9;11472:14;;11307:185;;;;:::o;11498:234::-;11638:34;11634:1;11626:6;11622:14;11615:58;11707:17;11702:2;11694:6;11690:15;11683:42;11498:234;:::o;11738:366::-;11880:3;11901:67;11965:2;11960:3;11901:67;:::i;:::-;11894:74;;11977:93;12066:3;11977:93;:::i;:::-;12095:2;12090:3;12086:12;12079:19;;11738:366;;;:::o;12110:419::-;12276:4;12314:2;12303:9;12299:18;12291:26;;12363:9;12357:4;12353:20;12349:1;12338:9;12334:17;12327:47;12391:131;12517:4;12391:131;:::i;:::-;12383:139;;12110:419;;;:::o;12535:227::-;12675:34;12671:1;12663:6;12659:14;12652:58;12744:10;12739:2;12731:6;12727:15;12720:35;12535:227;:::o;12768:366::-;12910:3;12931:67;12995:2;12990:3;12931:67;:::i;:::-;12924:74;;13007:93;13096:3;13007:93;:::i;:::-;13125:2;13120:3;13116:12;13109:19;;12768:366;;;:::o;13140:419::-;13306:4;13344:2;13333:9;13329:18;13321:26;;13393:9;13387:4;13383:20;13379:1;13368:9;13364:17;13357:47;13421:131;13547:4;13421:131;:::i;:::-;13413:139;;13140:419;;;:::o;13565:191::-;13605:3;13624:20;13642:1;13624:20;:::i;:::-;13619:25;;13658:20;13676:1;13658:20;:::i;:::-;13653:25;;13701:1;13698;13694:9;13687:16;;13722:3;13719:1;13716:10;13713:36;;;13729:18;;:::i;:::-;13713:36;13565:191;;;;:::o;13762:178::-;13902:30;13898:1;13890:6;13886:14;13879:54;13762:178;:::o;13946:366::-;14088:3;14109:67;14173:2;14168:3;14109:67;:::i;:::-;14102:74;;14185:93;14274:3;14185:93;:::i;:::-;14303:2;14298:3;14294:12;14287:19;;13946:366;;;:::o;14318:419::-;14484:4;14522:2;14511:9;14507:18;14499:26;;14571:9;14565:4;14561:20;14557:1;14546:9;14542:17;14535:47;14599:131;14725:4;14599:131;:::i;:::-;14591:139;;14318:419;;;:::o;14743:244::-;14883:34;14879:1;14871:6;14867:14;14860:58;14952:27;14947:2;14939:6;14935:15;14928:52;14743:244;:::o;14993:366::-;15135:3;15156:67;15220:2;15215:3;15156:67;:::i;:::-;15149:74;;15232:93;15321:3;15232:93;:::i;:::-;15350:2;15345:3;15341:12;15334:19;;14993:366;;;:::o;15365:419::-;15531:4;15569:2;15558:9;15554:18;15546:26;;15618:9;15612:4;15608:20;15604:1;15593:9;15589:17;15582:47;15646:131;15772:4;15646:131;:::i;:::-;15638:139;;15365:419;;;:::o;15790:224::-;15930:34;15926:1;15918:6;15914:14;15907:58;15999:7;15994:2;15986:6;15982:15;15975:32;15790:224;:::o;16020:366::-;16162:3;16183:67;16247:2;16242:3;16183:67;:::i;:::-;16176:74;;16259:93;16348:3;16259:93;:::i;:::-;16377:2;16372:3;16368:12;16361:19;;16020:366;;;:::o;16392:419::-;16558:4;16596:2;16585:9;16581:18;16573:26;;16645:9;16639:4;16635:20;16631:1;16620:9;16616:17;16609:47;16673:131;16799:4;16673:131;:::i;:::-;16665:139;;16392:419;;;:::o;16817:223::-;16957:34;16953:1;16945:6;16941:14;16934:58;17026:6;17021:2;17013:6;17009:15;17002:31;16817:223;:::o;17046:366::-;17188:3;17209:67;17273:2;17268:3;17209:67;:::i;:::-;17202:74;;17285:93;17374:3;17285:93;:::i;:::-;17403:2;17398:3;17394:12;17387:19;;17046:366;;;:::o;17418:419::-;17584:4;17622:2;17611:9;17607:18;17599:26;;17671:9;17665:4;17661:20;17657:1;17646:9;17642:17;17635:47;17699:131;17825:4;17699:131;:::i;:::-;17691:139;;17418:419;;;:::o;17843:240::-;17983:34;17979:1;17971:6;17967:14;17960:58;18052:23;18047:2;18039:6;18035:15;18028:48;17843:240;:::o;18089:366::-;18231:3;18252:67;18316:2;18311:3;18252:67;:::i;:::-;18245:74;;18328:93;18417:3;18328:93;:::i;:::-;18446:2;18441:3;18437:12;18430:19;;18089:366;;;:::o;18461:419::-;18627:4;18665:2;18654:9;18650:18;18642:26;;18714:9;18708:4;18704:20;18700:1;18689:9;18685:17;18678:47;18742:131;18868:4;18742:131;:::i;:::-;18734:139;;18461:419;;;:::o;18886:239::-;19026:34;19022:1;19014:6;19010:14;19003:58;19095:22;19090:2;19082:6;19078:15;19071:47;18886:239;:::o;19131:366::-;19273:3;19294:67;19358:2;19353:3;19294:67;:::i;:::-;19287:74;;19370:93;19459:3;19370:93;:::i;:::-;19488:2;19483:3;19479:12;19472:19;;19131:366;;;:::o;19503:419::-;19669:4;19707:2;19696:9;19692:18;19684:26;;19756:9;19750:4;19746:20;19742:1;19731:9;19727:17;19720:47;19784:131;19910:4;19784:131;:::i;:::-;19776:139;;19503:419;;;:::o;19928:225::-;20068:34;20064:1;20056:6;20052:14;20045:58;20137:8;20132:2;20124:6;20120:15;20113:33;19928:225;:::o;20159:366::-;20301:3;20322:67;20386:2;20381:3;20322:67;:::i;:::-;20315:74;;20398:93;20487:3;20398:93;:::i;:::-;20516:2;20511:3;20507:12;20500:19;;20159:366;;;:::o;20531:419::-;20697:4;20735:2;20724:9;20720:18;20712:26;;20784:9;20778:4;20774:20;20770:1;20759:9;20755:17;20748:47;20812:131;20938:4;20812:131;:::i;:::-;20804:139;;20531:419;;;:::o;20956:223::-;21096:34;21092:1;21084:6;21080:14;21073:58;21165:6;21160:2;21152:6;21148:15;21141:31;20956:223;:::o;21185:366::-;21327:3;21348:67;21412:2;21407:3;21348:67;:::i;:::-;21341:74;;21424:93;21513:3;21424:93;:::i;:::-;21542:2;21537:3;21533:12;21526:19;;21185:366;;;:::o;21557:419::-;21723:4;21761:2;21750:9;21746:18;21738:26;;21810:9;21804:4;21800:20;21796:1;21785:9;21781:17;21774:47;21838:131;21964:4;21838:131;:::i;:::-;21830:139;;21557:419;;;:::o;21982:221::-;22122:34;22118:1;22110:6;22106:14;22099:58;22191:4;22186:2;22178:6;22174:15;22167:29;21982:221;:::o;22209:366::-;22351:3;22372:67;22436:2;22431:3;22372:67;:::i;:::-;22365:74;;22448:93;22537:3;22448:93;:::i;:::-;22566:2;22561:3;22557:12;22550:19;;22209:366;;;:::o;22581:419::-;22747:4;22785:2;22774:9;22770:18;22762:26;;22834:9;22828:4;22824:20;22820:1;22809:9;22805:17;22798:47;22862:131;22988:4;22862:131;:::i;:::-;22854:139;;22581:419;;;:::o;23006:224::-;23146:34;23142:1;23134:6;23130:14;23123:58;23215:7;23210:2;23202:6;23198:15;23191:32;23006:224;:::o;23236:366::-;23378:3;23399:67;23463:2;23458:3;23399:67;:::i;:::-;23392:74;;23475:93;23564:3;23475:93;:::i;:::-;23593:2;23588:3;23584:12;23577:19;;23236:366;;;:::o;23608:419::-;23774:4;23812:2;23801:9;23797:18;23789:26;;23861:9;23855:4;23851:20;23847:1;23836:9;23832:17;23825:47;23889:131;24015:4;23889:131;:::i;:::-;23881:139;;23608:419;;;:::o;24033:222::-;24173:34;24169:1;24161:6;24157:14;24150:58;24242:5;24237:2;24229:6;24225:15;24218:30;24033:222;:::o;24261:366::-;24403:3;24424:67;24488:2;24483:3;24424:67;:::i;:::-;24417:74;;24500:93;24589:3;24500:93;:::i;:::-;24618:2;24613:3;24609:12;24602:19;;24261:366;;;:::o;24633:419::-;24799:4;24837:2;24826:9;24822:18;24814:26;;24886:9;24880:4;24876:20;24872:1;24861:9;24857:17;24850:47;24914:131;25040:4;24914:131;:::i;:::-;24906:139;;24633:419;;;:::o;25058:172::-;25198:24;25194:1;25186:6;25182:14;25175:48;25058:172;:::o;25236:366::-;25378:3;25399:67;25463:2;25458:3;25399:67;:::i;:::-;25392:74;;25475:93;25564:3;25475:93;:::i;:::-;25593:2;25588:3;25584:12;25577:19;;25236:366;;;:::o;25608:419::-;25774:4;25812:2;25801:9;25797:18;25789:26;;25861:9;25855:4;25851:20;25847:1;25836:9;25832:17;25825:47;25889:131;26015:4;25889:131;:::i;:::-;25881:139;;25608:419;;;:::o;26033:297::-;26173:34;26169:1;26161:6;26157:14;26150:58;26242:34;26237:2;26229:6;26225:15;26218:59;26311:11;26306:2;26298:6;26294:15;26287:36;26033:297;:::o;26336:366::-;26478:3;26499:67;26563:2;26558:3;26499:67;:::i;:::-;26492:74;;26575:93;26664:3;26575:93;:::i;:::-;26693:2;26688:3;26684:12;26677:19;;26336:366;;;:::o;26708:419::-;26874:4;26912:2;26901:9;26897:18;26889:26;;26961:9;26955:4;26951:20;26947:1;26936:9;26932:17;26925:47;26989:131;27115:4;26989:131;:::i;:::-;26981:139;;26708:419;;;:::o;27133:240::-;27273:34;27269:1;27261:6;27257:14;27250:58;27342:23;27337:2;27329:6;27325:15;27318:48;27133:240;:::o;27379:366::-;27521:3;27542:67;27606:2;27601:3;27542:67;:::i;:::-;27535:74;;27618:93;27707:3;27618:93;:::i;:::-;27736:2;27731:3;27727:12;27720:19;;27379:366;;;:::o;27751:419::-;27917:4;27955:2;27944:9;27940:18;27932:26;;28004:9;27998:4;27994:20;27990:1;27979:9;27975:17;27968:47;28032:131;28158:4;28032:131;:::i;:::-;28024:139;;27751:419;;;:::o;28176:169::-;28316:21;28312:1;28304:6;28300:14;28293:45;28176:169;:::o;28351:366::-;28493:3;28514:67;28578:2;28573:3;28514:67;:::i;:::-;28507:74;;28590:93;28679:3;28590:93;:::i;:::-;28708:2;28703:3;28699:12;28692:19;;28351:366;;;:::o;28723:419::-;28889:4;28927:2;28916:9;28912:18;28904:26;;28976:9;28970:4;28966:20;28962:1;28951:9;28947:17;28940:47;29004:131;29130:4;29004:131;:::i;:::-;28996:139;;28723:419;;;:::o;29148:241::-;29288:34;29284:1;29276:6;29272:14;29265:58;29357:24;29352:2;29344:6;29340:15;29333:49;29148:241;:::o;29395:366::-;29537:3;29558:67;29622:2;29617:3;29558:67;:::i;:::-;29551:74;;29634:93;29723:3;29634:93;:::i;:::-;29752:2;29747:3;29743:12;29736:19;;29395:366;;;:::o;29767:419::-;29933:4;29971:2;29960:9;29956:18;29948:26;;30020:9;30014:4;30010:20;30006:1;29995:9;29991:17;29984:47;30048:131;30174:4;30048:131;:::i;:::-;30040:139;;29767:419;;;:::o;30192:194::-;30232:4;30252:20;30270:1;30252:20;:::i;:::-;30247:25;;30286:20;30304:1;30286:20;:::i;:::-;30281:25;;30330:1;30327;30323:9;30315:17;;30354:1;30348:4;30345:11;30342:37;;;30359:18;;:::i;:::-;30342:37;30192:194;;;;:::o;30392:225::-;30532:34;30528:1;30520:6;30516:14;30509:58;30601:8;30596:2;30588:6;30584:15;30577:33;30392:225;:::o;30623:366::-;30765:3;30786:67;30850:2;30845:3;30786:67;:::i;:::-;30779:74;;30862:93;30951:3;30862:93;:::i;:::-;30980:2;30975:3;30971:12;30964:19;;30623:366;;;:::o;30995:419::-;31161:4;31199:2;31188:9;31184:18;31176:26;;31248:9;31242:4;31238:20;31234:1;31223:9;31219:17;31212:47;31276:131;31402:4;31276:131;:::i;:::-;31268:139;;30995:419;;;:::o;31420:147::-;31521:11;31558:3;31543:18;;31420:147;;;;:::o;31573:114::-;;:::o;31693:398::-;31852:3;31873:83;31954:1;31949:3;31873:83;:::i;:::-;31866:90;;31965:93;32054:3;31965:93;:::i;:::-;32083:1;32078:3;32074:11;32067:18;;31693:398;;;:::o;32097:379::-;32281:3;32303:147;32446:3;32303:147;:::i;:::-;32296:154;;32467:3;32460:10;;32097:379;;;:::o;32482:442::-;32631:4;32669:2;32658:9;32654:18;32646:26;;32682:71;32750:1;32739:9;32735:17;32726:6;32682:71;:::i;:::-;32763:72;32831:2;32820:9;32816:18;32807:6;32763:72;:::i;:::-;32845;32913:2;32902:9;32898:18;32889:6;32845:72;:::i;:::-;32482:442;;;;;;:::o;32930:143::-;32987:5;33018:6;33012:13;33003:22;;33034:33;33061:5;33034:33;:::i;:::-;32930:143;;;;:::o;33079:351::-;33149:6;33198:2;33186:9;33177:7;33173:23;33169:32;33166:119;;;33204:79;;:::i;:::-;33166:119;33324:1;33349:64;33405:7;33396:6;33385:9;33381:22;33349:64;:::i;:::-;33339:74;;33295:128;33079:351;;;;:::o;33436:180::-;33484:77;33481:1;33474:88;33581:4;33578:1;33571:15;33605:4;33602:1;33595:15;33622:180;33670:77;33667:1;33660:88;33767:4;33764:1;33757:15;33791:4;33788:1;33781:15;33808:143;33865:5;33896:6;33890:13;33881:22;;33912:33;33939:5;33912:33;:::i;:::-;33808:143;;;;:::o;33957:351::-;34027:6;34076:2;34064:9;34055:7;34051:23;34047:32;34044:119;;;34082:79;;:::i;:::-;34044:119;34202:1;34227:64;34283:7;34274:6;34263:9;34259:22;34227:64;:::i;:::-;34217:74;;34173:128;33957:351;;;;:::o;34314:85::-;34359:7;34388:5;34377:16;;34314:85;;;:::o;34405:158::-;34463:9;34496:61;34514:42;34523:32;34549:5;34523:32;:::i;:::-;34514:42;:::i;:::-;34496:61;:::i;:::-;34483:74;;34405:158;;;:::o;34569:147::-;34664:45;34703:5;34664:45;:::i;:::-;34659:3;34652:58;34569:147;;:::o;34722:114::-;34789:6;34823:5;34817:12;34807:22;;34722:114;;;:::o;34842:184::-;34941:11;34975:6;34970:3;34963:19;35015:4;35010:3;35006:14;34991:29;;34842:184;;;;:::o;35032:132::-;35099:4;35122:3;35114:11;;35152:4;35147:3;35143:14;35135:22;;35032:132;;;:::o;35170:108::-;35247:24;35265:5;35247:24;:::i;:::-;35242:3;35235:37;35170:108;;:::o;35284:179::-;35353:10;35374:46;35416:3;35408:6;35374:46;:::i;:::-;35452:4;35447:3;35443:14;35429:28;;35284:179;;;;:::o;35469:113::-;35539:4;35571;35566:3;35562:14;35554:22;;35469:113;;;:::o;35618:732::-;35737:3;35766:54;35814:5;35766:54;:::i;:::-;35836:86;35915:6;35910:3;35836:86;:::i;:::-;35829:93;;35946:56;35996:5;35946:56;:::i;:::-;36025:7;36056:1;36041:284;36066:6;36063:1;36060:13;36041:284;;;36142:6;36136:13;36169:63;36228:3;36213:13;36169:63;:::i;:::-;36162:70;;36255:60;36308:6;36255:60;:::i;:::-;36245:70;;36101:224;36088:1;36085;36081:9;36076:14;;36041:284;;;36045:14;36341:3;36334:10;;35742:608;;;35618:732;;;;:::o;36356:831::-;36619:4;36657:3;36646:9;36642:19;36634:27;;36671:71;36739:1;36728:9;36724:17;36715:6;36671:71;:::i;:::-;36752:80;36828:2;36817:9;36813:18;36804:6;36752:80;:::i;:::-;36879:9;36873:4;36869:20;36864:2;36853:9;36849:18;36842:48;36907:108;37010:4;37001:6;36907:108;:::i;:::-;36899:116;;37025:72;37093:2;37082:9;37078:18;37069:6;37025:72;:::i;:::-;37107:73;37175:3;37164:9;37160:19;37151:6;37107:73;:::i;:::-;36356:831;;;;;;;;:::o;37193:807::-;37442:4;37480:3;37469:9;37465:19;37457:27;;37494:71;37562:1;37551:9;37547:17;37538:6;37494:71;:::i;:::-;37575:72;37643:2;37632:9;37628:18;37619:6;37575:72;:::i;:::-;37657:80;37733:2;37722:9;37718:18;37709:6;37657:80;:::i;:::-;37747;37823:2;37812:9;37808:18;37799:6;37747:80;:::i;:::-;37837:73;37905:3;37894:9;37890:19;37881:6;37837:73;:::i;:::-;37920;37988:3;37977:9;37973:19;37964:6;37920:73;:::i;:::-;37193:807;;;;;;;;;:::o;38006:663::-;38094:6;38102;38110;38159:2;38147:9;38138:7;38134:23;38130:32;38127:119;;;38165:79;;:::i;:::-;38127:119;38285:1;38310:64;38366:7;38357:6;38346:9;38342:22;38310:64;:::i;:::-;38300:74;;38256:128;38423:2;38449:64;38505:7;38496:6;38485:9;38481:22;38449:64;:::i;:::-;38439:74;;38394:129;38562:2;38588:64;38644:7;38635:6;38624:9;38620:22;38588:64;:::i;:::-;38578:74;;38533:129;38006:663;;;;;:::o

Swarm Source

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