ETH Price: $2,639.90 (-0.26%)

Token

Old Multi Chain Capital (OMCC)
 

Overview

Max Total Supply

1,000,000,000 OMCC

Holders

29

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
3,423,694.457336289524109852 OMCC

Value
$0.00
0x3e5768cd8e235f3a0751498330af620506e30e5e
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:
OldMultiChainCapital

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// File: OldMCC.sol

// MCC was revolutionary, we can't deny it, pioneering the concept of FaaS. 
// Unfortunately rogue dev fucked us up. We are here to bring back the 2021 vibes and the good MCC people.

// Twitter: https://twitter.com/OldMCCETH

// Telergam: t.me/OldMCC

// Medium: https://medium.com/@OldMultiChainCapital

pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0;
pragma experimental ABIEncoderV2;

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

/* pragma solidity ^0.8.0; */

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

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

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

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

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

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

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

    function decimals() external pure returns (uint8);

    function totalSupply() external view returns (uint256);

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

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

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

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

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

    function DOMAIN_SEPARATOR() external view returns (bytes32);

    function PERMIT_TYPEHASH() external pure returns (bytes32);

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

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

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

    function MINIMUM_LIQUIDITY() external pure returns (uint256);

    function factory() external view returns (address);

    function token0() external view returns (address);

    function token1() external view returns (address);

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

    function price0CumulativeLast() external view returns (uint256);

    function price1CumulativeLast() external view returns (uint256);

    function kLast() external view returns (uint256);

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

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

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

    function skim(address to) external;

    function sync() external;

    function initialize(address, address) external;
}

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

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

    function WETH() external pure returns (address);

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

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

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

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

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

////// src/
/* 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 OldMultiChainCapital is ERC20, Ownable {
    using SafeMath for uint256;

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

    bool private swapping;

    address public marketingWallet;
    address public devWallet;

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

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

    uint256 public manualBurnFrequency = 30 minutes;
    uint256 public lastManualLpBurnTime;

    bool public limitsInEffect = true;
    bool public tradingActive = 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 buyReflectionsFee;

    uint256 public sellTotalFees;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellReflectionsFee;

    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("Old Multi Chain Capital", "OMCC") {
        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 = 2;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyReflectionsFee = 2;

        uint256 _sellMarketingFee = 2;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellReflectionsFee = 2;

        uint256 totalSupply = 1_000_000_000 * 1e18;

        maxTransactionAmount = 20_000_000 * 1e18; // 100% from total supply maxTransactionAmountTxn
        maxWallet = 30_000_000 * 1e18; // 200% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet

        buyMarketingFee = _buyMarketingFee;
        buyLiquidityFee = _buyLiquidityFee;
        buyReflectionsFee = _buyReflectionsFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyReflectionsFee;

        sellMarketingFee = _sellMarketingFee;
        sellLiquidityFee = _sellLiquidityFee;
        sellReflectionsFee = _sellReflectionsFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellReflectionsFee;

        marketingWallet = address(0xbC6ACd373d75C92F2823BD90cb9d6eF0C2e8CC16); // set as marketing wallet
        devWallet = address(0xbC6ACd373d75C92F2823BD90cb9d6eF0C2e8CC16); // 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 {
        maxTransactionAmount = newNum * (10**18);
    }

    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {
        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 _ReflectionsFee
    ) external onlyOwner {
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyReflectionsFee = _ReflectionsFee;
        buyTotalFees = buyMarketingFee + buyLiquidityFee + buyReflectionsFee;
        require(buyTotalFees <= 25, "Must keep fees at 25% or less");
    }

    function updateSellFees(
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _ReflectionsFee
    ) external onlyOwner {
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellReflectionsFee = _ReflectionsFee;
        sellTotalFees = sellMarketingFee + sellLiquidityFee + sellReflectionsFee;
        require(sellTotalFees <= 25, "Must keep fees at 25% 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 * sellReflectionsFee) / 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 * buyReflectionsFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

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

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

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

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

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

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

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

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

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

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

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

        uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"buyReflectionsFee","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":[{"internalType":"uint256","name":"percent","type":"uint256"}],"name":"manualBurnLiquidityPairTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"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":"sellReflectionsFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_frequencyInSeconds","type":"uint256"},{"internalType":"uint256","name":"_percent","type":"uint256"},{"internalType":"bool","name":"_Enabled","type":"bool"}],"name":"setAutoLPBurnSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"_ReflectionsFee","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":"_ReflectionsFee","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"}]

60c06040526019600b556001600c60006101000a81548160ff021916908315150217905550610e10600d55610708600f556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff0219169083151502179055506001601360006101000a81548160ff021916908315150217905550348015620000a957600080fd5b506040518060400160405280601781526020017f4f6c64204d756c746920436861696e204361706974616c0000000000000000008152506040518060400160405280600481526020017f4f4d43430000000000000000000000000000000000000000000000000000000081525081600390805190602001906200012e92919062000b15565b5080600490805190602001906200014792919062000b15565b5050506200016a6200015e620005d560201b60201c565b620005dd60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905062000196816001620006a360201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000216573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023c919062000c2f565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620002a4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002ca919062000c2f565b6040518363ffffffff1660e01b8152600401620002e992919062000c72565b6020604051808303816000875af115801562000309573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200032f919062000c2f565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200037760a0516001620006a360201b60201c565b6200038c60a05160016200078d60201b60201c565b600060029050600080600290506000600290506000806002905060006b033b2e3c9fd0803ce800000090506a108b2a2c280290940000006008819055506a18d0bf423c03d8de000000600a81905550612710600582620003ed919062000cd8565b620003f9919062000d68565b60098190555086601581905550856016819055508460178190555060175460165460155462000429919062000da0565b62000435919062000da0565b6014819055508360198190555082601a8190555081601b81905550601b54601a5460195462000465919062000da0565b62000471919062000da0565b60188190555073bc6acd373d75c92f2823bd90cb9d6ef0c2e8cc16600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073bc6acd373d75c92f2823bd90cb9d6ef0c2e8cc16600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000543620005356200082e60201b60201c565b60016200085860201b60201c565b620005563060016200085860201b60201c565b6200056b61dead60016200085860201b60201c565b6200058d6200057f6200082e60201b60201c565b6001620006a360201b60201c565b620005a0306001620006a360201b60201c565b620005b561dead6001620006a360201b60201c565b620005c733826200099260201b60201c565b505050505050505062000fbf565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620006b3620005d560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006d96200082e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000732576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007299062000e5e565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000868620005d560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200088e6200082e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620008e7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008de9062000e5e565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000986919062000e9d565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009fc9062000f0a565b60405180910390fd5b62000a196000838362000b0b60201b60201c565b806002600082825462000a2d919062000da0565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000a84919062000da0565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000aeb919062000f3d565b60405180910390a362000b076000838362000b1060201b60201c565b5050565b505050565b505050565b82805462000b239062000f89565b90600052602060002090601f01602090048101928262000b47576000855562000b93565b82601f1062000b6257805160ff191683800117855562000b93565b8280016001018555821562000b93579182015b8281111562000b9257825182559160200191906001019062000b75565b5b50905062000ba2919062000ba6565b5090565b5b8082111562000bc157600081600090555060010162000ba7565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000bf78262000bca565b9050919050565b62000c098162000bea565b811462000c1557600080fd5b50565b60008151905062000c298162000bfe565b92915050565b60006020828403121562000c485762000c4762000bc5565b5b600062000c588482850162000c18565b91505092915050565b62000c6c8162000bea565b82525050565b600060408201905062000c89600083018562000c61565b62000c98602083018462000c61565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000ce58262000c9f565b915062000cf28362000c9f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d2e5762000d2d62000ca9565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000d758262000c9f565b915062000d828362000c9f565b92508262000d955762000d9462000d39565b5b828204905092915050565b600062000dad8262000c9f565b915062000dba8362000c9f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000df25762000df162000ca9565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e4660208362000dfd565b915062000e538262000e0e565b602082019050919050565b6000602082019050818103600083015262000e798162000e37565b9050919050565b60008115159050919050565b62000e978162000e80565b82525050565b600060208201905062000eb4600083018462000e8c565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ef2601f8362000dfd565b915062000eff8262000eba565b602082019050919050565b6000602082019050818103600083015262000f258162000ee3565b9050919050565b62000f378162000c9f565b82525050565b600060208201905062000f54600083018462000f2c565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000fa257607f821691505b6020821081141562000fb95762000fb862000f5a565b5b50919050565b60805160a0516159bc620010476000396000818161137701528181611b930152818161265b015281816127120152818161273f01528181612d8301528181613e8701528181613f400152613f6d015260008181610f9001528181612d2b015281816140e3015281816141c4015281816141eb0152818161428701526142ae01526159bc6000f3fe6080604052600436106103b15760003560e01c80638095d564116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e03578063f637434214610e2c578063f8b45b0514610e57578063fe72b27a14610e82576103b8565b8063dd62ed3e14610d45578063e2f4560514610d82578063e884f26014610dad578063f11a24d314610dd8576103b8565b8063c876d0b9116100dc578063c876d0b914610c87578063c8c8ebe414610cb2578063d257b34f14610cdd578063d85ba06314610d1a576103b8565b8063bbc0c74214610be1578063c024666814610c0c578063c17b5b8c14610c35578063c18bc19514610c5e576103b8565b80639a7a23d611610185578063a4c82a0011610154578063a4c82a0014610b13578063a9059cbb14610b3e578063aacebbe314610b7b578063b62496f514610ba4576103b8565b80639a7a23d614610a575780639ec22c0e14610a805780639fccce3214610aab578063a457c2d714610ad6576103b8565b80638ea5220f116101c15780638ea5220f146109ad57806392136913146109d8578063924de9b714610a0357806395d89b4114610a2c576103b8565b80638095d564146109425780638a8c523c1461096b5780638da5cb5b14610982576103b8565b8063313ce567116102d75780636ddd17131161026a578063751039fc11610239578063751039fc146108985780637571336a146108c357806375f0a874146108ec5780637bce5a0414610917576103b8565b80636ddd1713146107f057806370a082311461081b578063715018a614610858578063730c18881461086f576103b8565b80634fbee193116102a65780634fbee1931461073257806359e1ee0d1461076f5780635dfba9001461079a5780636a486a8e146107c5576103b8565b8063313ce56714610674578063395093511461069f57806349bd5a5e146106dc5780634a62bb6514610707576103b8565b8063199ffc721161034f57806323b872dd1161031e57806323b872dd146105b657806327c8f835146105f35780632c3e486c1461061e5780632e82f1a014610649576103b8565b8063199ffc721461050c5780631a8145bb146105375780631f3fed8f14610562578063203e727e1461058d576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d5780631816467f146104b8578063184c16c5146104e1576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df91906143f6565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a91906144b1565b610f51565b60405161041c919061450c565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190614527565b610f6f565b604051610459919061450c565b60405180910390f35b34801561046e57600080fd5b50610477610f8e565b60405161048491906145b3565b60405180910390f35b34801561049957600080fd5b506104a2610fb2565b6040516104af91906145dd565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190614527565b610fbc565b005b3480156104ed57600080fd5b506104f66110f8565b60405161050391906145dd565b60405180910390f35b34801561051857600080fd5b506105216110fe565b60405161052e91906145dd565b60405180910390f35b34801561054357600080fd5b5061054c611104565b60405161055991906145dd565b60405180910390f35b34801561056e57600080fd5b5061057761110a565b60405161058491906145dd565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af91906145f8565b611110565b005b3480156105c257600080fd5b506105dd60048036038101906105d89190614625565b6111a9565b6040516105ea919061450c565b60405180910390f35b3480156105ff57600080fd5b506106086112a1565b6040516106159190614687565b60405180910390f35b34801561062a57600080fd5b506106336112a7565b60405161064091906145dd565b60405180910390f35b34801561065557600080fd5b5061065e6112ad565b60405161066b919061450c565b60405180910390f35b34801561068057600080fd5b506106896112c0565b60405161069691906146be565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c191906144b1565b6112c9565b6040516106d3919061450c565b60405180910390f35b3480156106e857600080fd5b506106f1611375565b6040516106fe9190614687565b60405180910390f35b34801561071357600080fd5b5061071c611399565b604051610729919061450c565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190614527565b6113ac565b604051610766919061450c565b60405180910390f35b34801561077b57600080fd5b50610784611402565b60405161079191906145dd565b60405180910390f35b3480156107a657600080fd5b506107af611408565b6040516107bc91906145dd565b60405180910390f35b3480156107d157600080fd5b506107da61140e565b6040516107e791906145dd565b60405180910390f35b3480156107fc57600080fd5b50610805611414565b604051610812919061450c565b60405180910390f35b34801561082757600080fd5b50610842600480360381019061083d9190614527565b611427565b60405161084f91906145dd565b60405180910390f35b34801561086457600080fd5b5061086d61146f565b005b34801561087b57600080fd5b5061089660048036038101906108919190614705565b6114f7565b005b3480156108a457600080fd5b506108ad611637565b6040516108ba919061450c565b60405180910390f35b3480156108cf57600080fd5b506108ea60048036038101906108e59190614758565b6116d7565b005b3480156108f857600080fd5b506109016117ae565b60405161090e9190614687565b60405180910390f35b34801561092357600080fd5b5061092c6117d4565b60405161093991906145dd565b60405180910390f35b34801561094e57600080fd5b5061096960048036038101906109649190614798565b6117da565b005b34801561097757600080fd5b506109806118d9565b005b34801561098e57600080fd5b50610997611994565b6040516109a49190614687565b60405180910390f35b3480156109b957600080fd5b506109c26119be565b6040516109cf9190614687565b60405180910390f35b3480156109e457600080fd5b506109ed6119e4565b6040516109fa91906145dd565b60405180910390f35b348015610a0f57600080fd5b50610a2a6004803603810190610a2591906147eb565b6119ea565b005b348015610a3857600080fd5b50610a41611a83565b604051610a4e91906143f6565b60405180910390f35b348015610a6357600080fd5b50610a7e6004803603810190610a799190614758565b611b15565b005b348015610a8c57600080fd5b50610a95611c2e565b604051610aa291906145dd565b60405180910390f35b348015610ab757600080fd5b50610ac0611c34565b604051610acd91906145dd565b60405180910390f35b348015610ae257600080fd5b50610afd6004803603810190610af891906144b1565b611c3a565b604051610b0a919061450c565b60405180910390f35b348015610b1f57600080fd5b50610b28611d25565b604051610b3591906145dd565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b6091906144b1565b611d2b565b604051610b72919061450c565b60405180910390f35b348015610b8757600080fd5b50610ba26004803603810190610b9d9190614527565b611d49565b005b348015610bb057600080fd5b50610bcb6004803603810190610bc69190614527565b611e85565b604051610bd8919061450c565b60405180910390f35b348015610bed57600080fd5b50610bf6611ea5565b604051610c03919061450c565b60405180910390f35b348015610c1857600080fd5b50610c336004803603810190610c2e9190614758565b611eb8565b005b348015610c4157600080fd5b50610c5c6004803603810190610c579190614798565b611fdd565b005b348015610c6a57600080fd5b50610c856004803603810190610c8091906145f8565b6120dc565b005b348015610c9357600080fd5b50610c9c612175565b604051610ca9919061450c565b60405180910390f35b348015610cbe57600080fd5b50610cc7612188565b604051610cd491906145dd565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff91906145f8565b61218e565b604051610d11919061450c565b60405180910390f35b348015610d2657600080fd5b50610d2f6122e3565b604051610d3c91906145dd565b60405180910390f35b348015610d5157600080fd5b50610d6c6004803603810190610d679190614818565b6122e9565b604051610d7991906145dd565b60405180910390f35b348015610d8e57600080fd5b50610d97612370565b604051610da491906145dd565b60405180910390f35b348015610db957600080fd5b50610dc2612376565b604051610dcf919061450c565b60405180910390f35b348015610de457600080fd5b50610ded612416565b604051610dfa91906145dd565b60405180910390f35b348015610e0f57600080fd5b50610e2a6004803603810190610e259190614527565b61241c565b005b348015610e3857600080fd5b50610e41612514565b604051610e4e91906145dd565b60405180910390f35b348015610e6357600080fd5b50610e6c61251a565b604051610e7991906145dd565b60405180910390f35b348015610e8e57600080fd5b50610ea96004803603810190610ea491906145f8565b612520565b604051610eb6919061450c565b60405180910390f35b606060038054610ece90614887565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa90614887565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b6000610f65610f5e6127f8565b8484612800565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610fc46127f8565b73ffffffffffffffffffffffffffffffffffffffff16610fe2611994565b73ffffffffffffffffffffffffffffffffffffffff1614611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f90614905565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6111186127f8565b73ffffffffffffffffffffffffffffffffffffffff16611136611994565b73ffffffffffffffffffffffffffffffffffffffff161461118c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118390614905565b60405180910390fd5b670de0b6b3a7640000816111a09190614954565b60088190555050565b60006111b68484846129cb565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006112016127f8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611281576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127890614a20565b60405180910390fd5b6112958561128d6127f8565b858403612800565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b600061136b6112d66127f8565b8484600160006112e46127f8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113669190614a40565b612800565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60175481565b601b5481565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114776127f8565b73ffffffffffffffffffffffffffffffffffffffff16611495611994565b73ffffffffffffffffffffffffffffffffffffffff16146114eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e290614905565b60405180910390fd5b6114f56000613763565b565b6114ff6127f8565b73ffffffffffffffffffffffffffffffffffffffff1661151d611994565b73ffffffffffffffffffffffffffffffffffffffff1614611573576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156a90614905565b60405180910390fd5b6102588310156115b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115af90614b08565b60405180910390fd5b6103e882111580156115cb575060008210155b61160a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160190614b9a565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006116416127f8565b73ffffffffffffffffffffffffffffffffffffffff1661165f611994565b73ffffffffffffffffffffffffffffffffffffffff16146116b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ac90614905565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b6116df6127f8565b73ffffffffffffffffffffffffffffffffffffffff166116fd611994565b73ffffffffffffffffffffffffffffffffffffffff1614611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a90614905565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b6117e26127f8565b73ffffffffffffffffffffffffffffffffffffffff16611800611994565b73ffffffffffffffffffffffffffffffffffffffff1614611856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184d90614905565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461187e9190614a40565b6118889190614a40565b601481905550601960145411156118d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cb90614c06565b60405180910390fd5b505050565b6118e16127f8565b73ffffffffffffffffffffffffffffffffffffffff166118ff611994565b73ffffffffffffffffffffffffffffffffffffffff1614611955576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194c90614905565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b6119f26127f8565b73ffffffffffffffffffffffffffffffffffffffff16611a10611994565b73ffffffffffffffffffffffffffffffffffffffff1614611a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5d90614905565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611a9290614887565b80601f0160208091040260200160405190810160405280929190818152602001828054611abe90614887565b8015611b0b5780601f10611ae057610100808354040283529160200191611b0b565b820191906000526020600020905b815481529060010190602001808311611aee57829003601f168201915b5050505050905090565b611b1d6127f8565b73ffffffffffffffffffffffffffffffffffffffff16611b3b611994565b73ffffffffffffffffffffffffffffffffffffffff1614611b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8890614905565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1790614c98565b60405180910390fd5b611c2a8282613829565b5050565b60105481565b601e5481565b60008060016000611c496127f8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfd90614d2a565b60405180910390fd5b611d1a611d116127f8565b85858403612800565b600191505092915050565b600e5481565b6000611d3f611d386127f8565b84846129cb565b6001905092915050565b611d516127f8565b73ffffffffffffffffffffffffffffffffffffffff16611d6f611994565b73ffffffffffffffffffffffffffffffffffffffff1614611dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbc90614905565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611ec06127f8565b73ffffffffffffffffffffffffffffffffffffffff16611ede611994565b73ffffffffffffffffffffffffffffffffffffffff1614611f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2b90614905565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611fd1919061450c565b60405180910390a25050565b611fe56127f8565b73ffffffffffffffffffffffffffffffffffffffff16612003611994565b73ffffffffffffffffffffffffffffffffffffffff1614612059576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205090614905565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a546019546120819190614a40565b61208b9190614a40565b601881905550601960185411156120d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ce90614c06565b60405180910390fd5b505050565b6120e46127f8565b73ffffffffffffffffffffffffffffffffffffffff16612102611994565b73ffffffffffffffffffffffffffffffffffffffff1614612158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214f90614905565b60405180910390fd5b670de0b6b3a76400008161216c9190614954565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b60006121986127f8565b73ffffffffffffffffffffffffffffffffffffffff166121b6611994565b73ffffffffffffffffffffffffffffffffffffffff161461220c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220390614905565b60405180910390fd5b620186a0600161221a610fb2565b6122249190614954565b61222e9190614d79565b821015612270576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226790614e1c565b60405180910390fd5b6103e8600561227d610fb2565b6122879190614954565b6122919190614d79565b8211156122d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ca90614eae565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006123806127f8565b73ffffffffffffffffffffffffffffffffffffffff1661239e611994565b73ffffffffffffffffffffffffffffffffffffffff16146123f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123eb90614905565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b6124246127f8565b73ffffffffffffffffffffffffffffffffffffffff16612442611994565b73ffffffffffffffffffffffffffffffffffffffff1614612498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248f90614905565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ff90614f40565b60405180910390fd5b61251181613763565b50565b601a5481565b600a5481565b600061252a6127f8565b73ffffffffffffffffffffffffffffffffffffffff16612548611994565b73ffffffffffffffffffffffffffffffffffffffff161461259e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259590614905565b60405180910390fd5b600f546010546125ae9190614a40565b42116125ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e690614fac565b60405180910390fd5b6103e8821115612634576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262b9061503e565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b81526004016126969190614687565b602060405180830381865afa1580156126b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126d79190615073565b905060006127026127106126f486856138ca90919063ffffffff16565b6138e090919063ffffffff16565b9050600081111561273b5761273a7f000000000000000000000000000000000000000000000000000000000000000061dead836138f6565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156127a857600080fd5b505af11580156127bc573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612870576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286790615112565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d7906151a4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516129be91906145dd565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3290615236565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa2906152c8565b60405180910390fd5b6000811415612ac557612ac0838360006138f6565b61375e565b601160009054906101000a900460ff161561318857612ae2611994565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612b505750612b20611994565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b895750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612bc3575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612bdc5750600560149054906101000a900460ff16155b1561318757601160019054906101000a900460ff16612cd657601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c965750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ccc90615334565b60405180910390fd5b5b601360009054906101000a900460ff1615612e9e57612cf3611994565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612d7a57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612dd257507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612e9d5743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4f906153ec565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f415750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612fe857600854811115612f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f829061547e565b60405180910390fd5b600a54612f9783611427565b82612fa29190614a40565b1115612fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fda906154ea565b60405180910390fd5b613186565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561308b5750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156130da576008548111156130d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130cc9061557c565b60405180910390fd5b613185565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661318457600a5461313783611427565b826131429190614a40565b1115613183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161317a906154ea565b60405180910390fd5b5b5b5b5b5b600061319330611427565b9050600060095482101590508080156131b85750601160029054906101000a900460ff165b80156131d15750600560149054906101000a900460ff16155b80156132275750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561327d5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156132d35750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613317576001600560146101000a81548160ff0219169083151502179055506132fb613b77565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff1615801561337d5750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156133955750600c60009054906101000a900460ff165b80156133b05750600d54600e546133ac9190614a40565b4210155b80156134065750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561341557613413613e5e565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806134cb5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156134d557600090505b6000811561374e57602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561353857506000601854115b15613605576135656064613557601854886138ca90919063ffffffff16565b6138e090919063ffffffff16565b9050601854601a54826135789190614954565b6135829190614d79565b601d60008282546135939190614a40565b92505081905550601854601b54826135ab9190614954565b6135b59190614d79565b601e60008282546135c69190614a40565b92505081905550601854601954826135de9190614954565b6135e89190614d79565b601c60008282546135f99190614a40565b9250508190555061372a565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561366057506000601454115b156137295761368d606461367f601454886138ca90919063ffffffff16565b6138e090919063ffffffff16565b9050601454601654826136a09190614954565b6136aa9190614d79565b601d60008282546136bb9190614a40565b92505081905550601454601754826136d39190614954565b6136dd9190614d79565b601e60008282546136ee9190614a40565b92505081905550601454601554826137069190614954565b6137109190614d79565b601c60008282546137219190614a40565b925050819055505b5b600081111561373f5761373e8730836138f6565b5b808561374b919061559c565b94505b6137598787876138f6565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836138d89190614954565b905092915050565b600081836138ee9190614d79565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161395d90615236565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156139d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139cd906152c8565b60405180910390fd5b6139e1838383614024565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a5e90615642565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613afa9190614a40565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613b5e91906145dd565b60405180910390a3613b71848484614029565b50505050565b6000613b8230611427565b90506000601e54601c54601d54613b999190614a40565b613ba39190614a40565b9050600080831480613bb55750600082145b15613bc257505050613e5c565b6014600954613bd19190614954565b831115613bea576014600954613be79190614954565b92505b6000600283601d5486613bfd9190614954565b613c079190614d79565b613c119190614d79565b90506000613c28828661402e90919063ffffffff16565b90506000479050613c3882614044565b6000613c4d824761402e90919063ffffffff16565b90506000613c7887613c6a601c54856138ca90919063ffffffff16565b6138e090919063ffffffff16565b90506000613ca388613c95601e54866138ca90919063ffffffff16565b6138e090919063ffffffff16565b90506000818385613cb4919061559c565b613cbe919061559c565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613d1e90615693565b60006040518083038185875af1925050503d8060008114613d5b576040519150601f19603f3d011682016040523d82523d6000602084013e613d60565b606091505b505080985050600087118015613d765750600081115b15613dc357613d858782614281565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613dba939291906156a8565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613e0990615693565b60006040518083038185875af1925050503d8060008114613e46576040519150601f19603f3d011682016040523d82523d6000602084013e613e4b565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000000000000000000000000000000000000000000006040518263ffffffff1660e01b8152600401613ec29190614687565b602060405180830381865afa158015613edf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613f039190615073565b90506000613f30612710613f22600b54856138ca90919063ffffffff16565b6138e090919063ffffffff16565b90506000811115613f6957613f687f000000000000000000000000000000000000000000000000000000000000000061dead836138f6565b5b60007f000000000000000000000000000000000000000000000000000000000000000090508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613fd657600080fd5b505af1158015613fea573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b6000818361403c919061559c565b905092915050565b6000600267ffffffffffffffff811115614061576140606156df565b5b60405190808252806020026020018201604052801561408f5781602001602082028036833780820191505090505b50905030816000815181106140a7576140a661570e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561414c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141709190615752565b816001815181106141845761418361570e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506141e9307f000000000000000000000000000000000000000000000000000000000000000084612800565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161424b959493929190615878565b600060405180830381600087803b15801561426557600080fd5b505af1158015614279573d6000803e3d6000fd5b505050505050565b6142ac307f000000000000000000000000000000000000000000000000000000000000000084612800565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401614313969594939291906158d2565b60606040518083038185885af1158015614331573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906143569190615933565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561439757808201518184015260208101905061437c565b838111156143a6576000848401525b50505050565b6000601f19601f8301169050919050565b60006143c88261435d565b6143d28185614368565b93506143e2818560208601614379565b6143eb816143ac565b840191505092915050565b6000602082019050818103600083015261441081846143bd565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006144488261441d565b9050919050565b6144588161443d565b811461446357600080fd5b50565b6000813590506144758161444f565b92915050565b6000819050919050565b61448e8161447b565b811461449957600080fd5b50565b6000813590506144ab81614485565b92915050565b600080604083850312156144c8576144c7614418565b5b60006144d685828601614466565b92505060206144e78582860161449c565b9150509250929050565b60008115159050919050565b614506816144f1565b82525050565b600060208201905061452160008301846144fd565b92915050565b60006020828403121561453d5761453c614418565b5b600061454b84828501614466565b91505092915050565b6000819050919050565b600061457961457461456f8461441d565b614554565b61441d565b9050919050565b600061458b8261455e565b9050919050565b600061459d82614580565b9050919050565b6145ad81614592565b82525050565b60006020820190506145c860008301846145a4565b92915050565b6145d78161447b565b82525050565b60006020820190506145f260008301846145ce565b92915050565b60006020828403121561460e5761460d614418565b5b600061461c8482850161449c565b91505092915050565b60008060006060848603121561463e5761463d614418565b5b600061464c86828701614466565b935050602061465d86828701614466565b925050604061466e8682870161449c565b9150509250925092565b6146818161443d565b82525050565b600060208201905061469c6000830184614678565b92915050565b600060ff82169050919050565b6146b8816146a2565b82525050565b60006020820190506146d360008301846146af565b92915050565b6146e2816144f1565b81146146ed57600080fd5b50565b6000813590506146ff816146d9565b92915050565b60008060006060848603121561471e5761471d614418565b5b600061472c8682870161449c565b935050602061473d8682870161449c565b925050604061474e868287016146f0565b9150509250925092565b6000806040838503121561476f5761476e614418565b5b600061477d85828601614466565b925050602061478e858286016146f0565b9150509250929050565b6000806000606084860312156147b1576147b0614418565b5b60006147bf8682870161449c565b93505060206147d08682870161449c565b92505060406147e18682870161449c565b9150509250925092565b60006020828403121561480157614800614418565b5b600061480f848285016146f0565b91505092915050565b6000806040838503121561482f5761482e614418565b5b600061483d85828601614466565b925050602061484e85828601614466565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061489f57607f821691505b602082108114156148b3576148b2614858565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006148ef602083614368565b91506148fa826148b9565b602082019050919050565b6000602082019050818103600083015261491e816148e2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061495f8261447b565b915061496a8361447b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156149a3576149a2614925565b5b828202905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614a0a602883614368565b9150614a15826149ae565b604082019050919050565b60006020820190508181036000830152614a39816149fd565b9050919050565b6000614a4b8261447b565b9150614a568361447b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a8b57614a8a614925565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614af2603383614368565b9150614afd82614a96565b604082019050919050565b60006020820190508181036000830152614b2181614ae5565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614b84603083614368565b9150614b8f82614b28565b604082019050919050565b60006020820190508181036000830152614bb381614b77565b9050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000614bf0601d83614368565b9150614bfb82614bba565b602082019050919050565b60006020820190508181036000830152614c1f81614be3565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614c82603983614368565b9150614c8d82614c26565b604082019050919050565b60006020820190508181036000830152614cb181614c75565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614d14602583614368565b9150614d1f82614cb8565b604082019050919050565b60006020820190508181036000830152614d4381614d07565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614d848261447b565b9150614d8f8361447b565b925082614d9f57614d9e614d4a565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614e06603583614368565b9150614e1182614daa565b604082019050919050565b60006020820190508181036000830152614e3581614df9565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614e98603483614368565b9150614ea382614e3c565b604082019050919050565b60006020820190508181036000830152614ec781614e8b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614f2a602683614368565b9150614f3582614ece565b604082019050919050565b60006020820190508181036000830152614f5981614f1d565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000614f96602083614368565b9150614fa182614f60565b602082019050919050565b60006020820190508181036000830152614fc581614f89565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000615028602a83614368565b915061503382614fcc565b604082019050919050565b600060208201905081810360008301526150578161501b565b9050919050565b60008151905061506d81614485565b92915050565b60006020828403121561508957615088614418565b5b60006150978482850161505e565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006150fc602483614368565b9150615107826150a0565b604082019050919050565b6000602082019050818103600083015261512b816150ef565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061518e602283614368565b915061519982615132565b604082019050919050565b600060208201905081810360008301526151bd81615181565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000615220602583614368565b915061522b826151c4565b604082019050919050565b6000602082019050818103600083015261524f81615213565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006152b2602383614368565b91506152bd82615256565b604082019050919050565b600060208201905081810360008301526152e1816152a5565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061531e601683614368565b9150615329826152e8565b602082019050919050565b6000602082019050818103600083015261534d81615311565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006153d6604983614368565b91506153e182615354565b606082019050919050565b60006020820190508181036000830152615405816153c9565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000615468603583614368565b91506154738261540c565b604082019050919050565b600060208201905081810360008301526154978161545b565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006154d4601383614368565b91506154df8261549e565b602082019050919050565b60006020820190508181036000830152615503816154c7565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000615566603683614368565b91506155718261550a565b604082019050919050565b6000602082019050818103600083015261559581615559565b9050919050565b60006155a78261447b565b91506155b28361447b565b9250828210156155c5576155c4614925565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061562c602683614368565b9150615637826155d0565b604082019050919050565b6000602082019050818103600083015261565b8161561f565b9050919050565b600081905092915050565b50565b600061567d600083615662565b91506156888261566d565b600082019050919050565b600061569e82615670565b9150819050919050565b60006060820190506156bd60008301866145ce565b6156ca60208301856145ce565b6156d760408301846145ce565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061574c8161444f565b92915050565b60006020828403121561576857615767614418565b5b60006157768482850161573d565b91505092915050565b6000819050919050565b60006157a461579f61579a8461577f565b614554565b61447b565b9050919050565b6157b481615789565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6157ef8161443d565b82525050565b600061580183836157e6565b60208301905092915050565b6000602082019050919050565b6000615825826157ba565b61582f81856157c5565b935061583a836157d6565b8060005b8381101561586b57815161585288826157f5565b975061585d8361580d565b92505060018101905061583e565b5085935050505092915050565b600060a08201905061588d60008301886145ce565b61589a60208301876157ab565b81810360408301526158ac818661581a565b90506158bb6060830185614678565b6158c860808301846145ce565b9695505050505050565b600060c0820190506158e76000830189614678565b6158f460208301886145ce565b61590160408301876157ab565b61590e60608301866157ab565b61591b6080830185614678565b61592860a08301846145ce565b979650505050505050565b60008060006060848603121561594c5761594b614418565b5b600061595a8682870161505e565b935050602061596b8682870161505e565b925050604061597c8682870161505e565b915050925092509256fea2646970667358221220c63c50ecf2064ef7618edbf372a02467aabfbc0117e4608272054403cf23850664736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106103b15760003560e01c80638095d564116101e7578063bbc0c7421161010d578063dd62ed3e116100a0578063f2fde38b1161006f578063f2fde38b14610e03578063f637434214610e2c578063f8b45b0514610e57578063fe72b27a14610e82576103b8565b8063dd62ed3e14610d45578063e2f4560514610d82578063e884f26014610dad578063f11a24d314610dd8576103b8565b8063c876d0b9116100dc578063c876d0b914610c87578063c8c8ebe414610cb2578063d257b34f14610cdd578063d85ba06314610d1a576103b8565b8063bbc0c74214610be1578063c024666814610c0c578063c17b5b8c14610c35578063c18bc19514610c5e576103b8565b80639a7a23d611610185578063a4c82a0011610154578063a4c82a0014610b13578063a9059cbb14610b3e578063aacebbe314610b7b578063b62496f514610ba4576103b8565b80639a7a23d614610a575780639ec22c0e14610a805780639fccce3214610aab578063a457c2d714610ad6576103b8565b80638ea5220f116101c15780638ea5220f146109ad57806392136913146109d8578063924de9b714610a0357806395d89b4114610a2c576103b8565b80638095d564146109425780638a8c523c1461096b5780638da5cb5b14610982576103b8565b8063313ce567116102d75780636ddd17131161026a578063751039fc11610239578063751039fc146108985780637571336a146108c357806375f0a874146108ec5780637bce5a0414610917576103b8565b80636ddd1713146107f057806370a082311461081b578063715018a614610858578063730c18881461086f576103b8565b80634fbee193116102a65780634fbee1931461073257806359e1ee0d1461076f5780635dfba9001461079a5780636a486a8e146107c5576103b8565b8063313ce56714610674578063395093511461069f57806349bd5a5e146106dc5780634a62bb6514610707576103b8565b8063199ffc721161034f57806323b872dd1161031e57806323b872dd146105b657806327c8f835146105f35780632c3e486c1461061e5780632e82f1a014610649576103b8565b8063199ffc721461050c5780631a8145bb146105375780631f3fed8f14610562578063203e727e1461058d576103b8565b80631694505e1161038b5780631694505e1461046257806318160ddd1461048d5780631816467f146104b8578063184c16c5146104e1576103b8565b806306fdde03146103bd578063095ea7b3146103e857806310d5de5314610425576103b8565b366103b857005b600080fd5b3480156103c957600080fd5b506103d2610ebf565b6040516103df91906143f6565b60405180910390f35b3480156103f457600080fd5b5061040f600480360381019061040a91906144b1565b610f51565b60405161041c919061450c565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190614527565b610f6f565b604051610459919061450c565b60405180910390f35b34801561046e57600080fd5b50610477610f8e565b60405161048491906145b3565b60405180910390f35b34801561049957600080fd5b506104a2610fb2565b6040516104af91906145dd565b60405180910390f35b3480156104c457600080fd5b506104df60048036038101906104da9190614527565b610fbc565b005b3480156104ed57600080fd5b506104f66110f8565b60405161050391906145dd565b60405180910390f35b34801561051857600080fd5b506105216110fe565b60405161052e91906145dd565b60405180910390f35b34801561054357600080fd5b5061054c611104565b60405161055991906145dd565b60405180910390f35b34801561056e57600080fd5b5061057761110a565b60405161058491906145dd565b60405180910390f35b34801561059957600080fd5b506105b460048036038101906105af91906145f8565b611110565b005b3480156105c257600080fd5b506105dd60048036038101906105d89190614625565b6111a9565b6040516105ea919061450c565b60405180910390f35b3480156105ff57600080fd5b506106086112a1565b6040516106159190614687565b60405180910390f35b34801561062a57600080fd5b506106336112a7565b60405161064091906145dd565b60405180910390f35b34801561065557600080fd5b5061065e6112ad565b60405161066b919061450c565b60405180910390f35b34801561068057600080fd5b506106896112c0565b60405161069691906146be565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c191906144b1565b6112c9565b6040516106d3919061450c565b60405180910390f35b3480156106e857600080fd5b506106f1611375565b6040516106fe9190614687565b60405180910390f35b34801561071357600080fd5b5061071c611399565b604051610729919061450c565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190614527565b6113ac565b604051610766919061450c565b60405180910390f35b34801561077b57600080fd5b50610784611402565b60405161079191906145dd565b60405180910390f35b3480156107a657600080fd5b506107af611408565b6040516107bc91906145dd565b60405180910390f35b3480156107d157600080fd5b506107da61140e565b6040516107e791906145dd565b60405180910390f35b3480156107fc57600080fd5b50610805611414565b604051610812919061450c565b60405180910390f35b34801561082757600080fd5b50610842600480360381019061083d9190614527565b611427565b60405161084f91906145dd565b60405180910390f35b34801561086457600080fd5b5061086d61146f565b005b34801561087b57600080fd5b5061089660048036038101906108919190614705565b6114f7565b005b3480156108a457600080fd5b506108ad611637565b6040516108ba919061450c565b60405180910390f35b3480156108cf57600080fd5b506108ea60048036038101906108e59190614758565b6116d7565b005b3480156108f857600080fd5b506109016117ae565b60405161090e9190614687565b60405180910390f35b34801561092357600080fd5b5061092c6117d4565b60405161093991906145dd565b60405180910390f35b34801561094e57600080fd5b5061096960048036038101906109649190614798565b6117da565b005b34801561097757600080fd5b506109806118d9565b005b34801561098e57600080fd5b50610997611994565b6040516109a49190614687565b60405180910390f35b3480156109b957600080fd5b506109c26119be565b6040516109cf9190614687565b60405180910390f35b3480156109e457600080fd5b506109ed6119e4565b6040516109fa91906145dd565b60405180910390f35b348015610a0f57600080fd5b50610a2a6004803603810190610a2591906147eb565b6119ea565b005b348015610a3857600080fd5b50610a41611a83565b604051610a4e91906143f6565b60405180910390f35b348015610a6357600080fd5b50610a7e6004803603810190610a799190614758565b611b15565b005b348015610a8c57600080fd5b50610a95611c2e565b604051610aa291906145dd565b60405180910390f35b348015610ab757600080fd5b50610ac0611c34565b604051610acd91906145dd565b60405180910390f35b348015610ae257600080fd5b50610afd6004803603810190610af891906144b1565b611c3a565b604051610b0a919061450c565b60405180910390f35b348015610b1f57600080fd5b50610b28611d25565b604051610b3591906145dd565b60405180910390f35b348015610b4a57600080fd5b50610b656004803603810190610b6091906144b1565b611d2b565b604051610b72919061450c565b60405180910390f35b348015610b8757600080fd5b50610ba26004803603810190610b9d9190614527565b611d49565b005b348015610bb057600080fd5b50610bcb6004803603810190610bc69190614527565b611e85565b604051610bd8919061450c565b60405180910390f35b348015610bed57600080fd5b50610bf6611ea5565b604051610c03919061450c565b60405180910390f35b348015610c1857600080fd5b50610c336004803603810190610c2e9190614758565b611eb8565b005b348015610c4157600080fd5b50610c5c6004803603810190610c579190614798565b611fdd565b005b348015610c6a57600080fd5b50610c856004803603810190610c8091906145f8565b6120dc565b005b348015610c9357600080fd5b50610c9c612175565b604051610ca9919061450c565b60405180910390f35b348015610cbe57600080fd5b50610cc7612188565b604051610cd491906145dd565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff91906145f8565b61218e565b604051610d11919061450c565b60405180910390f35b348015610d2657600080fd5b50610d2f6122e3565b604051610d3c91906145dd565b60405180910390f35b348015610d5157600080fd5b50610d6c6004803603810190610d679190614818565b6122e9565b604051610d7991906145dd565b60405180910390f35b348015610d8e57600080fd5b50610d97612370565b604051610da491906145dd565b60405180910390f35b348015610db957600080fd5b50610dc2612376565b604051610dcf919061450c565b60405180910390f35b348015610de457600080fd5b50610ded612416565b604051610dfa91906145dd565b60405180910390f35b348015610e0f57600080fd5b50610e2a6004803603810190610e259190614527565b61241c565b005b348015610e3857600080fd5b50610e41612514565b604051610e4e91906145dd565b60405180910390f35b348015610e6357600080fd5b50610e6c61251a565b604051610e7991906145dd565b60405180910390f35b348015610e8e57600080fd5b50610ea96004803603810190610ea491906145f8565b612520565b604051610eb6919061450c565b60405180910390f35b606060038054610ece90614887565b80601f0160208091040260200160405190810160405280929190818152602001828054610efa90614887565b8015610f475780601f10610f1c57610100808354040283529160200191610f47565b820191906000526020600020905b815481529060010190602001808311610f2a57829003601f168201915b5050505050905090565b6000610f65610f5e6127f8565b8484612800565b6001905092915050565b602080528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610fc46127f8565b73ffffffffffffffffffffffffffffffffffffffff16610fe2611994565b73ffffffffffffffffffffffffffffffffffffffff1614611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f90614905565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600f5481565b600b5481565b601d5481565b601c5481565b6111186127f8565b73ffffffffffffffffffffffffffffffffffffffff16611136611994565b73ffffffffffffffffffffffffffffffffffffffff161461118c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118390614905565b60405180910390fd5b670de0b6b3a7640000816111a09190614954565b60088190555050565b60006111b68484846129cb565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006112016127f8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611281576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127890614a20565b60405180910390fd5b6112958561128d6127f8565b858403612800565b60019150509392505050565b61dead81565b600d5481565b600c60009054906101000a900460ff1681565b60006012905090565b600061136b6112d66127f8565b8484600160006112e46127f8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113669190614a40565b612800565b6001905092915050565b7f00000000000000000000000014957d4db955419ff62c8d8df1e096123bd562a381565b601160009054906101000a900460ff1681565b6000601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60175481565b601b5481565b60185481565b601160029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114776127f8565b73ffffffffffffffffffffffffffffffffffffffff16611495611994565b73ffffffffffffffffffffffffffffffffffffffff16146114eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e290614905565b60405180910390fd5b6114f56000613763565b565b6114ff6127f8565b73ffffffffffffffffffffffffffffffffffffffff1661151d611994565b73ffffffffffffffffffffffffffffffffffffffff1614611573576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156a90614905565b60405180910390fd5b6102588310156115b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115af90614b08565b60405180910390fd5b6103e882111580156115cb575060008210155b61160a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160190614b9a565b60405180910390fd5b82600d8190555081600b8190555080600c60006101000a81548160ff021916908315150217905550505050565b60006116416127f8565b73ffffffffffffffffffffffffffffffffffffffff1661165f611994565b73ffffffffffffffffffffffffffffffffffffffff16146116b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ac90614905565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b6116df6127f8565b73ffffffffffffffffffffffffffffffffffffffff166116fd611994565b73ffffffffffffffffffffffffffffffffffffffff1614611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a90614905565b60405180910390fd5b80602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60155481565b6117e26127f8565b73ffffffffffffffffffffffffffffffffffffffff16611800611994565b73ffffffffffffffffffffffffffffffffffffffff1614611856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184d90614905565b60405180910390fd5b82601581905550816016819055508060178190555060175460165460155461187e9190614a40565b6118889190614a40565b601481905550601960145411156118d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cb90614c06565b60405180910390fd5b505050565b6118e16127f8565b73ffffffffffffffffffffffffffffffffffffffff166118ff611994565b73ffffffffffffffffffffffffffffffffffffffff1614611955576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194c90614905565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff02191690831515021790555042600e81905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60195481565b6119f26127f8565b73ffffffffffffffffffffffffffffffffffffffff16611a10611994565b73ffffffffffffffffffffffffffffffffffffffff1614611a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5d90614905565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b606060048054611a9290614887565b80601f0160208091040260200160405190810160405280929190818152602001828054611abe90614887565b8015611b0b5780601f10611ae057610100808354040283529160200191611b0b565b820191906000526020600020905b815481529060010190602001808311611aee57829003601f168201915b5050505050905090565b611b1d6127f8565b73ffffffffffffffffffffffffffffffffffffffff16611b3b611994565b73ffffffffffffffffffffffffffffffffffffffff1614611b91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8890614905565b60405180910390fd5b7f00000000000000000000000014957d4db955419ff62c8d8df1e096123bd562a373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1790614c98565b60405180910390fd5b611c2a8282613829565b5050565b60105481565b601e5481565b60008060016000611c496127f8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611d06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cfd90614d2a565b60405180910390fd5b611d1a611d116127f8565b85858403612800565b600191505092915050565b600e5481565b6000611d3f611d386127f8565b84846129cb565b6001905092915050565b611d516127f8565b73ffffffffffffffffffffffffffffffffffffffff16611d6f611994565b73ffffffffffffffffffffffffffffffffffffffff1614611dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbc90614905565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fa751787977eeb3902e30e1d19ca00c6ad274a1f622c31a206e32366700b0567460405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60216020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b611ec06127f8565b73ffffffffffffffffffffffffffffffffffffffff16611ede611994565b73ffffffffffffffffffffffffffffffffffffffff1614611f34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2b90614905565b60405180910390fd5b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611fd1919061450c565b60405180910390a25050565b611fe56127f8565b73ffffffffffffffffffffffffffffffffffffffff16612003611994565b73ffffffffffffffffffffffffffffffffffffffff1614612059576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205090614905565b60405180910390fd5b8260198190555081601a8190555080601b81905550601b54601a546019546120819190614a40565b61208b9190614a40565b601881905550601960185411156120d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ce90614c06565b60405180910390fd5b505050565b6120e46127f8565b73ffffffffffffffffffffffffffffffffffffffff16612102611994565b73ffffffffffffffffffffffffffffffffffffffff1614612158576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214f90614905565b60405180910390fd5b670de0b6b3a76400008161216c9190614954565b600a8190555050565b601360009054906101000a900460ff1681565b60085481565b60006121986127f8565b73ffffffffffffffffffffffffffffffffffffffff166121b6611994565b73ffffffffffffffffffffffffffffffffffffffff161461220c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220390614905565b60405180910390fd5b620186a0600161221a610fb2565b6122249190614954565b61222e9190614d79565b821015612270576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226790614e1c565b60405180910390fd5b6103e8600561227d610fb2565b6122879190614954565b6122919190614d79565b8211156122d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ca90614eae565b60405180910390fd5b8160098190555060019050919050565b60145481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60006123806127f8565b73ffffffffffffffffffffffffffffffffffffffff1661239e611994565b73ffffffffffffffffffffffffffffffffffffffff16146123f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123eb90614905565b60405180910390fd5b6000601360006101000a81548160ff0219169083151502179055506001905090565b60165481565b6124246127f8565b73ffffffffffffffffffffffffffffffffffffffff16612442611994565b73ffffffffffffffffffffffffffffffffffffffff1614612498576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248f90614905565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612508576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ff90614f40565b60405180910390fd5b61251181613763565b50565b601a5481565b600a5481565b600061252a6127f8565b73ffffffffffffffffffffffffffffffffffffffff16612548611994565b73ffffffffffffffffffffffffffffffffffffffff161461259e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259590614905565b60405180910390fd5b600f546010546125ae9190614a40565b42116125ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125e690614fac565b60405180910390fd5b6103e8821115612634576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262b9061503e565b60405180910390fd5b4260108190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000014957d4db955419ff62c8d8df1e096123bd562a36040518263ffffffff1660e01b81526004016126969190614687565b602060405180830381865afa1580156126b3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126d79190615073565b905060006127026127106126f486856138ca90919063ffffffff16565b6138e090919063ffffffff16565b9050600081111561273b5761273a7f00000000000000000000000014957d4db955419ff62c8d8df1e096123bd562a361dead836138f6565b5b60007f00000000000000000000000014957d4db955419ff62c8d8df1e096123bd562a390508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156127a857600080fd5b505af11580156127bc573d6000803e3d6000fd5b505050507f8462566617872a3fbab94534675218431ff9e204063ee3f4f43d965626a39abb60405160405180910390a160019350505050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612870576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161286790615112565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d7906151a4565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516129be91906145dd565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3290615236565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612aa2906152c8565b60405180910390fd5b6000811415612ac557612ac0838360006138f6565b61375e565b601160009054906101000a900460ff161561318857612ae2611994565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612b505750612b20611994565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612b895750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612bc3575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612bdc5750600560149054906101000a900460ff16155b1561318757601160019054906101000a900460ff16612cd657601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612c965750601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ccc90615334565b60405180910390fd5b5b601360009054906101000a900460ff1615612e9e57612cf3611994565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015612d7a57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612dd257507f00000000000000000000000014957d4db955419ff62c8d8df1e096123bd562a373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15612e9d5743601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e4f906153ec565b60405180910390fd5b43601260003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f415750602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612fe857600854811115612f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f829061547e565b60405180910390fd5b600a54612f9783611427565b82612fa29190614a40565b1115612fe3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fda906154ea565b60405180910390fd5b613186565b602160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561308b5750602060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156130da576008548111156130d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130cc9061557c565b60405180910390fd5b613185565b602060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661318457600a5461313783611427565b826131429190614a40565b1115613183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161317a906154ea565b60405180910390fd5b5b5b5b5b5b600061319330611427565b9050600060095482101590508080156131b85750601160029054906101000a900460ff165b80156131d15750600560149054906101000a900460ff16155b80156132275750602160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b801561327d5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156132d35750601f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613317576001600560146101000a81548160ff0219169083151502179055506132fb613b77565b6000600560146101000a81548160ff0219169083151502179055505b600560149054906101000a900460ff1615801561337d5750602160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b80156133955750600c60009054906101000a900460ff165b80156133b05750600d54600e546133ac9190614a40565b4210155b80156134065750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561341557613413613e5e565b505b6000600560149054906101000a900460ff16159050601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806134cb5750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156134d557600090505b6000811561374e57602160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561353857506000601854115b15613605576135656064613557601854886138ca90919063ffffffff16565b6138e090919063ffffffff16565b9050601854601a54826135789190614954565b6135829190614d79565b601d60008282546135939190614a40565b92505081905550601854601b54826135ab9190614954565b6135b59190614d79565b601e60008282546135c69190614a40565b92505081905550601854601954826135de9190614954565b6135e89190614d79565b601c60008282546135f99190614a40565b9250508190555061372a565b602160008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561366057506000601454115b156137295761368d606461367f601454886138ca90919063ffffffff16565b6138e090919063ffffffff16565b9050601454601654826136a09190614954565b6136aa9190614d79565b601d60008282546136bb9190614a40565b92505081905550601454601754826136d39190614954565b6136dd9190614d79565b601e60008282546136ee9190614a40565b92505081905550601454601554826137069190614954565b6137109190614d79565b601c60008282546137219190614a40565b925050819055505b5b600081111561373f5761373e8730836138f6565b5b808561374b919061559c565b94505b6137598787876138f6565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80602160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600081836138d89190614954565b905092915050565b600081836138ee9190614d79565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613966576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161395d90615236565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156139d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139cd906152c8565b60405180910390fd5b6139e1838383614024565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613a67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a5e90615642565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613afa9190614a40565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051613b5e91906145dd565b60405180910390a3613b71848484614029565b50505050565b6000613b8230611427565b90506000601e54601c54601d54613b999190614a40565b613ba39190614a40565b9050600080831480613bb55750600082145b15613bc257505050613e5c565b6014600954613bd19190614954565b831115613bea576014600954613be79190614954565b92505b6000600283601d5486613bfd9190614954565b613c079190614d79565b613c119190614d79565b90506000613c28828661402e90919063ffffffff16565b90506000479050613c3882614044565b6000613c4d824761402e90919063ffffffff16565b90506000613c7887613c6a601c54856138ca90919063ffffffff16565b6138e090919063ffffffff16565b90506000613ca388613c95601e54866138ca90919063ffffffff16565b6138e090919063ffffffff16565b90506000818385613cb4919061559c565b613cbe919061559c565b90506000601d819055506000601c819055506000601e81905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051613d1e90615693565b60006040518083038185875af1925050503d8060008114613d5b576040519150601f19603f3d011682016040523d82523d6000602084013e613d60565b606091505b505080985050600087118015613d765750600081115b15613dc357613d858782614281565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618682601d54604051613dba939291906156a8565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051613e0990615693565b60006040518083038185875af1925050503d8060008114613e46576040519150601f19603f3d011682016040523d82523d6000602084013e613e4b565b606091505b505080985050505050505050505050505b565b600042600e8190555060003073ffffffffffffffffffffffffffffffffffffffff166370a082317f00000000000000000000000014957d4db955419ff62c8d8df1e096123bd562a36040518263ffffffff1660e01b8152600401613ec29190614687565b602060405180830381865afa158015613edf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613f039190615073565b90506000613f30612710613f22600b54856138ca90919063ffffffff16565b6138e090919063ffffffff16565b90506000811115613f6957613f687f00000000000000000000000014957d4db955419ff62c8d8df1e096123bd562a361dead836138f6565b5b60007f00000000000000000000000014957d4db955419ff62c8d8df1e096123bd562a390508073ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b158015613fd657600080fd5b505af1158015613fea573d6000803e3d6000fd5b505050507f454c91ae84fcc766ddda0dcb289f26b3d0176efeacf4061fc219fa6ca8c3048d60405160405180910390a16001935050505090565b505050565b505050565b6000818361403c919061559c565b905092915050565b6000600267ffffffffffffffff811115614061576140606156df565b5b60405190808252806020026020018201604052801561408f5781602001602082028036833780820191505090505b50905030816000815181106140a7576140a661570e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561414c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141709190615752565b816001815181106141845761418361570e565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506141e9307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612800565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b815260040161424b959493929190615878565b600060405180830381600087803b15801561426557600080fd5b505af1158015614279573d6000803e3d6000fd5b505050505050565b6142ac307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84612800565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b8152600401614313969594939291906158d2565b60606040518083038185885af1158015614331573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906143569190615933565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561439757808201518184015260208101905061437c565b838111156143a6576000848401525b50505050565b6000601f19601f8301169050919050565b60006143c88261435d565b6143d28185614368565b93506143e2818560208601614379565b6143eb816143ac565b840191505092915050565b6000602082019050818103600083015261441081846143bd565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006144488261441d565b9050919050565b6144588161443d565b811461446357600080fd5b50565b6000813590506144758161444f565b92915050565b6000819050919050565b61448e8161447b565b811461449957600080fd5b50565b6000813590506144ab81614485565b92915050565b600080604083850312156144c8576144c7614418565b5b60006144d685828601614466565b92505060206144e78582860161449c565b9150509250929050565b60008115159050919050565b614506816144f1565b82525050565b600060208201905061452160008301846144fd565b92915050565b60006020828403121561453d5761453c614418565b5b600061454b84828501614466565b91505092915050565b6000819050919050565b600061457961457461456f8461441d565b614554565b61441d565b9050919050565b600061458b8261455e565b9050919050565b600061459d82614580565b9050919050565b6145ad81614592565b82525050565b60006020820190506145c860008301846145a4565b92915050565b6145d78161447b565b82525050565b60006020820190506145f260008301846145ce565b92915050565b60006020828403121561460e5761460d614418565b5b600061461c8482850161449c565b91505092915050565b60008060006060848603121561463e5761463d614418565b5b600061464c86828701614466565b935050602061465d86828701614466565b925050604061466e8682870161449c565b9150509250925092565b6146818161443d565b82525050565b600060208201905061469c6000830184614678565b92915050565b600060ff82169050919050565b6146b8816146a2565b82525050565b60006020820190506146d360008301846146af565b92915050565b6146e2816144f1565b81146146ed57600080fd5b50565b6000813590506146ff816146d9565b92915050565b60008060006060848603121561471e5761471d614418565b5b600061472c8682870161449c565b935050602061473d8682870161449c565b925050604061474e868287016146f0565b9150509250925092565b6000806040838503121561476f5761476e614418565b5b600061477d85828601614466565b925050602061478e858286016146f0565b9150509250929050565b6000806000606084860312156147b1576147b0614418565b5b60006147bf8682870161449c565b93505060206147d08682870161449c565b92505060406147e18682870161449c565b9150509250925092565b60006020828403121561480157614800614418565b5b600061480f848285016146f0565b91505092915050565b6000806040838503121561482f5761482e614418565b5b600061483d85828601614466565b925050602061484e85828601614466565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061489f57607f821691505b602082108114156148b3576148b2614858565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006148ef602083614368565b91506148fa826148b9565b602082019050919050565b6000602082019050818103600083015261491e816148e2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061495f8261447b565b915061496a8361447b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156149a3576149a2614925565b5b828202905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000614a0a602883614368565b9150614a15826149ae565b604082019050919050565b60006020820190508181036000830152614a39816149fd565b9050919050565b6000614a4b8261447b565b9150614a568361447b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a8b57614a8a614925565b5b828201905092915050565b7f63616e6e6f7420736574206275796261636b206d6f7265206f6674656e20746860008201527f616e206576657279203130206d696e7574657300000000000000000000000000602082015250565b6000614af2603383614368565b9150614afd82614a96565b604082019050919050565b60006020820190508181036000830152614b2181614ae5565b9050919050565b7f4d75737420736574206175746f204c50206275726e2070657263656e7420626560008201527f747765656e20302520616e642031302500000000000000000000000000000000602082015250565b6000614b84603083614368565b9150614b8f82614b28565b604082019050919050565b60006020820190508181036000830152614bb381614b77565b9050919050565b7f4d757374206b656570206665657320617420323525206f72206c657373000000600082015250565b6000614bf0601d83614368565b9150614bfb82614bba565b602082019050919050565b60006020820190508181036000830152614c1f81614be3565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614c82603983614368565b9150614c8d82614c26565b604082019050919050565b60006020820190508181036000830152614cb181614c75565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000614d14602583614368565b9150614d1f82614cb8565b604082019050919050565b60006020820190508181036000830152614d4381614d07565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614d848261447b565b9150614d8f8361447b565b925082614d9f57614d9e614d4a565b5b828204905092915050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b6000614e06603583614368565b9150614e1182614daa565b604082019050919050565b60006020820190508181036000830152614e3581614df9565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614e98603483614368565b9150614ea382614e3c565b604082019050919050565b60006020820190508181036000830152614ec781614e8b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614f2a602683614368565b9150614f3582614ece565b604082019050919050565b60006020820190508181036000830152614f5981614f1d565b9050919050565b7f4d757374207761697420666f7220636f6f6c646f776e20746f2066696e697368600082015250565b6000614f96602083614368565b9150614fa182614f60565b602082019050919050565b60006020820190508181036000830152614fc581614f89565b9050919050565b7f4d6179206e6f74206e756b65206d6f7265207468616e20313025206f6620746f60008201527f6b656e7320696e204c5000000000000000000000000000000000000000000000602082015250565b6000615028602a83614368565b915061503382614fcc565b604082019050919050565b600060208201905081810360008301526150578161501b565b9050919050565b60008151905061506d81614485565b92915050565b60006020828403121561508957615088614418565b5b60006150978482850161505e565b91505092915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006150fc602483614368565b9150615107826150a0565b604082019050919050565b6000602082019050818103600083015261512b816150ef565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061518e602283614368565b915061519982615132565b604082019050919050565b600060208201905081810360008301526151bd81615181565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000615220602583614368565b915061522b826151c4565b604082019050919050565b6000602082019050818103600083015261524f81615213565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006152b2602383614368565b91506152bd82615256565b604082019050919050565b600060208201905081810360008301526152e1816152a5565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b600061531e601683614368565b9150615329826152e8565b602082019050919050565b6000602082019050818103600083015261534d81615311565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006153d6604983614368565b91506153e182615354565b606082019050919050565b60006020820190508181036000830152615405816153c9565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000615468603583614368565b91506154738261540c565b604082019050919050565b600060208201905081810360008301526154978161545b565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006154d4601383614368565b91506154df8261549e565b602082019050919050565b60006020820190508181036000830152615503816154c7565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000615566603683614368565b91506155718261550a565b604082019050919050565b6000602082019050818103600083015261559581615559565b9050919050565b60006155a78261447b565b91506155b28361447b565b9250828210156155c5576155c4614925565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061562c602683614368565b9150615637826155d0565b604082019050919050565b6000602082019050818103600083015261565b8161561f565b9050919050565b600081905092915050565b50565b600061567d600083615662565b91506156888261566d565b600082019050919050565b600061569e82615670565b9150819050919050565b60006060820190506156bd60008301866145ce565b6156ca60208301856145ce565b6156d760408301846145ce565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061574c8161444f565b92915050565b60006020828403121561576857615767614418565b5b60006157768482850161573d565b91505092915050565b6000819050919050565b60006157a461579f61579a8461577f565b614554565b61447b565b9050919050565b6157b481615789565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6157ef8161443d565b82525050565b600061580183836157e6565b60208301905092915050565b6000602082019050919050565b6000615825826157ba565b61582f81856157c5565b935061583a836157d6565b8060005b8381101561586b57815161585288826157f5565b975061585d8361580d565b92505060018101905061583e565b5085935050505092915050565b600060a08201905061588d60008301886145ce565b61589a60208301876157ab565b81810360408301526158ac818661581a565b90506158bb6060830185614678565b6158c860808301846145ce565b9695505050505050565b600060c0820190506158e76000830189614678565b6158f460208301886145ce565b61590160408301876157ab565b61590e60608301866157ab565b61591b6080830185614678565b61592860a08301846145ce565b979650505050505050565b60008060006060848603121561594c5761594b614418565b5b600061595a8682870161505e565b935050602061596b8682870161505e565b925050604061597c8682870161505e565b915050925092509256fea2646970667358221220c63c50ecf2064ef7618edbf372a02467aabfbc0117e4608272054403cf23850664736f6c634300080a0033

Deployed Bytecode Sourcemap

33046:19339:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9861:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12028:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34703:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33136:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10981:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41697:157;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33701:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33516:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34487:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34447;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39242:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12679:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33239:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33611:45;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33572:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10823:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13580:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33194:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33799:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41862:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34253:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34405:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34294:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33879:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11152:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3096:103;;;;;;;;;;;;;:::i;:::-;;49967:555;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38350:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39494:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33331:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34179;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39865:435;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38143:155;;;;;;;;;;;;;:::i;:::-;;2445:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33368:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34329:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39757:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10080:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40950:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33755:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34527:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14298:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33663:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11492:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41458:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34924:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33839:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40760:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40308:444;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39372:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34097:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33401:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38737:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34145:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11730:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33443:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38532:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34216:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3354:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34367:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33483:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51326:1056;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9861:100;9915:13;9948:5;9941:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9861:100;:::o;12028:169::-;12111:4;12128:39;12137:12;:10;:12::i;:::-;12151:7;12160:6;12128:8;:39::i;:::-;12185:4;12178:11;;12028:169;;;;:::o;34703:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;33136:51::-;;;:::o;10981:108::-;11042:7;11069:12;;11062:19;;10981:108;:::o;41697:157::-;2676:12;:10;:12::i;:::-;2665:23;;:7;:5;:7::i;:::-;:23;;;2657:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41804:9:::1;;;;;;;;;;;41776:38;;41793:9;41776:38;;;;;;;;;;;;41837:9;41825;;:21;;;;;;;;;;;;;;;;;;41697:157:::0;:::o;33701:47::-;;;;:::o;33516:36::-;;;;:::o;34487:33::-;;;;:::o;34447:::-;;;;:::o;39242:122::-;2676:12;:10;:12::i;:::-;2665:23;;:7;:5;:7::i;:::-;:23;;;2657:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39349:6:::1;39339;:17;;;;:::i;:::-;39316:20;:40;;;;39242:122:::0;:::o;12679:492::-;12819:4;12836:36;12846:6;12854:9;12865:6;12836:9;:36::i;:::-;12885:24;12912:11;:19;12924:6;12912:19;;;;;;;;;;;;;;;:33;12932:12;:10;:12::i;:::-;12912:33;;;;;;;;;;;;;;;;12885:60;;12984:6;12964:16;:26;;12956:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;13071:57;13080:6;13088:12;:10;:12::i;:::-;13121:6;13102:16;:25;13071:8;:57::i;:::-;13159:4;13152:11;;;12679:492;;;;;:::o;33239:53::-;33285:6;33239:53;:::o;33611:45::-;;;;:::o;33572:32::-;;;;;;;;;;;;;:::o;10823:93::-;10881:5;10906:2;10899:9;;10823:93;:::o;13580:215::-;13668:4;13685:80;13694:12;:10;:12::i;:::-;13708:7;13754:10;13717:11;:25;13729:12;:10;:12::i;:::-;13717:25;;;;;;;;;;;;;;;:34;13743:7;13717:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13685:8;:80::i;:::-;13783:4;13776:11;;13580:215;;;;:::o;33194:38::-;;;:::o;33799:33::-;;;;;;;;;;;;;:::o;41862:126::-;41928:4;41952:19;:28;41972:7;41952:28;;;;;;;;;;;;;;;;;;;;;;;;;41945:35;;41862:126;;;:::o;34253:32::-;;;;:::o;34405:33::-;;;;:::o;34294:28::-;;;;:::o;33879:31::-;;;;;;;;;;;;;:::o;11152:127::-;11226:7;11253:9;:18;11263:7;11253:18;;;;;;;;;;;;;;;;11246:25;;11152:127;;;:::o;3096:103::-;2676:12;:10;:12::i;:::-;2665:23;;:7;:5;:7::i;:::-;:23;;;2657:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3161:30:::1;3188:1;3161:18;:30::i;:::-;3096:103::o:0;49967:555::-;2676:12;:10;:12::i;:::-;2665:23;;:7;:5;:7::i;:::-;:23;;;2657:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50169:3:::1;50146:19;:26;;50124:127;;;;;;;;;;;;:::i;:::-;;;;;;;;;50296:4;50284:8;:16;;:33;;;;;50316:1;50304:8;:13;;50284:33;50262:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;50422:19;50404:15;:37;;;;50471:8;50452:16;:27;;;;50506:8;50490:13;;:24;;;;;;;;;;;;;;;;;;49967:555:::0;;;:::o;38350:121::-;38402:4;2676:12;:10;:12::i;:::-;2665:23;;:7;:5;:7::i;:::-;:23;;;2657:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38436:5:::1;38419:14;;:22;;;;;;;;;;;;;;;;;;38459:4;38452:11;;38350:121:::0;:::o;39494:167::-;2676:12;:10;:12::i;:::-;2665:23;;:7;:5;:7::i;:::-;:23;;;2657:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39649:4:::1;39607:31;:39;39639:6;39607:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39494:167:::0;;:::o;33331:30::-;;;;;;;;;;;;;:::o;34179:::-;;;;:::o;39865:435::-;2676:12;:10;:12::i;:::-;2665:23;;:7;:5;:7::i;:::-;:23;;;2657:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40041:13:::1;40023:15;:31;;;;40083:13;40065:15;:31;;;;40127:15;40107:17;:35;;;;40204:17;;40186:15;;40168;;:33;;;;:::i;:::-;:53;;;;:::i;:::-;40153:12;:68;;;;40256:2;40240:12;;:18;;40232:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;39865:435:::0;;;:::o;38143:155::-;2676:12;:10;:12::i;:::-;2665:23;;:7;:5;:7::i;:::-;:23;;;2657:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38214:4:::1;38198:13;;:20;;;;;;;;;;;;;;;;;;38243:4;38229:11;;:18;;;;;;;;;;;;;;;;;;38275:15;38258:14;:32;;;;38143:155::o:0;2445:87::-;2491:7;2518:6;;;;;;;;;;;2511:13;;2445:87;:::o;33368:24::-;;;;;;;;;;;;;:::o;34329:31::-;;;;:::o;39757:100::-;2676:12;:10;:12::i;:::-;2665:23;;:7;:5;:7::i;:::-;:23;;;2657:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39842:7:::1;39828:11;;:21;;;;;;;;;;;;;;;;;;39757:100:::0;:::o;10080:104::-;10136:13;10169:7;10162:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10080:104;:::o;40950:304::-;2676:12;:10;:12::i;:::-;2665:23;;:7;:5;:7::i;:::-;:23;;;2657:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41094:13:::1;41086:21;;:4;:21;;;;41064:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;41205:41;41234:4;41240:5;41205:28;:41::i;:::-;40950:304:::0;;:::o;33755:35::-;;;;:::o;34527:27::-;;;;:::o;14298:413::-;14391:4;14408:24;14435:11;:25;14447:12;:10;:12::i;:::-;14435:25;;;;;;;;;;;;;;;:34;14461:7;14435:34;;;;;;;;;;;;;;;;14408:61;;14508:15;14488:16;:35;;14480:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14601:67;14610:12;:10;:12::i;:::-;14624:7;14652:15;14633:16;:34;14601:8;:67::i;:::-;14699:4;14692:11;;;14298:413;;;;:::o;33663:29::-;;;;:::o;11492:175::-;11578:4;11595:42;11605:12;:10;:12::i;:::-;11619:9;11630:6;11595:9;:42::i;:::-;11655:4;11648:11;;11492:175;;;;:::o;41458:231::-;2676:12;:10;:12::i;:::-;2665:23;;:7;:5;:7::i;:::-;:23;;;2657:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41618:15:::1;;;;;;;;;;;41575:59;;41598:18;41575:59;;;;;;;;;;;;41663:18;41645:15;;:36;;;;;;;;;;;;;;;;;;41458:231:::0;:::o;34924:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33839:33::-;;;;;;;;;;;;;:::o;40760:182::-;2676:12;:10;:12::i;:::-;2665:23;;:7;:5;:7::i;:::-;:23;;;2657:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40876:8:::1;40845:19;:28;40865:7;40845:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40916:7;40900:34;;;40925:8;40900:34;;;;;;:::i;:::-;;;;;;;;40760:182:::0;;:::o;40308:444::-;2676:12;:10;:12::i;:::-;2665:23;;:7;:5;:7::i;:::-;:23;;;2657:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40486:13:::1;40467:16;:32;;;;40529:13;40510:16;:32;;;;40574:15;40553:18;:36;;;;40654:18;;40635:16;;40616;;:35;;;;:::i;:::-;:56;;;;:::i;:::-;40600:13;:72;;;;40708:2;40691:13;;:19;;40683:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;40308:444:::0;;;:::o;39372:114::-;2676:12;:10;:12::i;:::-;2665:23;;:7;:5;:7::i;:::-;:23;;;2657:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39471:6:::1;39461;:17;;;;:::i;:::-;39449:9;:29;;;;39372:114:::0;:::o;34097:39::-;;;;;;;;;;;;;:::o;33401:35::-;;;;:::o;38737:497::-;38845:4;2676:12;:10;:12::i;:::-;2665:23;;:7;:5;:7::i;:::-;:23;;;2657:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38924:6:::1;38919:1;38903:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38902:28;;;;:::i;:::-;38889:9;:41;;38867:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;39079:4;39074:1;39058:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39057:26;;;;:::i;:::-;39044:9;:39;;39022:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;39195:9;39174:18;:30;;;;39222:4;39215:11;;38737:497:::0;;;:::o;34145:27::-;;;;:::o;11730:151::-;11819:7;11846:11;:18;11858:5;11846:18;;;;;;;;;;;;;;;:27;11865:7;11846:27;;;;;;;;;;;;;;;;11839:34;;11730:151;;;;:::o;33443:33::-;;;;:::o;38532:135::-;38592:4;2676:12;:10;:12::i;:::-;2665:23;;:7;:5;:7::i;:::-;:23;;;2657:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38632:5:::1;38609:20;;:28;;;;;;;;;;;;;;;;;;38655:4;38648:11;;38532:135:::0;:::o;34216:30::-;;;;:::o;3354:201::-;2676:12;:10;:12::i;:::-;2665:23;;:7;:5;:7::i;:::-;:23;;;2657:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3463:1:::1;3443:22;;:8;:22;;;;3435:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3519:28;3538:8;3519:18;:28::i;:::-;3354:201:::0;:::o;34367:31::-;;;;:::o;33483:24::-;;;;:::o;51326:1056::-;51437:4;2676:12;:10;:12::i;:::-;2665:23;;:7;:5;:7::i;:::-;:23;;;2657:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51522:19:::1;;51499:20;;:42;;;;:::i;:::-;51481:15;:60;51459:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;51631:4;51620:7;:15;;51612:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;51716:15;51693:20;:38;;;;51786:28;51817:4;:14;;;51832:13;51817:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;51786:60;;51896:20;51919:44;51957:5;51919:33;51944:7;51919:20;:24;;:33;;;;:::i;:::-;:37;;:44;;;;:::i;:::-;51896:67;;52083:1;52068:12;:16;52064:110;;;52101:61;52117:13;52140:6;52149:12;52101:15;:61::i;:::-;52064:110;52249:19;52286:13;52249:51;;52311:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;52338:14;;;;;;;;;;52370:4;52363:11;;;;;51326:1056:::0;;;:::o;1118:98::-;1171:7;1198:10;1191:17;;1118:98;:::o;17982:380::-;18135:1;18118:19;;:5;:19;;;;18110:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18216:1;18197:21;;:7;:21;;;;18189:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18300:6;18270:11;:18;18282:5;18270:18;;;;;;;;;;;;;;;:27;18289:7;18270:27;;;;;;;;;;;;;;;:36;;;;18338:7;18322:32;;18331:5;18322:32;;;18347:6;18322:32;;;;;;:::i;:::-;;;;;;;;17982:380;;;:::o;42046:5027::-;42194:1;42178:18;;:4;:18;;;;42170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42271:1;42257:16;;:2;:16;;;;42249:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;42340:1;42330:6;:11;42326:93;;;42358:28;42374:4;42380:2;42384:1;42358:15;:28::i;:::-;42401:7;;42326:93;42435:14;;;;;;;;;;;42431:2487;;;42496:7;:5;:7::i;:::-;42488:15;;:4;:15;;;;:49;;;;;42530:7;:5;:7::i;:::-;42524:13;;:2;:13;;;;42488:49;:86;;;;;42572:1;42558:16;;:2;:16;;;;42488:86;:128;;;;;42609:6;42595:21;;:2;:21;;;;42488:128;:158;;;;;42638:8;;;;;;;;;;;42637:9;42488:158;42466:2441;;;42686:13;;;;;;;;;;;42681:223;;42758:19;:25;42778:4;42758:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42787:19;:23;42807:2;42787:23;;;;;;;;;;;;;;;;;;;;;;;;;42758:52;42724:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;42681:223;43060:20;;;;;;;;;;;43056:641;;;43141:7;:5;:7::i;:::-;43135:13;;:2;:13;;;;:72;;;;;43191:15;43177:30;;:2;:30;;;;43135:72;:129;;;;;43250:13;43236:28;;:2;:28;;;;43135:129;43105:573;;;43428:12;43353:28;:39;43382:9;43353:39;;;;;;;;;;;;;;;;:87;43315:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;43642:12;43600:28;:39;43629:9;43600:39;;;;;;;;;;;;;;;:54;;;;43105:573;43056:641;43771:25;:31;43797:4;43771:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43828:31;:35;43860:2;43828:35;;;;;;;;;;;;;;;;;;;;;;;;;43827:36;43771:92;43745:1147;;;43950:20;;43940:6;:30;;43906:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;44158:9;;44141:13;44151:2;44141:9;:13::i;:::-;44132:6;:22;;;;:::i;:::-;:35;;44098:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43745:1147;;;44336:25;:29;44362:2;44336:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;44391:31;:37;44423:4;44391:37;;;;;;;;;;;;;;;;;;;;;;;;;44390:38;44336:92;44310:582;;;44515:20;;44505:6;:30;;44471:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;44310:582;;;44672:31;:35;44704:2;44672:35;;;;;;;;;;;;;;;;;;;;;;;;;44667:225;;44792:9;;44775:13;44785:2;44775:9;:13::i;:::-;44766:6;:22;;;;:::i;:::-;:35;;44732:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44667:225;44310:582;43745:1147;42466:2441;42431:2487;44930:28;44961:24;44979:4;44961:9;:24::i;:::-;44930:55;;44998:12;45037:18;;45013:20;:42;;44998:57;;45086:7;:35;;;;;45110:11;;;;;;;;;;;45086:35;:61;;;;;45139:8;;;;;;;;;;;45138:9;45086:61;:110;;;;;45165:25;:31;45191:4;45165:31;;;;;;;;;;;;;;;;;;;;;;;;;45164:32;45086:110;:153;;;;;45214:19;:25;45234:4;45214:25;;;;;;;;;;;;;;;;;;;;;;;;;45213:26;45086:153;:194;;;;;45257:19;:23;45277:2;45257:23;;;;;;;;;;;;;;;;;;;;;;;;;45256:24;45086:194;45068:326;;;45318:4;45307:8;;:15;;;;;;;;;;;;;;;;;;45339:10;:8;:10::i;:::-;45377:5;45366:8;;:16;;;;;;;;;;;;;;;;;;45068:326;45425:8;;;;;;;;;;;45424:9;:55;;;;;45450:25;:29;45476:2;45450:29;;;;;;;;;;;;;;;;;;;;;;;;;45424:55;:85;;;;;45496:13;;;;;;;;;;;45424:85;:153;;;;;45562:15;;45545:14;;:32;;;;:::i;:::-;45526:15;:51;;45424:153;:196;;;;;45595:19;:25;45615:4;45595:25;;;;;;;;;;;;;;;;;;;;;;;;;45594:26;45424:196;45406:282;;;45647:29;:27;:29::i;:::-;;45406:282;45700:12;45716:8;;;;;;;;;;;45715:9;45700:24;;45826:19;:25;45846:4;45826:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;45855:19;:23;45875:2;45855:23;;;;;;;;;;;;;;;;;;;;;;;;;45826:52;45822:100;;;45905:5;45895:15;;45822:100;45934:12;46039:7;46035:985;;;46091:25;:29;46117:2;46091:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;46140:1;46124:13;;:17;46091:50;46087:784;;;46169:34;46199:3;46169:25;46180:13;;46169:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;46162:41;;46272:13;;46252:16;;46245:4;:23;;;;:::i;:::-;46244:41;;;;:::i;:::-;46222:18;;:63;;;;;;;:::i;:::-;;;;;;;;46350:13;;46328:18;;46321:4;:25;;;;:::i;:::-;46320:43;;;;:::i;:::-;46304:12;;:59;;;;;;;:::i;:::-;;;;;;;;46432:13;;46412:16;;46405:4;:23;;;;:::i;:::-;46404:41;;;;:::i;:::-;46382:18;;:63;;;;;;;:::i;:::-;;;;;;;;46087:784;;;46507:25;:31;46533:4;46507:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;46557:1;46542:12;;:16;46507:51;46503:368;;;46586:33;46615:3;46586:24;46597:12;;46586:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;46579:40;;46687:12;;46668:15;;46661:4;:22;;;;:::i;:::-;46660:39;;;;:::i;:::-;46638:18;;:61;;;;;;;:::i;:::-;;;;;;;;46763:12;;46742:17;;46735:4;:24;;;;:::i;:::-;46734:41;;;;:::i;:::-;46718:12;;:57;;;;;;;:::i;:::-;;;;;;;;46843:12;;46824:15;;46817:4;:22;;;;:::i;:::-;46816:39;;;;:::i;:::-;46794:18;;:61;;;;;;;:::i;:::-;;;;;;;;46503:368;46087:784;46898:1;46891:4;:8;46887:91;;;46920:42;46936:4;46950;46957;46920:15;:42::i;:::-;46887:91;47004:4;46994:14;;;;;:::i;:::-;;;46035:985;47032:33;47048:4;47054:2;47058:6;47032:15;:33::i;:::-;42159:4914;;;;42046:5027;;;;:::o;3715:191::-;3789:16;3808:6;;;;;;;;;;;3789:25;;3834:8;3825:6;;:17;;;;;;;;;;;;;;;;;;3889:8;3858:40;;3879:8;3858:40;;;;;;;;;;;;3778:128;3715:191;:::o;41262:188::-;41379:5;41345:25;:31;41371:4;41345:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41436:5;41402:40;;41430:4;41402:40;;;;;;;;;;;;41262:188;;:::o;23435:98::-;23493:7;23524:1;23520;:5;;;;:::i;:::-;23513:12;;23435:98;;;;:::o;23834:::-;23892:7;23923:1;23919;:5;;;;:::i;:::-;23912:12;;23834:98;;;;:::o;15201:733::-;15359:1;15341:20;;:6;:20;;;;15333:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15443:1;15422:23;;:9;:23;;;;15414:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15498:47;15519:6;15527:9;15538:6;15498:20;:47::i;:::-;15558:21;15582:9;:17;15592:6;15582:17;;;;;;;;;;;;;;;;15558:41;;15635:6;15618:13;:23;;15610:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15756:6;15740:13;:22;15720:9;:17;15730:6;15720:17;;;;;;;;;;;;;;;:42;;;;15808:6;15784:9;:20;15794:9;15784:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15849:9;15832:35;;15841:6;15832:35;;;15860:6;15832:35;;;;;;:::i;:::-;;;;;;;;15880:46;15900:6;15908:9;15919:6;15880:19;:46::i;:::-;15322:612;15201:733;;;:::o;48203:1756::-;48242:23;48268:24;48286:4;48268:9;:24::i;:::-;48242:50;;48303:25;48399:12;;48365:18;;48331;;:52;;;;:::i;:::-;:80;;;;:::i;:::-;48303:108;;48422:12;48470:1;48451:15;:20;:46;;;;48496:1;48475:17;:22;48451:46;48447:85;;;48514:7;;;;;48447:85;48587:2;48566:18;;:23;;;;:::i;:::-;48548:15;:41;48544:115;;;48645:2;48624:18;;:23;;;;:::i;:::-;48606:41;;48544:115;48720:23;48833:1;48800:17;48765:18;;48747:15;:36;;;;:::i;:::-;48746:71;;;;:::i;:::-;:88;;;;:::i;:::-;48720:114;;48845:26;48874:36;48894:15;48874;:19;;:36;;;;:::i;:::-;48845:65;;48923:25;48951:21;48923:49;;48985:36;49002:18;48985:16;:36::i;:::-;49034:18;49055:44;49081:17;49055:21;:25;;:44;;;;:::i;:::-;49034:65;;49112:23;49138:81;49191:17;49138:34;49153:18;;49138:10;:14;;:34;;;;:::i;:::-;:38;;:81;;;;:::i;:::-;49112:107;;49230:17;49250:51;49283:17;49250:28;49265:12;;49250:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;49230:71;;49314:23;49371:9;49353:15;49340:10;:28;;;;:::i;:::-;:40;;;;:::i;:::-;49314:66;;49414:1;49393:18;:22;;;;49447:1;49426:18;:22;;;;49474:1;49459:12;:16;;;;49510:9;;;;;;;;;;;49502:23;;49533:9;49502:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49488:59;;;;;49582:1;49564:15;:19;:42;;;;;49605:1;49587:15;:19;49564:42;49560:278;;;49623:46;49636:15;49653;49623:12;:46::i;:::-;49689:137;49722:18;49759:15;49793:18;;49689:137;;;;;;;;:::i;:::-;;;;;;;;49560:278;49872:15;;;;;;;;;;;49864:29;;49915:21;49864:87;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49850:101;;;;;48231:1728;;;;;;;;;;48203:1756;:::o;50530:788::-;50587:4;50621:15;50604:14;:32;;;;50691:28;50722:4;:14;;;50737:13;50722:29;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;50691:60;;50801:20;50824:77;50885:5;50824:42;50849:16;;50824:20;:24;;:42;;;;:::i;:::-;:46;;:77;;;;:::i;:::-;50801:100;;51021:1;51006:12;:16;51002:110;;;51039:61;51055:13;51078:6;51087:12;51039:15;:61::i;:::-;51002:110;51187:19;51224:13;51187:51;;51249:4;:9;;;:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51276:12;;;;;;;;;;51306:4;51299:11;;;;;50530:788;:::o;18962:125::-;;;;:::o;19691:124::-;;;;:::o;23078:98::-;23136:7;23167:1;23163;:5;;;;:::i;:::-;23156:12;;23078:98;;;;:::o;47081:589::-;47207:21;47245:1;47231:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47207:40;;47276:4;47258;47263:1;47258:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;47302:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;47292:4;47297:1;47292:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;47337:62;47354:4;47369:15;47387:11;47337:8;:62::i;:::-;47438:15;:66;;;47519:11;47545:1;47589:4;47616;47636:15;47438:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47136:534;47081:589;:::o;47678:517::-;47826:62;47843:4;47858:15;47876:11;47826:8;:62::i;:::-;47931:15;:31;;;47970:9;48003:4;48023:11;48049:1;48092;33285:6;48161:15;47931:256;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47678:517;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:60::-;3857:3;3878:5;3871:12;;3829:60;;;:::o;3895:142::-;3945:9;3978:53;3996:34;4005:24;4023:5;4005:24;:::i;:::-;3996:34;:::i;:::-;3978:53;:::i;:::-;3965:66;;3895:142;;;:::o;4043:126::-;4093:9;4126:37;4157:5;4126:37;:::i;:::-;4113:50;;4043:126;;;:::o;4175:153::-;4252:9;4285:37;4316:5;4285:37;:::i;:::-;4272:50;;4175:153;;;:::o;4334:185::-;4448:64;4506:5;4448:64;:::i;:::-;4443:3;4436:77;4334:185;;:::o;4525:276::-;4645:4;4683:2;4672:9;4668:18;4660:26;;4696:98;4791:1;4780:9;4776:17;4767:6;4696:98;:::i;:::-;4525:276;;;;:::o;4807:118::-;4894:24;4912:5;4894:24;:::i;:::-;4889:3;4882:37;4807:118;;:::o;4931:222::-;5024:4;5062:2;5051:9;5047:18;5039:26;;5075:71;5143:1;5132:9;5128:17;5119:6;5075:71;:::i;:::-;4931:222;;;;:::o;5159:329::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:119;;;5273:79;;:::i;:::-;5235:119;5393:1;5418:53;5463:7;5454:6;5443:9;5439:22;5418:53;:::i;:::-;5408:63;;5364:117;5159:329;;;;:::o;5494:619::-;5571:6;5579;5587;5636:2;5624:9;5615:7;5611:23;5607:32;5604:119;;;5642:79;;:::i;:::-;5604:119;5762:1;5787:53;5832:7;5823:6;5812:9;5808:22;5787:53;:::i;:::-;5777:63;;5733:117;5889:2;5915:53;5960:7;5951:6;5940:9;5936:22;5915:53;:::i;:::-;5905:63;;5860:118;6017:2;6043:53;6088:7;6079:6;6068:9;6064:22;6043:53;:::i;:::-;6033:63;;5988:118;5494:619;;;;;:::o;6119:118::-;6206:24;6224:5;6206:24;:::i;:::-;6201:3;6194:37;6119:118;;:::o;6243:222::-;6336:4;6374:2;6363:9;6359:18;6351:26;;6387:71;6455:1;6444:9;6440:17;6431:6;6387:71;:::i;:::-;6243:222;;;;:::o;6471:86::-;6506:7;6546:4;6539:5;6535:16;6524:27;;6471:86;;;:::o;6563:112::-;6646:22;6662:5;6646:22;:::i;:::-;6641:3;6634:35;6563:112;;:::o;6681:214::-;6770:4;6808:2;6797:9;6793:18;6785:26;;6821:67;6885:1;6874:9;6870:17;6861:6;6821:67;:::i;:::-;6681:214;;;;:::o;6901:116::-;6971:21;6986:5;6971:21;:::i;:::-;6964:5;6961:32;6951:60;;7007:1;7004;6997:12;6951:60;6901:116;:::o;7023:133::-;7066:5;7104:6;7091:20;7082:29;;7120:30;7144:5;7120:30;:::i;:::-;7023:133;;;;:::o;7162:613::-;7236:6;7244;7252;7301:2;7289:9;7280:7;7276:23;7272:32;7269:119;;;7307:79;;:::i;:::-;7269:119;7427:1;7452:53;7497:7;7488:6;7477:9;7473:22;7452:53;:::i;:::-;7442:63;;7398:117;7554:2;7580:53;7625:7;7616:6;7605:9;7601:22;7580:53;:::i;:::-;7570:63;;7525:118;7682:2;7708:50;7750:7;7741:6;7730:9;7726:22;7708:50;:::i;:::-;7698:60;;7653:115;7162:613;;;;;:::o;7781:468::-;7846:6;7854;7903:2;7891:9;7882:7;7878:23;7874:32;7871:119;;;7909:79;;:::i;:::-;7871:119;8029:1;8054:53;8099:7;8090:6;8079:9;8075:22;8054:53;:::i;:::-;8044:63;;8000:117;8156:2;8182:50;8224:7;8215:6;8204:9;8200:22;8182:50;:::i;:::-;8172:60;;8127:115;7781:468;;;;;:::o;8255:619::-;8332:6;8340;8348;8397:2;8385:9;8376:7;8372:23;8368:32;8365:119;;;8403:79;;:::i;:::-;8365:119;8523:1;8548:53;8593:7;8584:6;8573:9;8569:22;8548:53;:::i;:::-;8538:63;;8494:117;8650:2;8676:53;8721:7;8712:6;8701:9;8697:22;8676:53;:::i;:::-;8666:63;;8621:118;8778:2;8804:53;8849:7;8840:6;8829:9;8825:22;8804:53;:::i;:::-;8794:63;;8749:118;8255:619;;;;;:::o;8880:323::-;8936:6;8985:2;8973:9;8964:7;8960:23;8956:32;8953:119;;;8991:79;;:::i;:::-;8953:119;9111:1;9136:50;9178:7;9169:6;9158:9;9154:22;9136:50;:::i;:::-;9126:60;;9082:114;8880:323;;;;:::o;9209:474::-;9277:6;9285;9334:2;9322:9;9313:7;9309:23;9305:32;9302:119;;;9340:79;;:::i;:::-;9302:119;9460:1;9485:53;9530:7;9521:6;9510:9;9506:22;9485:53;:::i;:::-;9475:63;;9431:117;9587:2;9613:53;9658:7;9649:6;9638:9;9634:22;9613:53;:::i;:::-;9603:63;;9558:118;9209:474;;;;;:::o;9689:180::-;9737:77;9734:1;9727:88;9834:4;9831:1;9824:15;9858:4;9855:1;9848:15;9875:320;9919:6;9956:1;9950:4;9946:12;9936:22;;10003:1;9997:4;9993:12;10024:18;10014:81;;10080:4;10072:6;10068:17;10058:27;;10014:81;10142:2;10134:6;10131:14;10111:18;10108:38;10105:84;;;10161:18;;:::i;:::-;10105:84;9926:269;9875:320;;;:::o;10201:182::-;10341:34;10337:1;10329:6;10325:14;10318:58;10201:182;:::o;10389:366::-;10531:3;10552:67;10616:2;10611:3;10552:67;:::i;:::-;10545:74;;10628:93;10717:3;10628:93;:::i;:::-;10746:2;10741:3;10737:12;10730:19;;10389:366;;;:::o;10761:419::-;10927:4;10965:2;10954:9;10950:18;10942:26;;11014:9;11008:4;11004:20;11000:1;10989:9;10985:17;10978:47;11042:131;11168:4;11042:131;:::i;:::-;11034:139;;10761:419;;;:::o;11186:180::-;11234:77;11231:1;11224:88;11331:4;11328:1;11321:15;11355:4;11352:1;11345:15;11372:348;11412:7;11435:20;11453:1;11435:20;:::i;:::-;11430:25;;11469:20;11487:1;11469:20;:::i;:::-;11464:25;;11657:1;11589:66;11585:74;11582:1;11579:81;11574:1;11567:9;11560:17;11556:105;11553:131;;;11664:18;;:::i;:::-;11553:131;11712:1;11709;11705:9;11694:20;;11372:348;;;;:::o;11726:227::-;11866:34;11862:1;11854:6;11850:14;11843:58;11935:10;11930:2;11922:6;11918:15;11911:35;11726:227;:::o;11959:366::-;12101:3;12122:67;12186:2;12181:3;12122:67;:::i;:::-;12115:74;;12198:93;12287:3;12198:93;:::i;:::-;12316:2;12311:3;12307:12;12300:19;;11959:366;;;:::o;12331:419::-;12497:4;12535:2;12524:9;12520:18;12512:26;;12584:9;12578:4;12574:20;12570:1;12559:9;12555:17;12548:47;12612:131;12738:4;12612:131;:::i;:::-;12604:139;;12331:419;;;:::o;12756:305::-;12796:3;12815:20;12833:1;12815:20;:::i;:::-;12810:25;;12849:20;12867:1;12849:20;:::i;:::-;12844:25;;13003:1;12935:66;12931:74;12928:1;12925:81;12922:107;;;13009:18;;:::i;:::-;12922:107;13053:1;13050;13046:9;13039:16;;12756:305;;;;:::o;13067:238::-;13207:34;13203:1;13195:6;13191:14;13184:58;13276:21;13271:2;13263:6;13259:15;13252:46;13067:238;:::o;13311:366::-;13453:3;13474:67;13538:2;13533:3;13474:67;:::i;:::-;13467:74;;13550:93;13639:3;13550:93;:::i;:::-;13668:2;13663:3;13659:12;13652:19;;13311:366;;;:::o;13683:419::-;13849:4;13887:2;13876:9;13872:18;13864:26;;13936:9;13930:4;13926:20;13922:1;13911:9;13907:17;13900:47;13964:131;14090:4;13964:131;:::i;:::-;13956:139;;13683:419;;;:::o;14108:235::-;14248:34;14244:1;14236:6;14232:14;14225:58;14317:18;14312:2;14304:6;14300:15;14293:43;14108:235;:::o;14349:366::-;14491:3;14512:67;14576:2;14571:3;14512:67;:::i;:::-;14505:74;;14588:93;14677:3;14588:93;:::i;:::-;14706:2;14701:3;14697:12;14690:19;;14349:366;;;:::o;14721:419::-;14887:4;14925:2;14914:9;14910:18;14902:26;;14974:9;14968:4;14964:20;14960:1;14949:9;14945:17;14938:47;15002:131;15128:4;15002:131;:::i;:::-;14994:139;;14721:419;;;:::o;15146:179::-;15286:31;15282:1;15274:6;15270:14;15263:55;15146:179;:::o;15331:366::-;15473:3;15494:67;15558:2;15553:3;15494:67;:::i;:::-;15487:74;;15570:93;15659:3;15570:93;:::i;:::-;15688:2;15683:3;15679:12;15672:19;;15331:366;;;:::o;15703:419::-;15869:4;15907:2;15896:9;15892:18;15884:26;;15956:9;15950:4;15946:20;15942:1;15931:9;15927:17;15920:47;15984:131;16110:4;15984:131;:::i;:::-;15976:139;;15703:419;;;:::o;16128:244::-;16268:34;16264:1;16256:6;16252:14;16245:58;16337:27;16332:2;16324:6;16320:15;16313:52;16128:244;:::o;16378:366::-;16520:3;16541:67;16605:2;16600:3;16541:67;:::i;:::-;16534:74;;16617:93;16706:3;16617:93;:::i;:::-;16735:2;16730:3;16726:12;16719:19;;16378:366;;;:::o;16750:419::-;16916:4;16954:2;16943:9;16939:18;16931:26;;17003:9;16997:4;16993:20;16989:1;16978:9;16974:17;16967:47;17031:131;17157:4;17031:131;:::i;:::-;17023:139;;16750:419;;;:::o;17175:224::-;17315:34;17311:1;17303:6;17299:14;17292:58;17384:7;17379:2;17371:6;17367:15;17360:32;17175:224;:::o;17405:366::-;17547:3;17568:67;17632:2;17627:3;17568:67;:::i;:::-;17561:74;;17644:93;17733:3;17644:93;:::i;:::-;17762:2;17757:3;17753:12;17746:19;;17405:366;;;:::o;17777:419::-;17943:4;17981:2;17970:9;17966:18;17958:26;;18030:9;18024:4;18020:20;18016:1;18005:9;18001:17;17994:47;18058:131;18184:4;18058:131;:::i;:::-;18050:139;;17777:419;;;:::o;18202:180::-;18250:77;18247:1;18240:88;18347:4;18344:1;18337:15;18371:4;18368:1;18361:15;18388:185;18428:1;18445:20;18463:1;18445:20;:::i;:::-;18440:25;;18479:20;18497:1;18479:20;:::i;:::-;18474:25;;18518:1;18508:35;;18523:18;;:::i;:::-;18508:35;18565:1;18562;18558:9;18553:14;;18388:185;;;;:::o;18579:240::-;18719:34;18715:1;18707:6;18703:14;18696:58;18788:23;18783:2;18775:6;18771:15;18764:48;18579:240;:::o;18825:366::-;18967:3;18988:67;19052:2;19047:3;18988:67;:::i;:::-;18981:74;;19064:93;19153:3;19064:93;:::i;:::-;19182:2;19177:3;19173:12;19166:19;;18825:366;;;:::o;19197:419::-;19363:4;19401:2;19390:9;19386:18;19378:26;;19450:9;19444:4;19440:20;19436:1;19425:9;19421:17;19414:47;19478:131;19604:4;19478:131;:::i;:::-;19470:139;;19197:419;;;:::o;19622:239::-;19762:34;19758:1;19750:6;19746:14;19739:58;19831:22;19826:2;19818:6;19814:15;19807:47;19622:239;:::o;19867:366::-;20009:3;20030:67;20094:2;20089:3;20030:67;:::i;:::-;20023:74;;20106:93;20195:3;20106:93;:::i;:::-;20224:2;20219:3;20215:12;20208:19;;19867:366;;;:::o;20239:419::-;20405:4;20443:2;20432:9;20428:18;20420:26;;20492:9;20486:4;20482:20;20478:1;20467:9;20463:17;20456:47;20520:131;20646:4;20520:131;:::i;:::-;20512:139;;20239:419;;;:::o;20664:225::-;20804:34;20800:1;20792:6;20788:14;20781:58;20873:8;20868:2;20860:6;20856:15;20849:33;20664:225;:::o;20895:366::-;21037:3;21058:67;21122:2;21117:3;21058:67;:::i;:::-;21051:74;;21134:93;21223:3;21134:93;:::i;:::-;21252:2;21247:3;21243:12;21236:19;;20895:366;;;:::o;21267:419::-;21433:4;21471:2;21460:9;21456:18;21448:26;;21520:9;21514:4;21510:20;21506:1;21495:9;21491:17;21484:47;21548:131;21674:4;21548:131;:::i;:::-;21540:139;;21267:419;;;:::o;21692:182::-;21832:34;21828:1;21820:6;21816:14;21809:58;21692:182;:::o;21880:366::-;22022:3;22043:67;22107:2;22102:3;22043:67;:::i;:::-;22036:74;;22119:93;22208:3;22119:93;:::i;:::-;22237:2;22232:3;22228:12;22221:19;;21880:366;;;:::o;22252:419::-;22418:4;22456:2;22445:9;22441:18;22433:26;;22505:9;22499:4;22495:20;22491:1;22480:9;22476:17;22469:47;22533:131;22659:4;22533:131;:::i;:::-;22525:139;;22252:419;;;:::o;22677:229::-;22817:34;22813:1;22805:6;22801:14;22794:58;22886:12;22881:2;22873:6;22869:15;22862:37;22677:229;:::o;22912:366::-;23054:3;23075:67;23139:2;23134:3;23075:67;:::i;:::-;23068:74;;23151:93;23240:3;23151:93;:::i;:::-;23269:2;23264:3;23260:12;23253:19;;22912:366;;;:::o;23284:419::-;23450:4;23488:2;23477:9;23473:18;23465:26;;23537:9;23531:4;23527:20;23523:1;23512:9;23508:17;23501:47;23565:131;23691:4;23565:131;:::i;:::-;23557:139;;23284:419;;;:::o;23709:143::-;23766:5;23797:6;23791:13;23782:22;;23813:33;23840:5;23813:33;:::i;:::-;23709:143;;;;:::o;23858:351::-;23928:6;23977:2;23965:9;23956:7;23952:23;23948:32;23945:119;;;23983:79;;:::i;:::-;23945:119;24103:1;24128:64;24184:7;24175:6;24164:9;24160:22;24128:64;:::i;:::-;24118:74;;24074:128;23858:351;;;;:::o;24215:223::-;24355:34;24351:1;24343:6;24339:14;24332:58;24424:6;24419:2;24411:6;24407:15;24400:31;24215:223;:::o;24444:366::-;24586:3;24607:67;24671:2;24666:3;24607:67;:::i;:::-;24600:74;;24683:93;24772:3;24683:93;:::i;:::-;24801:2;24796:3;24792:12;24785:19;;24444:366;;;:::o;24816:419::-;24982:4;25020:2;25009:9;25005:18;24997:26;;25069:9;25063:4;25059:20;25055:1;25044:9;25040:17;25033:47;25097:131;25223:4;25097:131;:::i;:::-;25089:139;;24816:419;;;:::o;25241:221::-;25381:34;25377:1;25369:6;25365:14;25358:58;25450:4;25445:2;25437:6;25433:15;25426:29;25241:221;:::o;25468:366::-;25610:3;25631:67;25695:2;25690:3;25631:67;:::i;:::-;25624:74;;25707:93;25796:3;25707:93;:::i;:::-;25825:2;25820:3;25816:12;25809:19;;25468:366;;;:::o;25840:419::-;26006:4;26044:2;26033:9;26029:18;26021:26;;26093:9;26087:4;26083:20;26079:1;26068:9;26064:17;26057:47;26121:131;26247:4;26121:131;:::i;:::-;26113:139;;25840:419;;;:::o;26265:224::-;26405:34;26401:1;26393:6;26389:14;26382:58;26474:7;26469:2;26461:6;26457:15;26450:32;26265:224;:::o;26495:366::-;26637:3;26658:67;26722:2;26717:3;26658:67;:::i;:::-;26651:74;;26734:93;26823:3;26734:93;:::i;:::-;26852:2;26847:3;26843:12;26836:19;;26495:366;;;:::o;26867:419::-;27033:4;27071:2;27060:9;27056:18;27048:26;;27120:9;27114:4;27110:20;27106:1;27095:9;27091:17;27084:47;27148:131;27274:4;27148:131;:::i;:::-;27140:139;;26867:419;;;:::o;27292:222::-;27432:34;27428:1;27420:6;27416:14;27409:58;27501:5;27496:2;27488:6;27484:15;27477:30;27292:222;:::o;27520:366::-;27662:3;27683:67;27747:2;27742:3;27683:67;:::i;:::-;27676:74;;27759:93;27848:3;27759:93;:::i;:::-;27877:2;27872:3;27868:12;27861:19;;27520:366;;;:::o;27892:419::-;28058:4;28096:2;28085:9;28081:18;28073:26;;28145:9;28139:4;28135:20;28131:1;28120:9;28116:17;28109:47;28173:131;28299:4;28173:131;:::i;:::-;28165:139;;27892:419;;;:::o;28317:172::-;28457:24;28453:1;28445:6;28441:14;28434:48;28317:172;:::o;28495:366::-;28637:3;28658:67;28722:2;28717:3;28658:67;:::i;:::-;28651:74;;28734:93;28823:3;28734:93;:::i;:::-;28852:2;28847:3;28843:12;28836:19;;28495:366;;;:::o;28867:419::-;29033:4;29071:2;29060:9;29056:18;29048:26;;29120:9;29114:4;29110:20;29106:1;29095:9;29091:17;29084:47;29148:131;29274:4;29148:131;:::i;:::-;29140:139;;28867:419;;;:::o;29292:297::-;29432:34;29428:1;29420:6;29416:14;29409:58;29501:34;29496:2;29488:6;29484:15;29477:59;29570:11;29565:2;29557:6;29553:15;29546:36;29292:297;:::o;29595:366::-;29737:3;29758:67;29822:2;29817:3;29758:67;:::i;:::-;29751:74;;29834:93;29923:3;29834:93;:::i;:::-;29952:2;29947:3;29943:12;29936:19;;29595:366;;;:::o;29967:419::-;30133:4;30171:2;30160:9;30156:18;30148:26;;30220:9;30214:4;30210:20;30206:1;30195:9;30191:17;30184:47;30248:131;30374:4;30248:131;:::i;:::-;30240:139;;29967:419;;;:::o;30392:240::-;30532:34;30528:1;30520:6;30516:14;30509:58;30601:23;30596:2;30588:6;30584:15;30577:48;30392:240;:::o;30638:366::-;30780:3;30801:67;30865:2;30860:3;30801:67;:::i;:::-;30794:74;;30877:93;30966:3;30877:93;:::i;:::-;30995:2;30990:3;30986:12;30979:19;;30638:366;;;:::o;31010:419::-;31176:4;31214:2;31203:9;31199:18;31191:26;;31263:9;31257:4;31253:20;31249:1;31238:9;31234:17;31227:47;31291:131;31417:4;31291:131;:::i;:::-;31283:139;;31010:419;;;:::o;31435:169::-;31575:21;31571:1;31563:6;31559:14;31552:45;31435:169;:::o;31610:366::-;31752:3;31773:67;31837:2;31832:3;31773:67;:::i;:::-;31766:74;;31849:93;31938:3;31849:93;:::i;:::-;31967:2;31962:3;31958:12;31951:19;;31610:366;;;:::o;31982:419::-;32148:4;32186:2;32175:9;32171:18;32163:26;;32235:9;32229:4;32225:20;32221:1;32210:9;32206:17;32199:47;32263:131;32389:4;32263:131;:::i;:::-;32255:139;;31982:419;;;:::o;32407:241::-;32547:34;32543:1;32535:6;32531:14;32524:58;32616:24;32611:2;32603:6;32599:15;32592:49;32407:241;:::o;32654:366::-;32796:3;32817:67;32881:2;32876:3;32817:67;:::i;:::-;32810:74;;32893:93;32982:3;32893:93;:::i;:::-;33011:2;33006:3;33002:12;32995:19;;32654:366;;;:::o;33026:419::-;33192:4;33230:2;33219:9;33215:18;33207:26;;33279:9;33273:4;33269:20;33265:1;33254:9;33250:17;33243:47;33307:131;33433:4;33307:131;:::i;:::-;33299:139;;33026:419;;;:::o;33451:191::-;33491:4;33511:20;33529:1;33511:20;:::i;:::-;33506:25;;33545:20;33563:1;33545:20;:::i;:::-;33540:25;;33584:1;33581;33578:8;33575:34;;;33589:18;;:::i;:::-;33575:34;33634:1;33631;33627:9;33619:17;;33451:191;;;;:::o;33648:225::-;33788:34;33784:1;33776:6;33772:14;33765:58;33857:8;33852:2;33844:6;33840:15;33833:33;33648:225;:::o;33879:366::-;34021:3;34042:67;34106:2;34101:3;34042:67;:::i;:::-;34035:74;;34118:93;34207:3;34118:93;:::i;:::-;34236:2;34231:3;34227:12;34220:19;;33879:366;;;:::o;34251:419::-;34417:4;34455:2;34444:9;34440:18;34432:26;;34504:9;34498:4;34494:20;34490:1;34479:9;34475:17;34468:47;34532:131;34658:4;34532:131;:::i;:::-;34524:139;;34251:419;;;:::o;34676:147::-;34777:11;34814:3;34799:18;;34676:147;;;;:::o;34829:114::-;;:::o;34949:398::-;35108:3;35129:83;35210:1;35205:3;35129:83;:::i;:::-;35122:90;;35221:93;35310:3;35221:93;:::i;:::-;35339:1;35334:3;35330:11;35323:18;;34949:398;;;:::o;35353:379::-;35537:3;35559:147;35702:3;35559:147;:::i;:::-;35552:154;;35723:3;35716:10;;35353:379;;;:::o;35738:442::-;35887:4;35925:2;35914:9;35910:18;35902:26;;35938:71;36006:1;35995:9;35991:17;35982:6;35938:71;:::i;:::-;36019:72;36087:2;36076:9;36072:18;36063:6;36019:72;:::i;:::-;36101;36169:2;36158:9;36154:18;36145:6;36101:72;:::i;:::-;35738:442;;;;;;:::o;36186:180::-;36234:77;36231:1;36224:88;36331:4;36328:1;36321:15;36355:4;36352:1;36345:15;36372:180;36420:77;36417:1;36410:88;36517:4;36514:1;36507:15;36541:4;36538:1;36531:15;36558:143;36615:5;36646:6;36640:13;36631:22;;36662:33;36689:5;36662:33;:::i;:::-;36558:143;;;;:::o;36707:351::-;36777:6;36826:2;36814:9;36805:7;36801:23;36797:32;36794:119;;;36832:79;;:::i;:::-;36794:119;36952:1;36977:64;37033:7;37024:6;37013:9;37009:22;36977:64;:::i;:::-;36967:74;;36923:128;36707:351;;;;:::o;37064:85::-;37109:7;37138:5;37127:16;;37064:85;;;:::o;37155:158::-;37213:9;37246:61;37264:42;37273:32;37299:5;37273:32;:::i;:::-;37264:42;:::i;:::-;37246:61;:::i;:::-;37233:74;;37155:158;;;:::o;37319:147::-;37414:45;37453:5;37414:45;:::i;:::-;37409:3;37402:58;37319:147;;:::o;37472:114::-;37539:6;37573:5;37567:12;37557:22;;37472:114;;;:::o;37592:184::-;37691:11;37725:6;37720:3;37713:19;37765:4;37760:3;37756:14;37741:29;;37592:184;;;;:::o;37782:132::-;37849:4;37872:3;37864:11;;37902:4;37897:3;37893:14;37885:22;;37782:132;;;:::o;37920:108::-;37997:24;38015:5;37997:24;:::i;:::-;37992:3;37985:37;37920:108;;:::o;38034:179::-;38103:10;38124:46;38166:3;38158:6;38124:46;:::i;:::-;38202:4;38197:3;38193:14;38179:28;;38034:179;;;;:::o;38219:113::-;38289:4;38321;38316:3;38312:14;38304:22;;38219:113;;;:::o;38368:732::-;38487:3;38516:54;38564:5;38516:54;:::i;:::-;38586:86;38665:6;38660:3;38586:86;:::i;:::-;38579:93;;38696:56;38746:5;38696:56;:::i;:::-;38775:7;38806:1;38791:284;38816:6;38813:1;38810:13;38791:284;;;38892:6;38886:13;38919:63;38978:3;38963:13;38919:63;:::i;:::-;38912:70;;39005:60;39058:6;39005:60;:::i;:::-;38995:70;;38851:224;38838:1;38835;38831:9;38826:14;;38791:284;;;38795:14;39091:3;39084:10;;38492:608;;;38368:732;;;;:::o;39106:831::-;39369:4;39407:3;39396:9;39392:19;39384:27;;39421:71;39489:1;39478:9;39474:17;39465:6;39421:71;:::i;:::-;39502:80;39578:2;39567:9;39563:18;39554:6;39502:80;:::i;:::-;39629:9;39623:4;39619:20;39614:2;39603:9;39599:18;39592:48;39657:108;39760:4;39751:6;39657:108;:::i;:::-;39649:116;;39775:72;39843:2;39832:9;39828:18;39819:6;39775:72;:::i;:::-;39857:73;39925:3;39914:9;39910:19;39901:6;39857:73;:::i;:::-;39106:831;;;;;;;;:::o;39943:807::-;40192:4;40230:3;40219:9;40215:19;40207:27;;40244:71;40312:1;40301:9;40297:17;40288:6;40244:71;:::i;:::-;40325:72;40393:2;40382:9;40378:18;40369:6;40325:72;:::i;:::-;40407:80;40483:2;40472:9;40468:18;40459:6;40407:80;:::i;:::-;40497;40573:2;40562:9;40558:18;40549:6;40497:80;:::i;:::-;40587:73;40655:3;40644:9;40640:19;40631:6;40587:73;:::i;:::-;40670;40738:3;40727:9;40723:19;40714:6;40670:73;:::i;:::-;39943:807;;;;;;;;;:::o;40756:663::-;40844:6;40852;40860;40909:2;40897:9;40888:7;40884:23;40880:32;40877:119;;;40915:79;;:::i;:::-;40877:119;41035:1;41060:64;41116:7;41107:6;41096:9;41092:22;41060:64;:::i;:::-;41050:74;;41006:128;41173:2;41199:64;41255:7;41246:6;41235:9;41231:22;41199:64;:::i;:::-;41189:74;;41144:129;41312:2;41338:64;41394:7;41385:6;41374:9;41370:22;41338:64;:::i;:::-;41328:74;;41283:129;40756:663;;;;;:::o

Swarm Source

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