ETH Price: $3,286.41 (+1.20%)
Gas: 1 Gwei

Token

Voices of Defi (VOC)
 

Overview

Max Total Supply

10,000,000 VOC

Holders

143

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
6,796.669745550769701326 VOC

Value
$0.00
0x615e7bc67bfcdf0f65481dbeb48d96f0bebe0674
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:
VoicesOfDefi

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

/*

Welcome to the Voices of Defi!
This bot is capable of interacting with a state-of-the-art voice generation 
algorithm and delivering near-perfect audio almost instantly.

Telegram Bot: https://t.me/VoicesOfDefiBot

Telegram Group: https://t.me/VoicesOfDefi

Twitter: https://twitter.com/VoicesOfDefi

Website: http://voicesofdefi.com/

*/

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


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

/* pragma solidity ^0.8.0; */

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* pragma solidity ^0.8.0; */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* pragma solidity 0.8.10; */
/* pragma experimental ABIEncoderV2; */

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

    function WETH() external pure returns (address);

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

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

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

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

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

/* pragma solidity >=0.8.10; */

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

contract VoicesOfDefi 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 charityWallet;
    address public marketingWallet;
    address public devWallet;

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

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

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

    uint256 public buyTotalFees;
	uint256 public buyCharityFee;
    uint256 public buyMarketingFee;
    uint256 public buyLiquidityFee;
    uint256 public buyDevFee;

    uint256 public sellTotalFees;
	uint256 public sellCharityFee;
    uint256 public sellMarketingFee;
    uint256 public sellLiquidityFee;
    uint256 public sellDevFee;

	uint256 public tokensForCharity;
    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 SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    constructor() ERC20("Voices of Defi", "VOC") {
        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 _buyCharityFee = 1;
        uint256 _buyMarketingFee = 10;
        uint256 _buyLiquidityFee = 1;
        uint256 _buyDevFee = 3;

		uint256 _sellCharityFee = 1;
        uint256 _sellMarketingFee = 20;
        uint256 _sellLiquidityFee = 1;
        uint256 _sellDevFee = 48;

        uint256 totalSupply = 10_000_000 * 1e18;

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

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

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

		charityWallet = address(0xe243F4672CCc669a7ED0F6f9363e9B659883bA32); // set as charity wallet
        marketingWallet = address(0xb59f45Bb4862D5f7B6D59624C135c6E81cf817CB); // set as marketing wallet
        devWallet = address(0x60191BcFcfa13CBcE6dB94A57D7DD2d86121e8E0); // 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(bool enable) external onlyOwner {
        if(enable){
            
            tradingActive = true;
            swapEnabled = true;

        }
       
    }

    // remove limits after token is stable
    function removeMaxTransactionAndWallet() 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 adjustSwapTokensAtAmount(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 adjustMaxTxnAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxTransactionAmount lower than 0.5%"
        );
        maxTransactionAmount = newNum * (10**18);
    }

    function adjustMaxWalletAmount(uint256 newNum) external onlyOwner {
        require(
            newNum >= ((totalSupply() * 5) / 1000) / 1e18,
            "Cannot set maxWallet lower than 0.5%"
        );
        maxWallet = newNum * (10**18);
    }
	
    function excludeFromMaxTransaction(address updAds, bool isEx)
        public
        onlyOwner
    {
        _isExcludedMaxTransactionAmount[updAds] = isEx;
    }

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

    function adjustBuyFees(
		uint256 _charityFee,
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
		require((_charityFee + _marketingFee + _liquidityFee + _devFee) <= 99, "Max BuyFee 99%");
		buyCharityFee = _charityFee;
        buyMarketingFee = _marketingFee;
        buyLiquidityFee = _liquidityFee;
        buyDevFee = _devFee;
        buyTotalFees = buyCharityFee + buyMarketingFee + buyLiquidityFee + buyDevFee;
     }

    function adjustSellFees(
		uint256 _charityFee,
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
		require((_charityFee + _marketingFee + _liquidityFee + _devFee) <= 99, "Max SellFee 99%");
		sellCharityFee = _charityFee;
        sellMarketingFee = _marketingFee;
        sellLiquidityFee = _liquidityFee;
        sellDevFee = _devFee;
        sellTotalFees = sellCharityFee + sellMarketingFee + sellLiquidityFee + sellDevFee;
    }

    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 isExcludedFromFees(address account) public view returns (bool) {
        return _isExcludedFromFees[account];
    }

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

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

        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);
				tokensForCharity += (fees * sellCharityFee) / sellTotalFees;
                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;
                tokensForDev += (fees * sellDevFee) / sellTotalFees;
                tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees;
            }
            // on buy
            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {
                fees = amount.mul(buyTotalFees).div(100);
				tokensForCharity += (fees * buyCharityFee) / buyTotalFees;
                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;
                tokensForDev += (fees * buyDevFee) / buyTotalFees;
                tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees;
            }

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

            amount -= fees;
        }

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

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

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

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

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

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

    function swapBack() private {
        uint256 contractBalance = balanceOf(address(this));
        uint256 totalTokensToSwap = tokensForCharity + 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 ethForCharity = ethBalance.mul(tokensForCharity).div(totalTokensToSwap);
        uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap);
        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);

        uint256 ethForLiquidity = ethBalance - ethForCharity - ethForMarketing - ethForDev;

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

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


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

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

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_charityFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"adjustBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"adjustMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"adjustMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_charityFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"adjustSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"adjustSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"adjustSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"buyCharityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"charityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enable","type":"bool"}],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeMaxTransactionAndWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellCharityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForCharity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600c60006101000a81548160ff0219169083151502179055506000600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff0219169083151502179055506001600e60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600e81526020017f566f69636573206f6620446566690000000000000000000000000000000000008152506040518060400160405280600381526020017f564f43000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200010292919062000b7f565b5080600490805190602001906200011b92919062000b7f565b5050506200013e620001326200063f60201b60201c565b6200064760201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200016a8160016200070d60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000210919062000c99565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000278573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200029e919062000c99565b6040518363ffffffff1660e01b8152600401620002bd92919062000cdc565b6020604051808303816000875af1158015620002dd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000303919062000c99565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200034b60a05160016200070d60201b60201c565b6200036060a0516001620007f760201b60201c565b6000600190506000600a905060006001905060006003905060006001905060006014905060006001905060006030905060006a084595161401484a000000905069152d02c7e14af680000060098190555069152d02c7e14af6800000600b81905550612710600a82620003d4919062000d42565b620003e0919062000dd2565b600a81905550886010819055508760118190555086601281905550856013819055506013546012546011546010546200041a919062000e0a565b62000426919062000e0a565b62000432919062000e0a565b600f81905550846015819055508360168190555082601781905550816018819055506018546017546016546015546200046c919062000e0a565b62000478919062000e0a565b62000484919062000e0a565b60148190555073e243f4672ccc669a7ed0f6f9363e9b659883ba32600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073b59f45bb4862d5f7b6d59624c135c6e81cf817cb600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507360191bcfcfa13cbce6db94a57d7dd2d86121e8e0600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005ab6200059d6200089860201b60201c565b6001620008c260201b60201c565b620005be306001620008c260201b60201c565b620005d361dead6001620008c260201b60201c565b620005f5620005e76200089860201b60201c565b60016200070d60201b60201c565b620006083060016200070d60201b60201c565b6200061d61dead60016200070d60201b60201c565b6200062f3382620009fc60201b60201c565b5050505050505050505062001029565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200071d6200063f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007436200089860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200079c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007939062000ec8565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008d26200063f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008f86200089860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000951576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009489062000ec8565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009f0919062000f07565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a6f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a669062000f74565b60405180910390fd5b62000a836000838362000b7560201b60201c565b806002600082825462000a97919062000e0a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000aee919062000e0a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b55919062000fa7565b60405180910390a362000b716000838362000b7a60201b60201c565b5050565b505050565b505050565b82805462000b8d9062000ff3565b90600052602060002090601f01602090048101928262000bb1576000855562000bfd565b82601f1062000bcc57805160ff191683800117855562000bfd565b8280016001018555821562000bfd579182015b8281111562000bfc57825182559160200191906001019062000bdf565b5b50905062000c0c919062000c10565b5090565b5b8082111562000c2b57600081600090555060010162000c11565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c618262000c34565b9050919050565b62000c738162000c54565b811462000c7f57600080fd5b50565b60008151905062000c938162000c68565b92915050565b60006020828403121562000cb25762000cb162000c2f565b5b600062000cc28482850162000c82565b91505092915050565b62000cd68162000c54565b82525050565b600060408201905062000cf3600083018562000ccb565b62000d02602083018462000ccb565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000d4f8262000d09565b915062000d5c8362000d09565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d985762000d9762000d13565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000ddf8262000d09565b915062000dec8362000d09565b92508262000dff5762000dfe62000da3565b5b828204905092915050565b600062000e178262000d09565b915062000e248362000d09565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e5c5762000e5b62000d13565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000eb060208362000e67565b915062000ebd8262000e78565b602082019050919050565b6000602082019050818103600083015262000ee38162000ea1565b9050919050565b60008115159050919050565b62000f018162000eea565b82525050565b600060208201905062000f1e600083018462000ef6565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f5c601f8362000e67565b915062000f698262000f24565b602082019050919050565b6000602082019050818103600083015262000f8f8162000f4d565b9050919050565b62000fa18162000d09565b82525050565b600060208201905062000fbe600083018462000f96565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200100c57607f821691505b6020821081141562001023576200102262000fc4565b5b50919050565b60805160a0516150e9620010876000396000818161128e015281816118860152612712015260008181610e59015281816126ba015281816138ee015281816139cf015281816139f601528181613a920152613ab901526150e96000f3fe60806040526004361061036f5760003560e01c80638ea5220f116101c6578063c0246668116100f7578063e2f4560511610095578063f275f64b1161006f578063f275f64b14610cd9578063f2fde38b14610d02578063f637434214610d2b578063f8b45b0514610d5657610376565b8063e2f4560514610c58578063e884f26014610c83578063f11a24d314610cae57610376565b8063c9420f87116100d1578063c9420f8714610b9e578063d85ba06314610bc7578063db4b9a1614610bf2578063dd62ed3e14610c1b57610376565b8063c024666814610b1f578063c876d0b914610b48578063c8c8ebe414610b7357610376565b80639fccce3211610164578063a457c2d71161013e578063a457c2d714610a3d578063a9059cbb14610a7a578063b62496f514610ab7578063bbc0c74214610af457610376565b80639fccce32146109bc578063a0d82dc5146109e7578063a1dc92bc14610a1257610376565b80639921e18f116101a05780639921e18f146109145780639a7a23d61461093f5780639a835ff4146109685780639c3b4fdc1461099157610376565b80638ea5220f1461089357806392136913146108be57806395d89b41146108e957610376565b806344249f04116102a0578063715018a61161023e57806378bd4e5d1161021857806378bd4e5d146107d55780637b208769146108125780637bce5a041461083d5780638da5cb5b1461086857610376565b8063715018a61461076a5780637571336a1461078157806375f0a874146107aa57610376565b80634fbee1931161027a5780634fbee1931461069a5780636a486a8e146106d75780636ddd17131461070257806370a082311461072d57610376565b806344249f041461061957806349bd5a5e146106445780634a62bb651461066f57610376565b80631b260e941161030d57806323b872dd116102e757806323b872dd1461054957806327c8f83514610586578063313ce567146105b157806339509351146105dc57610376565b80631b260e94146104cc5780631f3fed8f146104f557806321abef781461052057610376565b806310d5de531161034957806310d5de531461040e5780631694505e1461044b57806318160ddd146104765780631a8145bb146104a157610376565b806306fdde031461037b578063095ea7b3146103a65780630d7f1441146103e357610376565b3661037657005b600080fd5b34801561038757600080fd5b50610390610d81565b60405161039d9190613c21565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c89190613cdc565b610e13565b6040516103da9190613d37565b60405180910390f35b3480156103ef57600080fd5b506103f8610e31565b6040516104059190613d61565b60405180910390f35b34801561041a57600080fd5b5061043560048036038101906104309190613d7c565b610e37565b6040516104429190613d37565b60405180910390f35b34801561045757600080fd5b50610460610e57565b60405161046d9190613e08565b60405180910390f35b34801561048257600080fd5b5061048b610e7b565b6040516104989190613d61565b60405180910390f35b3480156104ad57600080fd5b506104b6610e85565b6040516104c39190613d61565b60405180910390f35b3480156104d857600080fd5b506104f360048036038101906104ee9190613e23565b610e8b565b005b34801561050157600080fd5b5061050a610fbe565b6040516105179190613d61565b60405180910390f35b34801561052c57600080fd5b5061054760048036038101906105429190613e8a565b610fc4565b005b34801561055557600080fd5b50610570600480360381019061056b9190613eb7565b6110d3565b60405161057d9190613d37565b60405180910390f35b34801561059257600080fd5b5061059b6111cb565b6040516105a89190613f19565b60405180910390f35b3480156105bd57600080fd5b506105c66111d1565b6040516105d39190613f50565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe9190613cdc565b6111da565b6040516106109190613d37565b60405180910390f35b34801561062557600080fd5b5061062e611286565b60405161063b9190613d61565b60405180910390f35b34801561065057600080fd5b5061065961128c565b6040516106669190613f19565b60405180910390f35b34801561067b57600080fd5b506106846112b0565b6040516106919190613d37565b60405180910390f35b3480156106a657600080fd5b506106c160048036038101906106bc9190613d7c565b6112c3565b6040516106ce9190613d37565b60405180910390f35b3480156106e357600080fd5b506106ec611319565b6040516106f99190613d61565b60405180910390f35b34801561070e57600080fd5b5061071761131f565b6040516107249190613d37565b60405180910390f35b34801561073957600080fd5b50610754600480360381019061074f9190613d7c565b611332565b6040516107619190613d61565b60405180910390f35b34801561077657600080fd5b5061077f61137a565b005b34801561078d57600080fd5b506107a860048036038101906107a39190613f97565b611402565b005b3480156107b657600080fd5b506107bf6114d9565b6040516107cc9190613f19565b60405180910390f35b3480156107e157600080fd5b506107fc60048036038101906107f79190613e8a565b6114ff565b6040516108099190613d37565b60405180910390f35b34801561081e57600080fd5b50610827611654565b6040516108349190613f19565b60405180910390f35b34801561084957600080fd5b5061085261167a565b60405161085f9190613d61565b60405180910390f35b34801561087457600080fd5b5061087d611680565b60405161088a9190613f19565b60405180910390f35b34801561089f57600080fd5b506108a86116aa565b6040516108b59190613f19565b60405180910390f35b3480156108ca57600080fd5b506108d36116d0565b6040516108e09190613d61565b60405180910390f35b3480156108f557600080fd5b506108fe6116d6565b60405161090b9190613c21565b60405180910390f35b34801561092057600080fd5b50610929611768565b6040516109369190613d37565b60405180910390f35b34801561094b57600080fd5b5061096660048036038101906109619190613f97565b611808565b005b34801561097457600080fd5b5061098f600480360381019061098a9190613fd7565b611921565b005b34801561099d57600080fd5b506109a66119ba565b6040516109b39190613d61565b60405180910390f35b3480156109c857600080fd5b506109d16119c0565b6040516109de9190613d61565b60405180910390f35b3480156109f357600080fd5b506109fc6119c6565b604051610a099190613d61565b60405180910390f35b348015610a1e57600080fd5b50610a276119cc565b604051610a349190613d61565b60405180910390f35b348015610a4957600080fd5b50610a646004803603810190610a5f9190613cdc565b6119d2565b604051610a719190613d37565b60405180910390f35b348015610a8657600080fd5b50610aa16004803603810190610a9c9190613cdc565b611abd565b604051610aae9190613d37565b60405180910390f35b348015610ac357600080fd5b50610ade6004803603810190610ad99190613d7c565b611adb565b604051610aeb9190613d37565b60405180910390f35b348015610b0057600080fd5b50610b09611afb565b604051610b169190613d37565b60405180910390f35b348015610b2b57600080fd5b50610b466004803603810190610b419190613f97565b611b0e565b005b348015610b5457600080fd5b50610b5d611c33565b604051610b6a9190613d37565b60405180910390f35b348015610b7f57600080fd5b50610b88611c46565b604051610b959190613d61565b60405180910390f35b348015610baa57600080fd5b50610bc56004803603810190610bc09190613e23565b611c4c565b005b348015610bd357600080fd5b50610bdc611d7f565b604051610be99190613d61565b60405180910390f35b348015610bfe57600080fd5b50610c196004803603810190610c149190613e8a565b611d85565b005b348015610c2757600080fd5b50610c426004803603810190610c3d9190614004565b611e94565b604051610c4f9190613d61565b60405180910390f35b348015610c6457600080fd5b50610c6d611f1b565b604051610c7a9190613d61565b60405180910390f35b348015610c8f57600080fd5b50610c98611f21565b604051610ca59190613d37565b60405180910390f35b348015610cba57600080fd5b50610cc3611fc1565b604051610cd09190613d61565b60405180910390f35b348015610ce557600080fd5b50610d006004803603810190610cfb9190613fd7565b611fc7565b005b348015610d0e57600080fd5b50610d296004803603810190610d249190613d7c565b612083565b005b348015610d3757600080fd5b50610d4061217b565b604051610d4d9190613d61565b60405180910390f35b348015610d6257600080fd5b50610d6b612181565b604051610d789190613d61565b60405180910390f35b606060038054610d9090614073565b80601f0160208091040260200160405190810160405280929190818152602001828054610dbc90614073565b8015610e095780601f10610dde57610100808354040283529160200191610e09565b820191906000526020600020905b815481529060010190602001808311610dec57829003601f168201915b5050505050905090565b6000610e27610e20612187565b848461218f565b6001905092915050565b60155481565b601e6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b601b5481565b610e93612187565b73ffffffffffffffffffffffffffffffffffffffff16610eb1611680565b73ffffffffffffffffffffffffffffffffffffffff1614610f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efe906140f1565b60405180910390fd5b606381838587610f179190614140565b610f219190614140565b610f2b9190614140565b1115610f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f63906141e2565b60405180910390fd5b83601081905550826011819055508160128190555080601381905550601354601254601154601054610f9e9190614140565b610fa89190614140565b610fb29190614140565b600f8190555050505050565b601a5481565b610fcc612187565b73ffffffffffffffffffffffffffffffffffffffff16610fea611680565b73ffffffffffffffffffffffffffffffffffffffff1614611040576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611037906140f1565b60405180910390fd5b670de0b6b3a76400006103e86005611056610e7b565b6110609190614202565b61106a919061428b565b611074919061428b565b8110156110b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ad9061432e565b60405180910390fd5b670de0b6b3a7640000816110ca9190614202565b60098190555050565b60006110e084848461235a565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061112b612187565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156111ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a2906143c0565b60405180910390fd5b6111bf856111b7612187565b85840361218f565b60019150509392505050565b61dead81565b60006012905090565b600061127c6111e7612187565b8484600160006111f5612187565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112779190614140565b61218f565b6001905092915050565b60195481565b7f000000000000000000000000000000000000000000000000000000000000000081565b600c60009054906101000a900460ff1681565b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600c60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611382612187565b73ffffffffffffffffffffffffffffffffffffffff166113a0611680565b73ffffffffffffffffffffffffffffffffffffffff16146113f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ed906140f1565b60405180910390fd5b611400600061305a565b565b61140a612187565b73ffffffffffffffffffffffffffffffffffffffff16611428611680565b73ffffffffffffffffffffffffffffffffffffffff161461147e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611475906140f1565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611509612187565b73ffffffffffffffffffffffffffffffffffffffff16611527611680565b73ffffffffffffffffffffffffffffffffffffffff161461157d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611574906140f1565b60405180910390fd5b620186a0600161158b610e7b565b6115959190614202565b61159f919061428b565b8210156115e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d890614452565b60405180910390fd5b6103e860056115ee610e7b565b6115f89190614202565b611602919061428b565b821115611644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163b906144e4565b60405180910390fd5b81600a8190555060019050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60165481565b6060600480546116e590614073565b80601f016020809104026020016040519081016040528092919081815260200182805461171190614073565b801561175e5780601f106117335761010080835404028352916020019161175e565b820191906000526020600020905b81548152906001019060200180831161174157829003601f168201915b5050505050905090565b6000611772612187565b73ffffffffffffffffffffffffffffffffffffffff16611790611680565b73ffffffffffffffffffffffffffffffffffffffff16146117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dd906140f1565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b611810612187565b73ffffffffffffffffffffffffffffffffffffffff1661182e611680565b73ffffffffffffffffffffffffffffffffffffffff1614611884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187b906140f1565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190a90614576565b60405180910390fd5b61191d8282613120565b5050565b611929612187565b73ffffffffffffffffffffffffffffffffffffffff16611947611680565b73ffffffffffffffffffffffffffffffffffffffff161461199d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611994906140f1565b60405180910390fd5b80600c60026101000a81548160ff02191690831515021790555050565b60135481565b601c5481565b60185481565b60105481565b600080600160006119e1612187565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611a9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9590614608565b60405180910390fd5b611ab2611aa9612187565b8585840361218f565b600191505092915050565b6000611ad1611aca612187565b848461235a565b6001905092915050565b601f6020528060005260406000206000915054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b611b16612187565b73ffffffffffffffffffffffffffffffffffffffff16611b34611680565b73ffffffffffffffffffffffffffffffffffffffff1614611b8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b81906140f1565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611c279190613d37565b60405180910390a25050565b600e60009054906101000a900460ff1681565b60095481565b611c54612187565b73ffffffffffffffffffffffffffffffffffffffff16611c72611680565b73ffffffffffffffffffffffffffffffffffffffff1614611cc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbf906140f1565b60405180910390fd5b606381838587611cd89190614140565b611ce29190614140565b611cec9190614140565b1115611d2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2490614674565b60405180910390fd5b83601581905550826016819055508160178190555080601881905550601854601754601654601554611d5f9190614140565b611d699190614140565b611d739190614140565b60148190555050505050565b600f5481565b611d8d612187565b73ffffffffffffffffffffffffffffffffffffffff16611dab611680565b73ffffffffffffffffffffffffffffffffffffffff1614611e01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df8906140f1565b60405180910390fd5b670de0b6b3a76400006103e86005611e17610e7b565b611e219190614202565b611e2b919061428b565b611e35919061428b565b811015611e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6e90614706565b60405180910390fd5b670de0b6b3a764000081611e8b9190614202565b600b8190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b6000611f2b612187565b73ffffffffffffffffffffffffffffffffffffffff16611f49611680565b73ffffffffffffffffffffffffffffffffffffffff1614611f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f96906140f1565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055506001905090565b60125481565b611fcf612187565b73ffffffffffffffffffffffffffffffffffffffff16611fed611680565b73ffffffffffffffffffffffffffffffffffffffff1614612043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203a906140f1565b60405180910390fd5b8015612080576001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff0219169083151502179055505b50565b61208b612187565b73ffffffffffffffffffffffffffffffffffffffff166120a9611680565b73ffffffffffffffffffffffffffffffffffffffff16146120ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f6906140f1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561216f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216690614798565b60405180910390fd5b6121788161305a565b50565b60175481565b600b5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f69061482a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561226f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612266906148bc565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161234d9190613d61565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c19061494e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561243a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612431906149e0565b60405180910390fd5b60008114156124545761244f838360006131c1565b613055565b600c60009054906101000a900460ff1615612b1757612471611680565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156124df57506124af611680565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125185750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612552575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561256b5750600560149054906101000a900460ff16155b15612b1657600c60019054906101000a900460ff1661266557601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806126255750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612664576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265b90614a4c565b60405180910390fd5b5b600e60009054906101000a900460ff161561282d57612682611680565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561270957507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561276157507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561282c5743600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106127e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127de90614b04565b60405180910390fd5b43600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128d05750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156129775760095481111561291a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291190614b96565b60405180910390fd5b600b5461292683611332565b826129319190614140565b1115612972576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296990614c02565b60405180910390fd5b612b15565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a1a5750601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a6957600954811115612a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5b90614c94565b60405180910390fd5b612b14565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612b1357600b54612ac683611332565b82612ad19190614140565b1115612b12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0990614c02565b60405180910390fd5b5b5b5b5b5b6000612b2230611332565b90506000600a548210159050808015612b475750600c60029054906101000a900460ff165b8015612b605750600560149054906101000a900460ff16155b8015612bb65750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c0c5750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c625750601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612ca6576001600560146101000a81548160ff021916908315150217905550612c8a613442565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d5c5750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612d6657600090505b6000811561304557601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612dc957506000601454115b15612ec957612df66064612de86014548861380390919063ffffffff16565b61381990919063ffffffff16565b905060145460155482612e099190614202565b612e13919061428b565b60196000828254612e249190614140565b9250508190555060145460175482612e3c9190614202565b612e46919061428b565b601b6000828254612e579190614140565b9250508190555060145460185482612e6f9190614202565b612e79919061428b565b601c6000828254612e8a9190614140565b9250508190555060145460165482612ea29190614202565b612eac919061428b565b601a6000828254612ebd9190614140565b92505081905550613021565b601f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f2457506000600f54115b1561302057612f516064612f43600f548861380390919063ffffffff16565b61381990919063ffffffff16565b9050600f5460105482612f649190614202565b612f6e919061428b565b60196000828254612f7f9190614140565b92505081905550600f5460125482612f979190614202565b612fa1919061428b565b601b6000828254612fb29190614140565b92505081905550600f5460135482612fca9190614202565b612fd4919061428b565b601c6000828254612fe59190614140565b92505081905550600f5460115482612ffd9190614202565b613007919061428b565b601a60008282546130189190614140565b925050819055505b5b6000811115613036576130358730836131c1565b5b80856130429190614cb4565b94505b6130508787876131c1565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613231576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132289061494e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613298906149e0565b60405180910390fd5b6132ac83838361382f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332990614d5a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133c59190614140565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516134299190613d61565b60405180910390a361343c848484613834565b50505050565b600061344d30611332565b90506000601c54601a54601b546019546134679190614140565b6134719190614140565b61347b9190614140565b905060008083148061348d5750600082145b1561349a57505050613801565b6014600a546134a99190614202565b8311156134c2576014600a546134bf9190614202565b92505b6000600283601b54866134d59190614202565b6134df919061428b565b6134e9919061428b565b90506000613500828661383990919063ffffffff16565b905060004790506135108261384f565b6000613525824761383990919063ffffffff16565b90506000613550876135426019548561380390919063ffffffff16565b61381990919063ffffffff16565b9050600061357b8861356d601a548661380390919063ffffffff16565b61381990919063ffffffff16565b905060006135a689613598601c548761380390919063ffffffff16565b61381990919063ffffffff16565b90506000818385876135b89190614cb4565b6135c29190614cb4565b6135cc9190614cb4565b90506000601b8190555060006019819055506000601a819055506000601c81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161363490614dab565b60006040518083038185875af1925050503d8060008114613671576040519150601f19603f3d011682016040523d82523d6000602084013e613676565b606091505b505080995050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16836040516136c290614dab565b60006040518083038185875af1925050503d80600081146136ff576040519150601f19603f3d011682016040523d82523d6000602084013e613704565b606091505b50508099505060008811801561371a5750600081115b15613767576137298882613a8c565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618782601b5460405161375e93929190614dc0565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516137ad90614dab565b60006040518083038185875af1925050503d80600081146137ea576040519150601f19603f3d011682016040523d82523d6000602084013e6137ef565b606091505b50508099505050505050505050505050505b565b600081836138119190614202565b905092915050565b60008183613827919061428b565b905092915050565b505050565b505050565b600081836138479190614cb4565b905092915050565b6000600267ffffffffffffffff81111561386c5761386b614df7565b5b60405190808252806020026020018201604052801561389a5781602001602082028036833780820191505090505b50905030816000815181106138b2576138b1614e26565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613957573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061397b9190614e6a565b8160018151811061398f5761398e614e26565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506139f4307f00000000000000000000000000000000000000000000000000000000000000008461218f565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613a56959493929190614f90565b600060405180830381600087803b158015613a7057600080fd5b505af1158015613a84573d6000803e3d6000fd5b505050505050565b613ab7307f00000000000000000000000000000000000000000000000000000000000000008461218f565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401613b3e96959493929190614fea565b60606040518083038185885af1158015613b5c573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613b819190615060565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613bc2578082015181840152602081019050613ba7565b83811115613bd1576000848401525b50505050565b6000601f19601f8301169050919050565b6000613bf382613b88565b613bfd8185613b93565b9350613c0d818560208601613ba4565b613c1681613bd7565b840191505092915050565b60006020820190508181036000830152613c3b8184613be8565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c7382613c48565b9050919050565b613c8381613c68565b8114613c8e57600080fd5b50565b600081359050613ca081613c7a565b92915050565b6000819050919050565b613cb981613ca6565b8114613cc457600080fd5b50565b600081359050613cd681613cb0565b92915050565b60008060408385031215613cf357613cf2613c43565b5b6000613d0185828601613c91565b9250506020613d1285828601613cc7565b9150509250929050565b60008115159050919050565b613d3181613d1c565b82525050565b6000602082019050613d4c6000830184613d28565b92915050565b613d5b81613ca6565b82525050565b6000602082019050613d766000830184613d52565b92915050565b600060208284031215613d9257613d91613c43565b5b6000613da084828501613c91565b91505092915050565b6000819050919050565b6000613dce613dc9613dc484613c48565b613da9565b613c48565b9050919050565b6000613de082613db3565b9050919050565b6000613df282613dd5565b9050919050565b613e0281613de7565b82525050565b6000602082019050613e1d6000830184613df9565b92915050565b60008060008060808587031215613e3d57613e3c613c43565b5b6000613e4b87828801613cc7565b9450506020613e5c87828801613cc7565b9350506040613e6d87828801613cc7565b9250506060613e7e87828801613cc7565b91505092959194509250565b600060208284031215613ea057613e9f613c43565b5b6000613eae84828501613cc7565b91505092915050565b600080600060608486031215613ed057613ecf613c43565b5b6000613ede86828701613c91565b9350506020613eef86828701613c91565b9250506040613f0086828701613cc7565b9150509250925092565b613f1381613c68565b82525050565b6000602082019050613f2e6000830184613f0a565b92915050565b600060ff82169050919050565b613f4a81613f34565b82525050565b6000602082019050613f656000830184613f41565b92915050565b613f7481613d1c565b8114613f7f57600080fd5b50565b600081359050613f9181613f6b565b92915050565b60008060408385031215613fae57613fad613c43565b5b6000613fbc85828601613c91565b9250506020613fcd85828601613f82565b9150509250929050565b600060208284031215613fed57613fec613c43565b5b6000613ffb84828501613f82565b91505092915050565b6000806040838503121561401b5761401a613c43565b5b600061402985828601613c91565b925050602061403a85828601613c91565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061408b57607f821691505b6020821081141561409f5761409e614044565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140db602083613b93565b91506140e6826140a5565b602082019050919050565b6000602082019050818103600083015261410a816140ce565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061414b82613ca6565b915061415683613ca6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561418b5761418a614111565b5b828201905092915050565b7f4d61782042757946656520393925000000000000000000000000000000000000600082015250565b60006141cc600e83613b93565b91506141d782614196565b602082019050919050565b600060208201905081810360008301526141fb816141bf565b9050919050565b600061420d82613ca6565b915061421883613ca6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561425157614250614111565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061429682613ca6565b91506142a183613ca6565b9250826142b1576142b061425c565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b6000614318602f83613b93565b9150614323826142bc565b604082019050919050565b600060208201905081810360008301526143478161430b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006143aa602883613b93565b91506143b58261434e565b604082019050919050565b600060208201905081810360008301526143d98161439d565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061443c603583613b93565b9150614447826143e0565b604082019050919050565b6000602082019050818103600083015261446b8161442f565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006144ce603483613b93565b91506144d982614472565b604082019050919050565b600060208201905081810360008301526144fd816144c1565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614560603983613b93565b915061456b82614504565b604082019050919050565b6000602082019050818103600083015261458f81614553565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006145f2602583613b93565b91506145fd82614596565b604082019050919050565b60006020820190508181036000830152614621816145e5565b9050919050565b7f4d61782053656c6c466565203939250000000000000000000000000000000000600082015250565b600061465e600f83613b93565b915061466982614628565b602082019050919050565b6000602082019050818103600083015261468d81614651565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006146f0602483613b93565b91506146fb82614694565b604082019050919050565b6000602082019050818103600083015261471f816146e3565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614782602683613b93565b915061478d82614726565b604082019050919050565b600060208201905081810360008301526147b181614775565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614814602483613b93565b915061481f826147b8565b604082019050919050565b6000602082019050818103600083015261484381614807565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006148a6602283613b93565b91506148b18261484a565b604082019050919050565b600060208201905081810360008301526148d581614899565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614938602583613b93565b9150614943826148dc565b604082019050919050565b600060208201905081810360008301526149678161492b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006149ca602383613b93565b91506149d58261496e565b604082019050919050565b600060208201905081810360008301526149f9816149bd565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614a36601683613b93565b9150614a4182614a00565b602082019050919050565b60006020820190508181036000830152614a6581614a29565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614aee604983613b93565b9150614af982614a6c565b606082019050919050565b60006020820190508181036000830152614b1d81614ae1565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614b80603583613b93565b9150614b8b82614b24565b604082019050919050565b60006020820190508181036000830152614baf81614b73565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614bec601383613b93565b9150614bf782614bb6565b602082019050919050565b60006020820190508181036000830152614c1b81614bdf565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614c7e603683613b93565b9150614c8982614c22565b604082019050919050565b60006020820190508181036000830152614cad81614c71565b9050919050565b6000614cbf82613ca6565b9150614cca83613ca6565b925082821015614cdd57614cdc614111565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614d44602683613b93565b9150614d4f82614ce8565b604082019050919050565b60006020820190508181036000830152614d7381614d37565b9050919050565b600081905092915050565b50565b6000614d95600083614d7a565b9150614da082614d85565b600082019050919050565b6000614db682614d88565b9150819050919050565b6000606082019050614dd56000830186613d52565b614de26020830185613d52565b614def6040830184613d52565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614e6481613c7a565b92915050565b600060208284031215614e8057614e7f613c43565b5b6000614e8e84828501614e55565b91505092915050565b6000819050919050565b6000614ebc614eb7614eb284614e97565b613da9565b613ca6565b9050919050565b614ecc81614ea1565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614f0781613c68565b82525050565b6000614f198383614efe565b60208301905092915050565b6000602082019050919050565b6000614f3d82614ed2565b614f478185614edd565b9350614f5283614eee565b8060005b83811015614f83578151614f6a8882614f0d565b9750614f7583614f25565b925050600181019050614f56565b5085935050505092915050565b600060a082019050614fa56000830188613d52565b614fb26020830187614ec3565b8181036040830152614fc48186614f32565b9050614fd36060830185613f0a565b614fe06080830184613d52565b9695505050505050565b600060c082019050614fff6000830189613f0a565b61500c6020830188613d52565b6150196040830187614ec3565b6150266060830186614ec3565b6150336080830185613f0a565b61504060a0830184613d52565b979650505050505050565b60008151905061505a81613cb0565b92915050565b60008060006060848603121561507957615078613c43565b5b60006150878682870161504b565b93505060206150988682870161504b565b92505060406150a98682870161504b565b915050925092509256fea264697066735822122071817c8ab89401f82b5e61f114227d120a016c6612a9378b68e20bcc35e64cb364736f6c634300080a0033

Deployed Bytecode

0x60806040526004361061036f5760003560e01c80638ea5220f116101c6578063c0246668116100f7578063e2f4560511610095578063f275f64b1161006f578063f275f64b14610cd9578063f2fde38b14610d02578063f637434214610d2b578063f8b45b0514610d5657610376565b8063e2f4560514610c58578063e884f26014610c83578063f11a24d314610cae57610376565b8063c9420f87116100d1578063c9420f8714610b9e578063d85ba06314610bc7578063db4b9a1614610bf2578063dd62ed3e14610c1b57610376565b8063c024666814610b1f578063c876d0b914610b48578063c8c8ebe414610b7357610376565b80639fccce3211610164578063a457c2d71161013e578063a457c2d714610a3d578063a9059cbb14610a7a578063b62496f514610ab7578063bbc0c74214610af457610376565b80639fccce32146109bc578063a0d82dc5146109e7578063a1dc92bc14610a1257610376565b80639921e18f116101a05780639921e18f146109145780639a7a23d61461093f5780639a835ff4146109685780639c3b4fdc1461099157610376565b80638ea5220f1461089357806392136913146108be57806395d89b41146108e957610376565b806344249f04116102a0578063715018a61161023e57806378bd4e5d1161021857806378bd4e5d146107d55780637b208769146108125780637bce5a041461083d5780638da5cb5b1461086857610376565b8063715018a61461076a5780637571336a1461078157806375f0a874146107aa57610376565b80634fbee1931161027a5780634fbee1931461069a5780636a486a8e146106d75780636ddd17131461070257806370a082311461072d57610376565b806344249f041461061957806349bd5a5e146106445780634a62bb651461066f57610376565b80631b260e941161030d57806323b872dd116102e757806323b872dd1461054957806327c8f83514610586578063313ce567146105b157806339509351146105dc57610376565b80631b260e94146104cc5780631f3fed8f146104f557806321abef781461052057610376565b806310d5de531161034957806310d5de531461040e5780631694505e1461044b57806318160ddd146104765780631a8145bb146104a157610376565b806306fdde031461037b578063095ea7b3146103a65780630d7f1441146103e357610376565b3661037657005b600080fd5b34801561038757600080fd5b50610390610d81565b60405161039d9190613c21565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c89190613cdc565b610e13565b6040516103da9190613d37565b60405180910390f35b3480156103ef57600080fd5b506103f8610e31565b6040516104059190613d61565b60405180910390f35b34801561041a57600080fd5b5061043560048036038101906104309190613d7c565b610e37565b6040516104429190613d37565b60405180910390f35b34801561045757600080fd5b50610460610e57565b60405161046d9190613e08565b60405180910390f35b34801561048257600080fd5b5061048b610e7b565b6040516104989190613d61565b60405180910390f35b3480156104ad57600080fd5b506104b6610e85565b6040516104c39190613d61565b60405180910390f35b3480156104d857600080fd5b506104f360048036038101906104ee9190613e23565b610e8b565b005b34801561050157600080fd5b5061050a610fbe565b6040516105179190613d61565b60405180910390f35b34801561052c57600080fd5b5061054760048036038101906105429190613e8a565b610fc4565b005b34801561055557600080fd5b50610570600480360381019061056b9190613eb7565b6110d3565b60405161057d9190613d37565b60405180910390f35b34801561059257600080fd5b5061059b6111cb565b6040516105a89190613f19565b60405180910390f35b3480156105bd57600080fd5b506105c66111d1565b6040516105d39190613f50565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe9190613cdc565b6111da565b6040516106109190613d37565b60405180910390f35b34801561062557600080fd5b5061062e611286565b60405161063b9190613d61565b60405180910390f35b34801561065057600080fd5b5061065961128c565b6040516106669190613f19565b60405180910390f35b34801561067b57600080fd5b506106846112b0565b6040516106919190613d37565b60405180910390f35b3480156106a657600080fd5b506106c160048036038101906106bc9190613d7c565b6112c3565b6040516106ce9190613d37565b60405180910390f35b3480156106e357600080fd5b506106ec611319565b6040516106f99190613d61565b60405180910390f35b34801561070e57600080fd5b5061071761131f565b6040516107249190613d37565b60405180910390f35b34801561073957600080fd5b50610754600480360381019061074f9190613d7c565b611332565b6040516107619190613d61565b60405180910390f35b34801561077657600080fd5b5061077f61137a565b005b34801561078d57600080fd5b506107a860048036038101906107a39190613f97565b611402565b005b3480156107b657600080fd5b506107bf6114d9565b6040516107cc9190613f19565b60405180910390f35b3480156107e157600080fd5b506107fc60048036038101906107f79190613e8a565b6114ff565b6040516108099190613d37565b60405180910390f35b34801561081e57600080fd5b50610827611654565b6040516108349190613f19565b60405180910390f35b34801561084957600080fd5b5061085261167a565b60405161085f9190613d61565b60405180910390f35b34801561087457600080fd5b5061087d611680565b60405161088a9190613f19565b60405180910390f35b34801561089f57600080fd5b506108a86116aa565b6040516108b59190613f19565b60405180910390f35b3480156108ca57600080fd5b506108d36116d0565b6040516108e09190613d61565b60405180910390f35b3480156108f557600080fd5b506108fe6116d6565b60405161090b9190613c21565b60405180910390f35b34801561092057600080fd5b50610929611768565b6040516109369190613d37565b60405180910390f35b34801561094b57600080fd5b5061096660048036038101906109619190613f97565b611808565b005b34801561097457600080fd5b5061098f600480360381019061098a9190613fd7565b611921565b005b34801561099d57600080fd5b506109a66119ba565b6040516109b39190613d61565b60405180910390f35b3480156109c857600080fd5b506109d16119c0565b6040516109de9190613d61565b60405180910390f35b3480156109f357600080fd5b506109fc6119c6565b604051610a099190613d61565b60405180910390f35b348015610a1e57600080fd5b50610a276119cc565b604051610a349190613d61565b60405180910390f35b348015610a4957600080fd5b50610a646004803603810190610a5f9190613cdc565b6119d2565b604051610a719190613d37565b60405180910390f35b348015610a8657600080fd5b50610aa16004803603810190610a9c9190613cdc565b611abd565b604051610aae9190613d37565b60405180910390f35b348015610ac357600080fd5b50610ade6004803603810190610ad99190613d7c565b611adb565b604051610aeb9190613d37565b60405180910390f35b348015610b0057600080fd5b50610b09611afb565b604051610b169190613d37565b60405180910390f35b348015610b2b57600080fd5b50610b466004803603810190610b419190613f97565b611b0e565b005b348015610b5457600080fd5b50610b5d611c33565b604051610b6a9190613d37565b60405180910390f35b348015610b7f57600080fd5b50610b88611c46565b604051610b959190613d61565b60405180910390f35b348015610baa57600080fd5b50610bc56004803603810190610bc09190613e23565b611c4c565b005b348015610bd357600080fd5b50610bdc611d7f565b604051610be99190613d61565b60405180910390f35b348015610bfe57600080fd5b50610c196004803603810190610c149190613e8a565b611d85565b005b348015610c2757600080fd5b50610c426004803603810190610c3d9190614004565b611e94565b604051610c4f9190613d61565b60405180910390f35b348015610c6457600080fd5b50610c6d611f1b565b604051610c7a9190613d61565b60405180910390f35b348015610c8f57600080fd5b50610c98611f21565b604051610ca59190613d37565b60405180910390f35b348015610cba57600080fd5b50610cc3611fc1565b604051610cd09190613d61565b60405180910390f35b348015610ce557600080fd5b50610d006004803603810190610cfb9190613fd7565b611fc7565b005b348015610d0e57600080fd5b50610d296004803603810190610d249190613d7c565b612083565b005b348015610d3757600080fd5b50610d4061217b565b604051610d4d9190613d61565b60405180910390f35b348015610d6257600080fd5b50610d6b612181565b604051610d789190613d61565b60405180910390f35b606060038054610d9090614073565b80601f0160208091040260200160405190810160405280929190818152602001828054610dbc90614073565b8015610e095780601f10610dde57610100808354040283529160200191610e09565b820191906000526020600020905b815481529060010190602001808311610dec57829003601f168201915b5050505050905090565b6000610e27610e20612187565b848461218f565b6001905092915050565b60155481565b601e6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b601b5481565b610e93612187565b73ffffffffffffffffffffffffffffffffffffffff16610eb1611680565b73ffffffffffffffffffffffffffffffffffffffff1614610f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efe906140f1565b60405180910390fd5b606381838587610f179190614140565b610f219190614140565b610f2b9190614140565b1115610f6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f63906141e2565b60405180910390fd5b83601081905550826011819055508160128190555080601381905550601354601254601154601054610f9e9190614140565b610fa89190614140565b610fb29190614140565b600f8190555050505050565b601a5481565b610fcc612187565b73ffffffffffffffffffffffffffffffffffffffff16610fea611680565b73ffffffffffffffffffffffffffffffffffffffff1614611040576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611037906140f1565b60405180910390fd5b670de0b6b3a76400006103e86005611056610e7b565b6110609190614202565b61106a919061428b565b611074919061428b565b8110156110b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ad9061432e565b60405180910390fd5b670de0b6b3a7640000816110ca9190614202565b60098190555050565b60006110e084848461235a565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061112b612187565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156111ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a2906143c0565b60405180910390fd5b6111bf856111b7612187565b85840361218f565b60019150509392505050565b61dead81565b60006012905090565b600061127c6111e7612187565b8484600160006111f5612187565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112779190614140565b61218f565b6001905092915050565b60195481565b7f0000000000000000000000006d1d7ec678ff088985cb223d45a9369b293f7fd381565b600c60009054906101000a900460ff1681565b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600c60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611382612187565b73ffffffffffffffffffffffffffffffffffffffff166113a0611680565b73ffffffffffffffffffffffffffffffffffffffff16146113f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ed906140f1565b60405180910390fd5b611400600061305a565b565b61140a612187565b73ffffffffffffffffffffffffffffffffffffffff16611428611680565b73ffffffffffffffffffffffffffffffffffffffff161461147e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611475906140f1565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611509612187565b73ffffffffffffffffffffffffffffffffffffffff16611527611680565b73ffffffffffffffffffffffffffffffffffffffff161461157d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611574906140f1565b60405180910390fd5b620186a0600161158b610e7b565b6115959190614202565b61159f919061428b565b8210156115e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d890614452565b60405180910390fd5b6103e860056115ee610e7b565b6115f89190614202565b611602919061428b565b821115611644576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163b906144e4565b60405180910390fd5b81600a8190555060019050919050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60165481565b6060600480546116e590614073565b80601f016020809104026020016040519081016040528092919081815260200182805461171190614073565b801561175e5780601f106117335761010080835404028352916020019161175e565b820191906000526020600020905b81548152906001019060200180831161174157829003601f168201915b5050505050905090565b6000611772612187565b73ffffffffffffffffffffffffffffffffffffffff16611790611680565b73ffffffffffffffffffffffffffffffffffffffff16146117e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117dd906140f1565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b611810612187565b73ffffffffffffffffffffffffffffffffffffffff1661182e611680565b73ffffffffffffffffffffffffffffffffffffffff1614611884576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187b906140f1565b60405180910390fd5b7f0000000000000000000000006d1d7ec678ff088985cb223d45a9369b293f7fd373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611913576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190a90614576565b60405180910390fd5b61191d8282613120565b5050565b611929612187565b73ffffffffffffffffffffffffffffffffffffffff16611947611680565b73ffffffffffffffffffffffffffffffffffffffff161461199d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611994906140f1565b60405180910390fd5b80600c60026101000a81548160ff02191690831515021790555050565b60135481565b601c5481565b60185481565b60105481565b600080600160006119e1612187565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611a9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9590614608565b60405180910390fd5b611ab2611aa9612187565b8585840361218f565b600191505092915050565b6000611ad1611aca612187565b848461235a565b6001905092915050565b601f6020528060005260406000206000915054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b611b16612187565b73ffffffffffffffffffffffffffffffffffffffff16611b34611680565b73ffffffffffffffffffffffffffffffffffffffff1614611b8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b81906140f1565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611c279190613d37565b60405180910390a25050565b600e60009054906101000a900460ff1681565b60095481565b611c54612187565b73ffffffffffffffffffffffffffffffffffffffff16611c72611680565b73ffffffffffffffffffffffffffffffffffffffff1614611cc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbf906140f1565b60405180910390fd5b606381838587611cd89190614140565b611ce29190614140565b611cec9190614140565b1115611d2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2490614674565b60405180910390fd5b83601581905550826016819055508160178190555080601881905550601854601754601654601554611d5f9190614140565b611d699190614140565b611d739190614140565b60148190555050505050565b600f5481565b611d8d612187565b73ffffffffffffffffffffffffffffffffffffffff16611dab611680565b73ffffffffffffffffffffffffffffffffffffffff1614611e01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611df8906140f1565b60405180910390fd5b670de0b6b3a76400006103e86005611e17610e7b565b611e219190614202565b611e2b919061428b565b611e35919061428b565b811015611e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6e90614706565b60405180910390fd5b670de0b6b3a764000081611e8b9190614202565b600b8190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b6000611f2b612187565b73ffffffffffffffffffffffffffffffffffffffff16611f49611680565b73ffffffffffffffffffffffffffffffffffffffff1614611f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f96906140f1565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055506001905090565b60125481565b611fcf612187565b73ffffffffffffffffffffffffffffffffffffffff16611fed611680565b73ffffffffffffffffffffffffffffffffffffffff1614612043576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203a906140f1565b60405180910390fd5b8015612080576001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff0219169083151502179055505b50565b61208b612187565b73ffffffffffffffffffffffffffffffffffffffff166120a9611680565b73ffffffffffffffffffffffffffffffffffffffff16146120ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f6906140f1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561216f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216690614798565b60405180910390fd5b6121788161305a565b50565b60175481565b600b5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f69061482a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561226f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612266906148bc565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161234d9190613d61565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c19061494e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561243a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612431906149e0565b60405180910390fd5b60008114156124545761244f838360006131c1565b613055565b600c60009054906101000a900460ff1615612b1757612471611680565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156124df57506124af611680565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125185750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015612552575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561256b5750600560149054906101000a900460ff16155b15612b1657600c60019054906101000a900460ff1661266557601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806126255750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612664576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265b90614a4c565b60405180910390fd5b5b600e60009054906101000a900460ff161561282d57612682611680565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561270957507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561276157507f0000000000000000000000006d1d7ec678ff088985cb223d45a9369b293f7fd373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561282c5743600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106127e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127de90614b04565b60405180910390fd5b43600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128d05750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156129775760095481111561291a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291190614b96565b60405180910390fd5b600b5461292683611332565b826129319190614140565b1115612972576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296990614c02565b60405180910390fd5b612b15565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612a1a5750601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a6957600954811115612a64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5b90614c94565b60405180910390fd5b612b14565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612b1357600b54612ac683611332565b82612ad19190614140565b1115612b12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0990614c02565b60405180910390fd5b5b5b5b5b5b6000612b2230611332565b90506000600a548210159050808015612b475750600c60029054906101000a900460ff165b8015612b605750600560149054906101000a900460ff16155b8015612bb65750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c0c5750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c625750601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612ca6576001600560146101000a81548160ff021916908315150217905550612c8a613442565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d5c5750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612d6657600090505b6000811561304557601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612dc957506000601454115b15612ec957612df66064612de86014548861380390919063ffffffff16565b61381990919063ffffffff16565b905060145460155482612e099190614202565b612e13919061428b565b60196000828254612e249190614140565b9250508190555060145460175482612e3c9190614202565b612e46919061428b565b601b6000828254612e579190614140565b9250508190555060145460185482612e6f9190614202565b612e79919061428b565b601c6000828254612e8a9190614140565b9250508190555060145460165482612ea29190614202565b612eac919061428b565b601a6000828254612ebd9190614140565b92505081905550613021565b601f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612f2457506000600f54115b1561302057612f516064612f43600f548861380390919063ffffffff16565b61381990919063ffffffff16565b9050600f5460105482612f649190614202565b612f6e919061428b565b60196000828254612f7f9190614140565b92505081905550600f5460125482612f979190614202565b612fa1919061428b565b601b6000828254612fb29190614140565b92505081905550600f5460135482612fca9190614202565b612fd4919061428b565b601c6000828254612fe59190614140565b92505081905550600f5460115482612ffd9190614202565b613007919061428b565b601a60008282546130189190614140565b925050819055505b5b6000811115613036576130358730836131c1565b5b80856130429190614cb4565b94505b6130508787876131c1565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613231576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132289061494e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156132a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613298906149e0565b60405180910390fd5b6132ac83838361382f565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332990614d5a565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133c59190614140565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516134299190613d61565b60405180910390a361343c848484613834565b50505050565b600061344d30611332565b90506000601c54601a54601b546019546134679190614140565b6134719190614140565b61347b9190614140565b905060008083148061348d5750600082145b1561349a57505050613801565b6014600a546134a99190614202565b8311156134c2576014600a546134bf9190614202565b92505b6000600283601b54866134d59190614202565b6134df919061428b565b6134e9919061428b565b90506000613500828661383990919063ffffffff16565b905060004790506135108261384f565b6000613525824761383990919063ffffffff16565b90506000613550876135426019548561380390919063ffffffff16565b61381990919063ffffffff16565b9050600061357b8861356d601a548661380390919063ffffffff16565b61381990919063ffffffff16565b905060006135a689613598601c548761380390919063ffffffff16565b61381990919063ffffffff16565b90506000818385876135b89190614cb4565b6135c29190614cb4565b6135cc9190614cb4565b90506000601b8190555060006019819055506000601a819055506000601c81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161363490614dab565b60006040518083038185875af1925050503d8060008114613671576040519150601f19603f3d011682016040523d82523d6000602084013e613676565b606091505b505080995050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16836040516136c290614dab565b60006040518083038185875af1925050503d80600081146136ff576040519150601f19603f3d011682016040523d82523d6000602084013e613704565b606091505b50508099505060008811801561371a5750600081115b15613767576137298882613a8c565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618782601b5460405161375e93929190614dc0565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16476040516137ad90614dab565b60006040518083038185875af1925050503d80600081146137ea576040519150601f19603f3d011682016040523d82523d6000602084013e6137ef565b606091505b50508099505050505050505050505050505b565b600081836138119190614202565b905092915050565b60008183613827919061428b565b905092915050565b505050565b505050565b600081836138479190614cb4565b905092915050565b6000600267ffffffffffffffff81111561386c5761386b614df7565b5b60405190808252806020026020018201604052801561389a5781602001602082028036833780820191505090505b50905030816000815181106138b2576138b1614e26565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613957573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061397b9190614e6a565b8160018151811061398f5761398e614e26565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506139f4307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461218f565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613a56959493929190614f90565b600060405180830381600087803b158015613a7057600080fd5b505af1158015613a84573d6000803e3d6000fd5b505050505050565b613ab7307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461218f565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401613b3e96959493929190614fea565b60606040518083038185885af1158015613b5c573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613b819190615060565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613bc2578082015181840152602081019050613ba7565b83811115613bd1576000848401525b50505050565b6000601f19601f8301169050919050565b6000613bf382613b88565b613bfd8185613b93565b9350613c0d818560208601613ba4565b613c1681613bd7565b840191505092915050565b60006020820190508181036000830152613c3b8184613be8565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c7382613c48565b9050919050565b613c8381613c68565b8114613c8e57600080fd5b50565b600081359050613ca081613c7a565b92915050565b6000819050919050565b613cb981613ca6565b8114613cc457600080fd5b50565b600081359050613cd681613cb0565b92915050565b60008060408385031215613cf357613cf2613c43565b5b6000613d0185828601613c91565b9250506020613d1285828601613cc7565b9150509250929050565b60008115159050919050565b613d3181613d1c565b82525050565b6000602082019050613d4c6000830184613d28565b92915050565b613d5b81613ca6565b82525050565b6000602082019050613d766000830184613d52565b92915050565b600060208284031215613d9257613d91613c43565b5b6000613da084828501613c91565b91505092915050565b6000819050919050565b6000613dce613dc9613dc484613c48565b613da9565b613c48565b9050919050565b6000613de082613db3565b9050919050565b6000613df282613dd5565b9050919050565b613e0281613de7565b82525050565b6000602082019050613e1d6000830184613df9565b92915050565b60008060008060808587031215613e3d57613e3c613c43565b5b6000613e4b87828801613cc7565b9450506020613e5c87828801613cc7565b9350506040613e6d87828801613cc7565b9250506060613e7e87828801613cc7565b91505092959194509250565b600060208284031215613ea057613e9f613c43565b5b6000613eae84828501613cc7565b91505092915050565b600080600060608486031215613ed057613ecf613c43565b5b6000613ede86828701613c91565b9350506020613eef86828701613c91565b9250506040613f0086828701613cc7565b9150509250925092565b613f1381613c68565b82525050565b6000602082019050613f2e6000830184613f0a565b92915050565b600060ff82169050919050565b613f4a81613f34565b82525050565b6000602082019050613f656000830184613f41565b92915050565b613f7481613d1c565b8114613f7f57600080fd5b50565b600081359050613f9181613f6b565b92915050565b60008060408385031215613fae57613fad613c43565b5b6000613fbc85828601613c91565b9250506020613fcd85828601613f82565b9150509250929050565b600060208284031215613fed57613fec613c43565b5b6000613ffb84828501613f82565b91505092915050565b6000806040838503121561401b5761401a613c43565b5b600061402985828601613c91565b925050602061403a85828601613c91565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061408b57607f821691505b6020821081141561409f5761409e614044565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140db602083613b93565b91506140e6826140a5565b602082019050919050565b6000602082019050818103600083015261410a816140ce565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061414b82613ca6565b915061415683613ca6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561418b5761418a614111565b5b828201905092915050565b7f4d61782042757946656520393925000000000000000000000000000000000000600082015250565b60006141cc600e83613b93565b91506141d782614196565b602082019050919050565b600060208201905081810360008301526141fb816141bf565b9050919050565b600061420d82613ca6565b915061421883613ca6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561425157614250614111565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061429682613ca6565b91506142a183613ca6565b9250826142b1576142b061425c565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e35250000000000000000000000000000000000602082015250565b6000614318602f83613b93565b9150614323826142bc565b604082019050919050565b600060208201905081810360008301526143478161430b565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006143aa602883613b93565b91506143b58261434e565b604082019050919050565b600060208201905081810360008301526143d98161439d565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b600061443c603583613b93565b9150614447826143e0565b604082019050919050565b6000602082019050818103600083015261446b8161442f565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b60006144ce603483613b93565b91506144d982614472565b604082019050919050565b600060208201905081810360008301526144fd816144c1565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614560603983613b93565b915061456b82614504565b604082019050919050565b6000602082019050818103600083015261458f81614553565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006145f2602583613b93565b91506145fd82614596565b604082019050919050565b60006020820190508181036000830152614621816145e5565b9050919050565b7f4d61782053656c6c466565203939250000000000000000000000000000000000600082015250565b600061465e600f83613b93565b915061466982614628565b602082019050919050565b6000602082019050818103600083015261468d81614651565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b60006146f0602483613b93565b91506146fb82614694565b604082019050919050565b6000602082019050818103600083015261471f816146e3565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614782602683613b93565b915061478d82614726565b604082019050919050565b600060208201905081810360008301526147b181614775565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614814602483613b93565b915061481f826147b8565b604082019050919050565b6000602082019050818103600083015261484381614807565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006148a6602283613b93565b91506148b18261484a565b604082019050919050565b600060208201905081810360008301526148d581614899565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614938602583613b93565b9150614943826148dc565b604082019050919050565b600060208201905081810360008301526149678161492b565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006149ca602383613b93565b91506149d58261496e565b604082019050919050565b600060208201905081810360008301526149f9816149bd565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614a36601683613b93565b9150614a4182614a00565b602082019050919050565b60006020820190508181036000830152614a6581614a29565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614aee604983613b93565b9150614af982614a6c565b606082019050919050565b60006020820190508181036000830152614b1d81614ae1565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614b80603583613b93565b9150614b8b82614b24565b604082019050919050565b60006020820190508181036000830152614baf81614b73565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614bec601383613b93565b9150614bf782614bb6565b602082019050919050565b60006020820190508181036000830152614c1b81614bdf565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614c7e603683613b93565b9150614c8982614c22565b604082019050919050565b60006020820190508181036000830152614cad81614c71565b9050919050565b6000614cbf82613ca6565b9150614cca83613ca6565b925082821015614cdd57614cdc614111565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614d44602683613b93565b9150614d4f82614ce8565b604082019050919050565b60006020820190508181036000830152614d7381614d37565b9050919050565b600081905092915050565b50565b6000614d95600083614d7a565b9150614da082614d85565b600082019050919050565b6000614db682614d88565b9150819050919050565b6000606082019050614dd56000830186613d52565b614de26020830185613d52565b614def6040830184613d52565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614e6481613c7a565b92915050565b600060208284031215614e8057614e7f613c43565b5b6000614e8e84828501614e55565b91505092915050565b6000819050919050565b6000614ebc614eb7614eb284614e97565b613da9565b613ca6565b9050919050565b614ecc81614ea1565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614f0781613c68565b82525050565b6000614f198383614efe565b60208301905092915050565b6000602082019050919050565b6000614f3d82614ed2565b614f478185614edd565b9350614f5283614eee565b8060005b83811015614f83578151614f6a8882614f0d565b9750614f7583614f25565b925050600181019050614f56565b5085935050505092915050565b600060a082019050614fa56000830188613d52565b614fb26020830187614ec3565b8181036040830152614fc48186614f32565b9050614fd36060830185613f0a565b614fe06080830184613d52565b9695505050505050565b600060c082019050614fff6000830189613f0a565b61500c6020830188613d52565b6150196040830187614ec3565b6150266060830186614ec3565b6150336080830185613f0a565b61504060a0830184613d52565b979650505050505050565b60008151905061505a81613cb0565b92915050565b60008060006060848603121561507957615078613c43565b5b60006150878682870161504b565b93505060206150988682870161504b565b92505060406150a98682870161504b565b915050925092509256fea264697066735822122071817c8ab89401f82b5e61f114227d120a016c6612a9378b68e20bcc35e64cb364736f6c634300080a0033

Deployed Bytecode Sourcemap

32990:16604:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9917:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12084:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34034:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34471:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33072:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11037:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34255:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39878:498;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34215:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38959:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12735:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33175:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10879:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13636:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34177:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33130:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33484:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41598:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34002:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33564:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11208:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3152:103;;;;;;;;;;;;;:::i;:::-;;39507:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33299:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38454:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33264:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33895:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2501:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33336:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34070:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10136:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38050:138;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41090:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39770:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33969:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34295:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34146:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33860:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14354:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11548:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34692:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33524:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40900:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33781:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33369:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40384:508;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33829:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39242:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11786:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33411:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38249:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33932:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37810:188;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3410:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34108:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33451:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9917:100;9971:13;10004:5;9997:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9917:100;:::o;12084:169::-;12167:4;12184:39;12193:12;:10;:12::i;:::-;12207:7;12216:6;12184:8;:39::i;:::-;12241:4;12234:11;;12084:169;;;;:::o;34034:29::-;;;;:::o;34471:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;33072:51::-;;;:::o;11037:108::-;11098:7;11125:12;;11118:19;;11037:108;:::o;34255:33::-;;;;:::o;39878:498::-;2732:12;:10;:12::i;:::-;2721:23;;:7;:5;:7::i;:::-;:23;;;2713:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40113:2:::1;40101:7;40085:13;40069;40055:11;:27;;;;:::i;:::-;:43;;;;:::i;:::-;:53;;;;:::i;:::-;40054:61;;40046:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;40155:11;40139:13;:27;;;;40195:13;40177:15;:31;;;;40237:13;40219:15;:31;;;;40273:7;40261:9;:19;;;;40358:9;;40340:15;;40322;;40306:13;;:31;;;;:::i;:::-;:49;;;;:::i;:::-;:61;;;;:::i;:::-;40291:12;:76;;;;39878:498:::0;;;;:::o;34215:33::-;;;;:::o;38959:275::-;2732:12;:10;:12::i;:::-;2721:23;;:7;:5;:7::i;:::-;:23;;;2713:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39096:4:::1;39088;39083:1;39067:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39066:26;;;;:::i;:::-;39065:35;;;;:::i;:::-;39055:6;:45;;39033:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;39219:6;39209;:17;;;;:::i;:::-;39186:20;:40;;;;38959:275:::0;:::o;12735:492::-;12875:4;12892:36;12902:6;12910:9;12921:6;12892:9;:36::i;:::-;12941:24;12968:11;:19;12980:6;12968:19;;;;;;;;;;;;;;;:33;12988:12;:10;:12::i;:::-;12968:33;;;;;;;;;;;;;;;;12941:60;;13040:6;13020:16;:26;;13012:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;13127:57;13136:6;13144:12;:10;:12::i;:::-;13177:6;13158:16;:25;13127:8;:57::i;:::-;13215:4;13208:11;;;12735:492;;;;;:::o;33175:53::-;33221:6;33175:53;:::o;10879:93::-;10937:5;10962:2;10955:9;;10879:93;:::o;13636:215::-;13724:4;13741:80;13750:12;:10;:12::i;:::-;13764:7;13810:10;13773:11;:25;13785:12;:10;:12::i;:::-;13773:25;;;;;;;;;;;;;;;:34;13799:7;13773:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13741:8;:80::i;:::-;13839:4;13832:11;;13636:215;;;;:::o;34177:31::-;;;;:::o;33130:38::-;;;:::o;33484:33::-;;;;;;;;;;;;;:::o;41598:126::-;41664:4;41688:19;:28;41708:7;41688:28;;;;;;;;;;;;;;;;;;;;;;;;;41681:35;;41598:126;;;:::o;34002:28::-;;;;:::o;33564:30::-;;;;;;;;;;;;;:::o;11208:127::-;11282:7;11309:9;:18;11319:7;11309:18;;;;;;;;;;;;;;;;11302:25;;11208:127;;;:::o;3152:103::-;2732:12;:10;:12::i;:::-;2721:23;;:7;:5;:7::i;:::-;:23;;;2713:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3217:30:::1;3244:1;3217:18;:30::i;:::-;3152:103::o:0;39507:167::-;2732:12;:10;:12::i;:::-;2721:23;;:7;:5;:7::i;:::-;:23;;;2713:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39662:4:::1;39620:31;:39;39652:6;39620:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39507:167:::0;;:::o;33299:30::-;;;;;;;;;;;;;:::o;38454:497::-;38562:4;2732:12;:10;:12::i;:::-;2721:23;;:7;:5;:7::i;:::-;:23;;;2713:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38641:6:::1;38636:1;38620:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38619:28;;;;:::i;:::-;38606:9;:41;;38584:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;38796:4;38791:1;38775:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38774:26;;;;:::i;:::-;38761:9;:39;;38739:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;38912:9;38891:18;:30;;;;38939:4;38932:11;;38454:497:::0;;;:::o;33264:28::-;;;;;;;;;;;;;:::o;33895:30::-;;;;:::o;2501:87::-;2547:7;2574:6;;;;;;;;;;;2567:13;;2501:87;:::o;33336:24::-;;;;;;;;;;;;;:::o;34070:31::-;;;;:::o;10136:104::-;10192:13;10225:7;10218:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10136:104;:::o;38050:138::-;38119:4;2732:12;:10;:12::i;:::-;2721:23;;:7;:5;:7::i;:::-;:23;;;2713:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38153:5:::1;38136:14;;:22;;;;;;;;;;;;;;;;;;38176:4;38169:11;;38050:138:::0;:::o;41090:304::-;2732:12;:10;:12::i;:::-;2721:23;;:7;:5;:7::i;:::-;:23;;;2713:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41234:13:::1;41226:21;;:4;:21;;;;41204:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;41345:41;41374:4;41380:5;41345:28;:41::i;:::-;41090:304:::0;;:::o;39770:100::-;2732:12;:10;:12::i;:::-;2721:23;;:7;:5;:7::i;:::-;:23;;;2713:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39855:7:::1;39841:11;;:21;;;;;;;;;;;;;;;;;;39770:100:::0;:::o;33969:24::-;;;;:::o;34295:27::-;;;;:::o;34146:25::-;;;;:::o;33860:28::-;;;;:::o;14354:413::-;14447:4;14464:24;14491:11;:25;14503:12;:10;:12::i;:::-;14491:25;;;;;;;;;;;;;;;:34;14517:7;14491:34;;;;;;;;;;;;;;;;14464:61;;14564:15;14544:16;:35;;14536:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14657:67;14666:12;:10;:12::i;:::-;14680:7;14708:15;14689:16;:34;14657:8;:67::i;:::-;14755:4;14748:11;;;14354:413;;;;:::o;11548:175::-;11634:4;11651:42;11661:12;:10;:12::i;:::-;11675:9;11686:6;11651:9;:42::i;:::-;11711:4;11704:11;;11548:175;;;;:::o;34692:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33524:33::-;;;;;;;;;;;;;:::o;40900:182::-;2732:12;:10;:12::i;:::-;2721:23;;:7;:5;:7::i;:::-;:23;;;2713:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41016:8:::1;40985:19;:28;41005:7;40985:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41056:7;41040:34;;;41065:8;41040:34;;;;;;:::i;:::-;;;;;;;;40900:182:::0;;:::o;33781:39::-;;;;;;;;;;;;;:::o;33369:35::-;;;;:::o;40384:508::-;2732:12;:10;:12::i;:::-;2721:23;;:7;:5;:7::i;:::-;:23;;;2713:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40620:2:::1;40608:7;40592:13;40576;40562:11;:27;;;;:::i;:::-;:43;;;;:::i;:::-;:53;;;;:::i;:::-;40561:61;;40553:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;40664:11;40647:14;:28;;;;40705:13;40686:16;:32;;;;40748:13;40729:16;:32;;;;40785:7;40772:10;:20;;;;40874:10;;40855:16;;40836;;40819:14;;:33;;;;:::i;:::-;:52;;;;:::i;:::-;:65;;;;:::i;:::-;40803:13;:81;;;;40384:508:::0;;;;:::o;33829:27::-;;;;:::o;39242:256::-;2732:12;:10;:12::i;:::-;2721:23;;:7;:5;:7::i;:::-;:23;;;2713:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39382:4:::1;39374;39369:1;39353:13;:11;:13::i;:::-;:17;;;;:::i;:::-;39352:26;;;;:::i;:::-;39351:35;;;;:::i;:::-;39341:6;:45;;39319:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;39483:6;39473;:17;;;;:::i;:::-;39461:9;:29;;;;39242:256:::0;:::o;11786:151::-;11875:7;11902:11;:18;11914:5;11902:18;;;;;;;;;;;;;;;:27;11921:7;11902:27;;;;;;;;;;;;;;;;11895:34;;11786:151;;;;:::o;33411:33::-;;;;:::o;38249:135::-;38309:4;2732:12;:10;:12::i;:::-;2721:23;;:7;:5;:7::i;:::-;:23;;;2713:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38349:5:::1;38326:20;;:28;;;;;;;;;;;;;;;;;;38372:4;38365:11;;38249:135:::0;:::o;33932:30::-;;;;:::o;37810:188::-;2732:12;:10;:12::i;:::-;2721:23;;:7;:5;:7::i;:::-;:23;;;2713:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37879:6:::1;37876:106;;;37931:4;37915:13;;:20;;;;;;;;;;;;;;;;;;37964:4;37950:11;;:18;;;;;;;;;;;;;;;;;;37876:106;37810:188:::0;:::o;3410:201::-;2732:12;:10;:12::i;:::-;2721:23;;:7;:5;:7::i;:::-;:23;;;2713:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3519:1:::1;3499:22;;:8;:22;;;;3491:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3575:28;3594:8;3575:18;:28::i;:::-;3410:201:::0;:::o;34108:31::-;;;;:::o;33451:24::-;;;;:::o;1174:98::-;1227:7;1254:10;1247:17;;1174:98;:::o;18038:380::-;18191:1;18174:19;;:5;:19;;;;18166:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18272:1;18253:21;;:7;:21;;;;18245:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18356:6;18326:11;:18;18338:5;18326:18;;;;;;;;;;;;;;;:27;18345:7;18326:27;;;;;;;;;;;;;;;:36;;;;18394:7;18378:32;;18387:5;18378:32;;;18403:6;18378:32;;;;;;:::i;:::-;;;;;;;;18038:380;;;:::o;41732:4847::-;41880:1;41864:18;;:4;:18;;;;41856:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41957:1;41943:16;;:2;:16;;;;41935:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;42026:1;42016:6;:11;42012:93;;;42044:28;42060:4;42066:2;42070:1;42044:15;:28::i;:::-;42087:7;;42012:93;42121:14;;;;;;;;;;;42117:2487;;;42182:7;:5;:7::i;:::-;42174:15;;:4;:15;;;;:49;;;;;42216:7;:5;:7::i;:::-;42210:13;;:2;:13;;;;42174:49;:86;;;;;42258:1;42244:16;;:2;:16;;;;42174:86;:128;;;;;42295:6;42281:21;;:2;:21;;;;42174:128;:158;;;;;42324:8;;;;;;;;;;;42323:9;42174:158;42152:2441;;;42372:13;;;;;;;;;;;42367:223;;42444:19;:25;42464:4;42444:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42473:19;:23;42493:2;42473:23;;;;;;;;;;;;;;;;;;;;;;;;;42444:52;42410:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;42367:223;42746:20;;;;;;;;;;;42742:641;;;42827:7;:5;:7::i;:::-;42821:13;;:2;:13;;;;:72;;;;;42877:15;42863:30;;:2;:30;;;;42821:72;:129;;;;;42936:13;42922:28;;:2;:28;;;;42821:129;42791:573;;;43114:12;43039:28;:39;43068:9;43039:39;;;;;;;;;;;;;;;;:87;43001:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;43328:12;43286:28;:39;43315:9;43286:39;;;;;;;;;;;;;;;:54;;;;42791:573;42742:641;43457:25;:31;43483:4;43457:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43514:31;:35;43546:2;43514:35;;;;;;;;;;;;;;;;;;;;;;;;;43513:36;43457:92;43431:1147;;;43636:20;;43626:6;:30;;43592:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;43844:9;;43827:13;43837:2;43827:9;:13::i;:::-;43818:6;:22;;;;:::i;:::-;:35;;43784:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43431:1147;;;44022:25;:29;44048:2;44022:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;44077:31;:37;44109:4;44077:37;;;;;;;;;;;;;;;;;;;;;;;;;44076:38;44022:92;43996:582;;;44201:20;;44191:6;:30;;44157:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;43996:582;;;44358:31;:35;44390:2;44358:35;;;;;;;;;;;;;;;;;;;;;;;;;44353:225;;44478:9;;44461:13;44471:2;44461:9;:13::i;:::-;44452:6;:22;;;;:::i;:::-;:35;;44418:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;44353:225;43996:582;43431:1147;42152:2441;42117:2487;44616:28;44647:24;44665:4;44647:9;:24::i;:::-;44616:55;;44684:12;44723:18;;44699:20;:42;;44684:57;;44772:7;:35;;;;;44796:11;;;;;;;;;;;44772:35;:61;;;;;44825:8;;;;;;;;;;;44824:9;44772:61;:110;;;;;44851:25;:31;44877:4;44851:31;;;;;;;;;;;;;;;;;;;;;;;;;44850:32;44772:110;:153;;;;;44900:19;:25;44920:4;44900:25;;;;;;;;;;;;;;;;;;;;;;;;;44899:26;44772:153;:194;;;;;44943:19;:23;44963:2;44943:23;;;;;;;;;;;;;;;;;;;;;;;;;44942:24;44772:194;44754:326;;;45004:4;44993:8;;:15;;;;;;;;;;;;;;;;;;45025:10;:8;:10::i;:::-;45063:5;45052:8;;:16;;;;;;;;;;;;;;;;;;44754:326;45092:12;45108:8;;;;;;;;;;;45107:9;45092:24;;45218:19;:25;45238:4;45218:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;45247:19;:23;45267:2;45247:23;;;;;;;;;;;;;;;;;;;;;;;;;45218:52;45214:100;;;45297:5;45287:15;;45214:100;45326:12;45431:7;45427:1099;;;45483:25;:29;45509:2;45483:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;45532:1;45516:13;;:17;45483:50;45479:898;;;45561:34;45591:3;45561:25;45572:13;;45561:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;45554:41;;45648:13;;45630:14;;45623:4;:21;;;;:::i;:::-;45622:39;;;;:::i;:::-;45602:16;;:59;;;;;;;:::i;:::-;;;;;;;;45730:13;;45710:16;;45703:4;:23;;;;:::i;:::-;45702:41;;;;:::i;:::-;45680:18;;:63;;;;;;;:::i;:::-;;;;;;;;45800:13;;45786:10;;45779:4;:17;;;;:::i;:::-;45778:35;;;;:::i;:::-;45762:12;;:51;;;;;;;:::i;:::-;;;;;;;;45882:13;;45862:16;;45855:4;:23;;;;:::i;:::-;45854:41;;;;:::i;:::-;45832:18;;:63;;;;;;;:::i;:::-;;;;;;;;45479:898;;;45957:25;:31;45983:4;45957:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;46007:1;45992:12;;:16;45957:51;45953:424;;;46036:33;46065:3;46036:24;46047:12;;46036:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;46029:40;;46121:12;;46104:13;;46097:4;:20;;;;:::i;:::-;46096:37;;;;:::i;:::-;46076:16;;:57;;;;;;;:::i;:::-;;;;;;;;46201:12;;46182:15;;46175:4;:22;;;;:::i;:::-;46174:39;;;;:::i;:::-;46152:18;;:61;;;;;;;:::i;:::-;;;;;;;;46269:12;;46256:9;;46249:4;:16;;;;:::i;:::-;46248:33;;;;:::i;:::-;46232:12;;:49;;;;;;;:::i;:::-;;;;;;;;46349:12;;46330:15;;46323:4;:22;;;;:::i;:::-;46322:39;;;;:::i;:::-;46300:18;;:61;;;;;;;:::i;:::-;;;;;;;;45953:424;45479:898;46404:1;46397:4;:8;46393:91;;;46426:42;46442:4;46456;46463;46426:15;:42::i;:::-;46393:91;46510:4;46500:14;;;;;:::i;:::-;;;45427:1099;46538:33;46554:4;46560:2;46564:6;46538:15;:33::i;:::-;41845:4734;;;;41732:4847;;;;:::o;3771:191::-;3845:16;3864:6;;;;;;;;;;;3845:25;;3890:8;3881:6;;:17;;;;;;;;;;;;;;;;;;3945:8;3914:40;;3935:8;3914:40;;;;;;;;;;;;3834:128;3771:191;:::o;41402:188::-;41519:5;41485:25;:31;41511:4;41485:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41576:5;41542:40;;41570:4;41542:40;;;;;;;;;;;;41402:188;;:::o;15257:733::-;15415:1;15397:20;;:6;:20;;;;15389:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15499:1;15478:23;;:9;:23;;;;15470:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15554:47;15575:6;15583:9;15594:6;15554:20;:47::i;:::-;15614:21;15638:9;:17;15648:6;15638:17;;;;;;;;;;;;;;;;15614:41;;15691:6;15674:13;:23;;15666:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15812:6;15796:13;:22;15776:9;:17;15786:6;15776:17;;;;;;;;;;;;;;;:42;;;;15864:6;15840:9;:20;15850:9;15840:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15905:9;15888:35;;15897:6;15888:35;;;15916:6;15888:35;;;;;;:::i;:::-;;;;;;;;15936:46;15956:6;15964:9;15975:6;15936:19;:46::i;:::-;15378:612;15257:733;;;:::o;47707:1882::-;47746:23;47772:24;47790:4;47772:9;:24::i;:::-;47746:50;;47807:25;47896:12;;47875:18;;47854;;47835:16;;:37;;;;:::i;:::-;:58;;;;:::i;:::-;:73;;;;:::i;:::-;47807:101;;47919:12;47967:1;47948:15;:20;:46;;;;47993:1;47972:17;:22;47948:46;47944:85;;;48011:7;;;;;47944:85;48084:2;48063:18;;:23;;;;:::i;:::-;48045:15;:41;48041:115;;;48142:2;48121:18;;:23;;;;:::i;:::-;48103:41;;48041:115;48217:23;48304:1;48284:17;48262:18;;48244:15;:36;;;;:::i;:::-;48243:58;;;;:::i;:::-;:62;;;;:::i;:::-;48217:88;;48316:26;48345:36;48365:15;48345;:19;;:36;;;;:::i;:::-;48316:65;;48394:25;48422:21;48394:49;;48456:36;48473:18;48456:16;:36::i;:::-;48505:18;48526:44;48552:17;48526:21;:25;;:44;;;;:::i;:::-;48505:65;;48577:21;48601:55;48638:17;48601:32;48616:16;;48601:10;:14;;:32;;;;:::i;:::-;:36;;:55;;;;:::i;:::-;48577:79;;48667:23;48693:57;48732:17;48693:34;48708:18;;48693:10;:14;;:34;;;;:::i;:::-;:38;;:57;;;;:::i;:::-;48667:83;;48761:17;48781:51;48814:17;48781:28;48796:12;;48781:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;48761:71;;48845:23;48918:9;48900:15;48884:13;48871:10;:26;;;;:::i;:::-;:44;;;;:::i;:::-;:56;;;;:::i;:::-;48845:82;;48961:1;48940:18;:22;;;;48986:1;48967:16;:20;;;;49019:1;48998:18;:22;;;;49046:1;49031:12;:16;;;;49082:9;;;;;;;;;;;49074:23;;49105:9;49074:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49060:59;;;;;49152:15;;;;;;;;;;;49144:29;;49181:15;49144:57;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49130:71;;;;;49238:1;49220:15;:19;:42;;;;;49261:1;49243:15;:19;49220:42;49216:278;;;49279:46;49292:15;49309;49279:12;:46::i;:::-;49345:137;49378:18;49415:15;49449:18;;49345:137;;;;;;;;:::i;:::-;;;;;;;;49216:278;49528:13;;;;;;;;;;;49520:27;;49555:21;49520:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49506:75;;;;;47735:1854;;;;;;;;;;;47707:1882;:::o;23491:98::-;23549:7;23580:1;23576;:5;;;;:::i;:::-;23569:12;;23491:98;;;;:::o;23890:::-;23948:7;23979:1;23975;:5;;;;:::i;:::-;23968:12;;23890:98;;;;:::o;19018:125::-;;;;:::o;19747:124::-;;;;:::o;23134:98::-;23192:7;23223:1;23219;:5;;;;:::i;:::-;23212:12;;23134:98;;;;:::o;46587:589::-;46713:21;46751:1;46737:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46713:40;;46782:4;46764;46769:1;46764:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;46808:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46798:4;46803:1;46798:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;46843:62;46860:4;46875:15;46893:11;46843:8;:62::i;:::-;46944:15;:66;;;47025:11;47051:1;47095:4;47122;47142:15;46944:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46642:534;46587:589;:::o;47184:515::-;47332:62;47349:4;47364:15;47382:11;47332:8;:62::i;:::-;47437:15;:31;;;47476:9;47509:4;47529:11;47555:1;47598;47641:9;;;;;;;;;;;47665:15;47437:254;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;47184:515;;:::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:118::-;3581:24;3599:5;3581:24;:::i;:::-;3576:3;3569:37;3494:118;;:::o;3618:222::-;3711:4;3749:2;3738:9;3734:18;3726:26;;3762:71;3830:1;3819:9;3815:17;3806:6;3762:71;:::i;:::-;3618:222;;;;:::o;3846:329::-;3905:6;3954:2;3942:9;3933:7;3929:23;3925:32;3922:119;;;3960:79;;:::i;:::-;3922:119;4080:1;4105:53;4150:7;4141:6;4130:9;4126:22;4105:53;:::i;:::-;4095:63;;4051:117;3846:329;;;;:::o;4181:60::-;4209:3;4230:5;4223:12;;4181:60;;;:::o;4247:142::-;4297:9;4330:53;4348:34;4357:24;4375:5;4357:24;:::i;:::-;4348:34;:::i;:::-;4330:53;:::i;:::-;4317:66;;4247:142;;;:::o;4395:126::-;4445:9;4478:37;4509:5;4478:37;:::i;:::-;4465:50;;4395:126;;;:::o;4527:153::-;4604:9;4637:37;4668:5;4637:37;:::i;:::-;4624:50;;4527:153;;;:::o;4686:185::-;4800:64;4858:5;4800:64;:::i;:::-;4795:3;4788:77;4686:185;;:::o;4877:276::-;4997:4;5035:2;5024:9;5020:18;5012:26;;5048:98;5143:1;5132:9;5128:17;5119:6;5048:98;:::i;:::-;4877:276;;;;:::o;5159:765::-;5245:6;5253;5261;5269;5318:3;5306:9;5297:7;5293:23;5289:33;5286:120;;;5325:79;;:::i;:::-;5286:120;5445:1;5470:53;5515:7;5506:6;5495:9;5491:22;5470:53;:::i;:::-;5460:63;;5416:117;5572:2;5598:53;5643:7;5634:6;5623:9;5619:22;5598:53;:::i;:::-;5588:63;;5543:118;5700:2;5726:53;5771:7;5762:6;5751:9;5747:22;5726:53;:::i;:::-;5716:63;;5671:118;5828:2;5854:53;5899:7;5890:6;5879:9;5875:22;5854:53;:::i;:::-;5844:63;;5799:118;5159:765;;;;;;;:::o;5930:329::-;5989:6;6038:2;6026:9;6017:7;6013:23;6009:32;6006:119;;;6044:79;;:::i;:::-;6006:119;6164:1;6189:53;6234:7;6225:6;6214:9;6210:22;6189:53;:::i;:::-;6179:63;;6135:117;5930:329;;;;:::o;6265:619::-;6342:6;6350;6358;6407:2;6395:9;6386:7;6382:23;6378:32;6375:119;;;6413:79;;:::i;:::-;6375:119;6533:1;6558:53;6603:7;6594:6;6583:9;6579:22;6558:53;:::i;:::-;6548:63;;6504:117;6660:2;6686:53;6731:7;6722:6;6711:9;6707:22;6686:53;:::i;:::-;6676:63;;6631:118;6788:2;6814:53;6859:7;6850:6;6839:9;6835:22;6814:53;:::i;:::-;6804:63;;6759:118;6265:619;;;;;:::o;6890:118::-;6977:24;6995:5;6977:24;:::i;:::-;6972:3;6965:37;6890:118;;:::o;7014:222::-;7107:4;7145:2;7134:9;7130:18;7122:26;;7158:71;7226:1;7215:9;7211:17;7202:6;7158:71;:::i;:::-;7014:222;;;;:::o;7242:86::-;7277:7;7317:4;7310:5;7306:16;7295:27;;7242:86;;;:::o;7334:112::-;7417:22;7433:5;7417:22;:::i;:::-;7412:3;7405:35;7334:112;;:::o;7452:214::-;7541:4;7579:2;7568:9;7564:18;7556:26;;7592:67;7656:1;7645:9;7641:17;7632:6;7592:67;:::i;:::-;7452:214;;;;:::o;7672:116::-;7742:21;7757:5;7742:21;:::i;:::-;7735:5;7732:32;7722:60;;7778:1;7775;7768:12;7722:60;7672:116;:::o;7794:133::-;7837:5;7875:6;7862:20;7853:29;;7891:30;7915:5;7891:30;:::i;:::-;7794:133;;;;:::o;7933:468::-;7998:6;8006;8055:2;8043:9;8034:7;8030:23;8026:32;8023:119;;;8061:79;;:::i;:::-;8023:119;8181:1;8206:53;8251:7;8242:6;8231:9;8227:22;8206:53;:::i;:::-;8196:63;;8152:117;8308:2;8334:50;8376:7;8367:6;8356:9;8352:22;8334:50;:::i;:::-;8324:60;;8279:115;7933:468;;;;;:::o;8407:323::-;8463:6;8512:2;8500:9;8491:7;8487:23;8483:32;8480:119;;;8518:79;;:::i;:::-;8480:119;8638:1;8663:50;8705:7;8696:6;8685:9;8681:22;8663:50;:::i;:::-;8653:60;;8609:114;8407:323;;;;:::o;8736:474::-;8804:6;8812;8861:2;8849:9;8840:7;8836:23;8832:32;8829:119;;;8867:79;;:::i;:::-;8829:119;8987:1;9012:53;9057:7;9048:6;9037:9;9033:22;9012:53;:::i;:::-;9002:63;;8958:117;9114:2;9140:53;9185:7;9176:6;9165:9;9161:22;9140:53;:::i;:::-;9130:63;;9085:118;8736:474;;;;;:::o;9216:180::-;9264:77;9261:1;9254:88;9361:4;9358:1;9351:15;9385:4;9382:1;9375:15;9402:320;9446:6;9483:1;9477:4;9473:12;9463:22;;9530:1;9524:4;9520:12;9551:18;9541:81;;9607:4;9599:6;9595:17;9585:27;;9541:81;9669:2;9661:6;9658:14;9638:18;9635:38;9632:84;;;9688:18;;:::i;:::-;9632:84;9453:269;9402:320;;;:::o;9728:182::-;9868:34;9864:1;9856:6;9852:14;9845:58;9728:182;:::o;9916:366::-;10058:3;10079:67;10143:2;10138:3;10079:67;:::i;:::-;10072:74;;10155:93;10244:3;10155:93;:::i;:::-;10273:2;10268:3;10264:12;10257:19;;9916:366;;;:::o;10288:419::-;10454:4;10492:2;10481:9;10477:18;10469:26;;10541:9;10535:4;10531:20;10527:1;10516:9;10512:17;10505:47;10569:131;10695:4;10569:131;:::i;:::-;10561:139;;10288:419;;;:::o;10713:180::-;10761:77;10758:1;10751:88;10858:4;10855:1;10848:15;10882:4;10879:1;10872:15;10899:305;10939:3;10958:20;10976:1;10958:20;:::i;:::-;10953:25;;10992:20;11010:1;10992:20;:::i;:::-;10987:25;;11146:1;11078:66;11074:74;11071:1;11068:81;11065:107;;;11152:18;;:::i;:::-;11065:107;11196:1;11193;11189:9;11182:16;;10899:305;;;;:::o;11210:164::-;11350:16;11346:1;11338:6;11334:14;11327:40;11210:164;:::o;11380:366::-;11522:3;11543:67;11607:2;11602:3;11543:67;:::i;:::-;11536:74;;11619:93;11708:3;11619:93;:::i;:::-;11737:2;11732:3;11728:12;11721:19;;11380:366;;;:::o;11752:419::-;11918:4;11956:2;11945:9;11941:18;11933:26;;12005:9;11999:4;11995:20;11991:1;11980:9;11976:17;11969:47;12033:131;12159:4;12033:131;:::i;:::-;12025:139;;11752:419;;;:::o;12177:348::-;12217:7;12240:20;12258:1;12240:20;:::i;:::-;12235:25;;12274:20;12292:1;12274:20;:::i;:::-;12269:25;;12462:1;12394:66;12390:74;12387:1;12384:81;12379:1;12372:9;12365:17;12361:105;12358:131;;;12469:18;;:::i;:::-;12358:131;12517:1;12514;12510:9;12499:20;;12177:348;;;;:::o;12531:180::-;12579:77;12576:1;12569:88;12676:4;12673:1;12666:15;12700:4;12697:1;12690:15;12717:185;12757:1;12774:20;12792:1;12774:20;:::i;:::-;12769:25;;12808:20;12826:1;12808:20;:::i;:::-;12803:25;;12847:1;12837:35;;12852:18;;:::i;:::-;12837:35;12894:1;12891;12887:9;12882:14;;12717:185;;;;:::o;12908:234::-;13048:34;13044:1;13036:6;13032:14;13025:58;13117:17;13112:2;13104:6;13100:15;13093:42;12908:234;:::o;13148:366::-;13290:3;13311:67;13375:2;13370:3;13311:67;:::i;:::-;13304:74;;13387:93;13476:3;13387:93;:::i;:::-;13505:2;13500:3;13496:12;13489:19;;13148:366;;;:::o;13520:419::-;13686:4;13724:2;13713:9;13709:18;13701:26;;13773:9;13767:4;13763:20;13759:1;13748:9;13744:17;13737:47;13801:131;13927:4;13801:131;:::i;:::-;13793:139;;13520:419;;;:::o;13945:227::-;14085:34;14081:1;14073:6;14069:14;14062:58;14154:10;14149:2;14141:6;14137:15;14130:35;13945:227;:::o;14178:366::-;14320:3;14341:67;14405:2;14400:3;14341:67;:::i;:::-;14334:74;;14417:93;14506:3;14417:93;:::i;:::-;14535:2;14530:3;14526:12;14519:19;;14178:366;;;:::o;14550:419::-;14716:4;14754:2;14743:9;14739:18;14731:26;;14803:9;14797:4;14793:20;14789:1;14778:9;14774:17;14767:47;14831:131;14957:4;14831:131;:::i;:::-;14823:139;;14550:419;;;:::o;14975:240::-;15115:34;15111:1;15103:6;15099:14;15092:58;15184:23;15179:2;15171:6;15167:15;15160:48;14975:240;:::o;15221:366::-;15363:3;15384:67;15448:2;15443:3;15384:67;:::i;:::-;15377:74;;15460:93;15549:3;15460:93;:::i;:::-;15578:2;15573:3;15569:12;15562:19;;15221:366;;;:::o;15593:419::-;15759:4;15797:2;15786:9;15782:18;15774:26;;15846:9;15840:4;15836:20;15832:1;15821:9;15817:17;15810:47;15874:131;16000:4;15874:131;:::i;:::-;15866:139;;15593:419;;;:::o;16018:239::-;16158:34;16154:1;16146:6;16142:14;16135:58;16227:22;16222:2;16214:6;16210:15;16203:47;16018:239;:::o;16263:366::-;16405:3;16426:67;16490:2;16485:3;16426:67;:::i;:::-;16419:74;;16502:93;16591:3;16502:93;:::i;:::-;16620:2;16615:3;16611:12;16604:19;;16263:366;;;:::o;16635:419::-;16801:4;16839:2;16828:9;16824:18;16816:26;;16888:9;16882:4;16878:20;16874:1;16863:9;16859:17;16852:47;16916:131;17042:4;16916:131;:::i;:::-;16908:139;;16635:419;;;:::o;17060:244::-;17200:34;17196:1;17188:6;17184:14;17177:58;17269:27;17264:2;17256:6;17252:15;17245:52;17060:244;:::o;17310:366::-;17452:3;17473:67;17537:2;17532:3;17473:67;:::i;:::-;17466:74;;17549:93;17638:3;17549:93;:::i;:::-;17667:2;17662:3;17658:12;17651:19;;17310:366;;;:::o;17682:419::-;17848:4;17886:2;17875:9;17871:18;17863:26;;17935:9;17929:4;17925:20;17921:1;17910:9;17906:17;17899:47;17963:131;18089:4;17963:131;:::i;:::-;17955:139;;17682:419;;;:::o;18107:224::-;18247:34;18243:1;18235:6;18231:14;18224:58;18316:7;18311:2;18303:6;18299:15;18292:32;18107:224;:::o;18337:366::-;18479:3;18500:67;18564:2;18559:3;18500:67;:::i;:::-;18493:74;;18576:93;18665:3;18576:93;:::i;:::-;18694:2;18689:3;18685:12;18678:19;;18337:366;;;:::o;18709:419::-;18875:4;18913:2;18902:9;18898:18;18890:26;;18962:9;18956:4;18952:20;18948:1;18937:9;18933:17;18926:47;18990:131;19116:4;18990:131;:::i;:::-;18982:139;;18709:419;;;:::o;19134:165::-;19274:17;19270:1;19262:6;19258:14;19251:41;19134:165;:::o;19305:366::-;19447:3;19468:67;19532:2;19527:3;19468:67;:::i;:::-;19461:74;;19544:93;19633:3;19544:93;:::i;:::-;19662:2;19657:3;19653:12;19646:19;;19305:366;;;:::o;19677:419::-;19843:4;19881:2;19870:9;19866:18;19858:26;;19930:9;19924:4;19920:20;19916:1;19905:9;19901:17;19894:47;19958:131;20084:4;19958:131;:::i;:::-;19950:139;;19677:419;;;:::o;20102:223::-;20242:34;20238:1;20230:6;20226:14;20219:58;20311:6;20306:2;20298:6;20294:15;20287:31;20102:223;:::o;20331:366::-;20473:3;20494:67;20558:2;20553:3;20494:67;:::i;:::-;20487:74;;20570:93;20659:3;20570:93;:::i;:::-;20688:2;20683:3;20679:12;20672:19;;20331:366;;;:::o;20703:419::-;20869:4;20907:2;20896:9;20892:18;20884:26;;20956:9;20950:4;20946:20;20942:1;20931:9;20927:17;20920:47;20984:131;21110:4;20984:131;:::i;:::-;20976:139;;20703:419;;;:::o;21128:225::-;21268:34;21264:1;21256:6;21252:14;21245:58;21337:8;21332:2;21324:6;21320:15;21313:33;21128:225;:::o;21359:366::-;21501:3;21522:67;21586:2;21581:3;21522:67;:::i;:::-;21515:74;;21598:93;21687:3;21598:93;:::i;:::-;21716:2;21711:3;21707:12;21700:19;;21359:366;;;:::o;21731:419::-;21897:4;21935:2;21924:9;21920:18;21912:26;;21984:9;21978:4;21974:20;21970:1;21959:9;21955:17;21948:47;22012:131;22138:4;22012:131;:::i;:::-;22004:139;;21731:419;;;:::o;22156:223::-;22296:34;22292:1;22284:6;22280:14;22273:58;22365:6;22360:2;22352:6;22348:15;22341:31;22156:223;:::o;22385:366::-;22527:3;22548:67;22612:2;22607:3;22548:67;:::i;:::-;22541:74;;22624:93;22713:3;22624:93;:::i;:::-;22742:2;22737:3;22733:12;22726:19;;22385:366;;;:::o;22757:419::-;22923:4;22961:2;22950:9;22946:18;22938:26;;23010:9;23004:4;23000:20;22996:1;22985:9;22981:17;22974:47;23038:131;23164:4;23038:131;:::i;:::-;23030:139;;22757:419;;;:::o;23182:221::-;23322:34;23318:1;23310:6;23306:14;23299:58;23391:4;23386:2;23378:6;23374:15;23367:29;23182:221;:::o;23409:366::-;23551:3;23572:67;23636:2;23631:3;23572:67;:::i;:::-;23565:74;;23648:93;23737:3;23648:93;:::i;:::-;23766:2;23761:3;23757:12;23750:19;;23409:366;;;:::o;23781:419::-;23947:4;23985:2;23974:9;23970:18;23962:26;;24034:9;24028:4;24024:20;24020:1;24009:9;24005:17;23998:47;24062:131;24188:4;24062:131;:::i;:::-;24054:139;;23781:419;;;:::o;24206:224::-;24346:34;24342:1;24334:6;24330:14;24323:58;24415:7;24410:2;24402:6;24398:15;24391:32;24206:224;:::o;24436:366::-;24578:3;24599:67;24663:2;24658:3;24599:67;:::i;:::-;24592:74;;24675:93;24764:3;24675:93;:::i;:::-;24793:2;24788:3;24784:12;24777:19;;24436:366;;;:::o;24808:419::-;24974:4;25012:2;25001:9;24997:18;24989:26;;25061:9;25055:4;25051:20;25047:1;25036:9;25032:17;25025:47;25089:131;25215:4;25089:131;:::i;:::-;25081:139;;24808:419;;;:::o;25233:222::-;25373:34;25369:1;25361:6;25357:14;25350:58;25442:5;25437:2;25429:6;25425:15;25418:30;25233:222;:::o;25461:366::-;25603:3;25624:67;25688:2;25683:3;25624:67;:::i;:::-;25617:74;;25700:93;25789:3;25700:93;:::i;:::-;25818:2;25813:3;25809:12;25802:19;;25461:366;;;:::o;25833:419::-;25999:4;26037:2;26026:9;26022:18;26014:26;;26086:9;26080:4;26076:20;26072:1;26061:9;26057:17;26050:47;26114:131;26240:4;26114:131;:::i;:::-;26106:139;;25833:419;;;:::o;26258:172::-;26398:24;26394:1;26386:6;26382:14;26375:48;26258:172;:::o;26436:366::-;26578:3;26599:67;26663:2;26658:3;26599:67;:::i;:::-;26592:74;;26675:93;26764:3;26675:93;:::i;:::-;26793:2;26788:3;26784:12;26777:19;;26436:366;;;:::o;26808:419::-;26974:4;27012:2;27001:9;26997:18;26989:26;;27061:9;27055:4;27051:20;27047:1;27036:9;27032:17;27025:47;27089:131;27215:4;27089:131;:::i;:::-;27081:139;;26808:419;;;:::o;27233:297::-;27373:34;27369:1;27361:6;27357:14;27350:58;27442:34;27437:2;27429:6;27425:15;27418:59;27511:11;27506:2;27498:6;27494:15;27487:36;27233:297;:::o;27536:366::-;27678:3;27699:67;27763:2;27758:3;27699:67;:::i;:::-;27692:74;;27775:93;27864:3;27775:93;:::i;:::-;27893:2;27888:3;27884:12;27877:19;;27536:366;;;:::o;27908:419::-;28074:4;28112:2;28101:9;28097:18;28089:26;;28161:9;28155:4;28151:20;28147:1;28136:9;28132:17;28125:47;28189:131;28315:4;28189:131;:::i;:::-;28181:139;;27908:419;;;:::o;28333:240::-;28473:34;28469:1;28461:6;28457:14;28450:58;28542:23;28537:2;28529:6;28525:15;28518:48;28333:240;:::o;28579:366::-;28721:3;28742:67;28806:2;28801:3;28742:67;:::i;:::-;28735:74;;28818:93;28907:3;28818:93;:::i;:::-;28936:2;28931:3;28927:12;28920:19;;28579:366;;;:::o;28951:419::-;29117:4;29155:2;29144:9;29140:18;29132:26;;29204:9;29198:4;29194:20;29190:1;29179:9;29175:17;29168:47;29232:131;29358:4;29232:131;:::i;:::-;29224:139;;28951:419;;;:::o;29376:169::-;29516:21;29512:1;29504:6;29500:14;29493:45;29376:169;:::o;29551:366::-;29693:3;29714:67;29778:2;29773:3;29714:67;:::i;:::-;29707:74;;29790:93;29879:3;29790:93;:::i;:::-;29908:2;29903:3;29899:12;29892:19;;29551:366;;;:::o;29923:419::-;30089:4;30127:2;30116:9;30112:18;30104:26;;30176:9;30170:4;30166:20;30162:1;30151:9;30147:17;30140:47;30204:131;30330:4;30204:131;:::i;:::-;30196:139;;29923:419;;;:::o;30348:241::-;30488:34;30484:1;30476:6;30472:14;30465:58;30557:24;30552:2;30544:6;30540:15;30533:49;30348:241;:::o;30595:366::-;30737:3;30758:67;30822:2;30817:3;30758:67;:::i;:::-;30751:74;;30834:93;30923:3;30834:93;:::i;:::-;30952:2;30947:3;30943:12;30936:19;;30595:366;;;:::o;30967:419::-;31133:4;31171:2;31160:9;31156:18;31148:26;;31220:9;31214:4;31210:20;31206:1;31195:9;31191:17;31184:47;31248:131;31374:4;31248:131;:::i;:::-;31240:139;;30967:419;;;:::o;31392:191::-;31432:4;31452:20;31470:1;31452:20;:::i;:::-;31447:25;;31486:20;31504:1;31486:20;:::i;:::-;31481:25;;31525:1;31522;31519:8;31516:34;;;31530:18;;:::i;:::-;31516:34;31575:1;31572;31568:9;31560:17;;31392:191;;;;:::o;31589:225::-;31729:34;31725:1;31717:6;31713:14;31706:58;31798:8;31793:2;31785:6;31781:15;31774:33;31589:225;:::o;31820:366::-;31962:3;31983:67;32047:2;32042:3;31983:67;:::i;:::-;31976:74;;32059:93;32148:3;32059:93;:::i;:::-;32177:2;32172:3;32168:12;32161:19;;31820:366;;;:::o;32192:419::-;32358:4;32396:2;32385:9;32381:18;32373:26;;32445:9;32439:4;32435:20;32431:1;32420:9;32416:17;32409:47;32473:131;32599:4;32473:131;:::i;:::-;32465:139;;32192:419;;;:::o;32617:147::-;32718:11;32755:3;32740:18;;32617:147;;;;:::o;32770:114::-;;:::o;32890:398::-;33049:3;33070:83;33151:1;33146:3;33070:83;:::i;:::-;33063:90;;33162:93;33251:3;33162:93;:::i;:::-;33280:1;33275:3;33271:11;33264:18;;32890:398;;;:::o;33294:379::-;33478:3;33500:147;33643:3;33500:147;:::i;:::-;33493:154;;33664:3;33657:10;;33294:379;;;:::o;33679:442::-;33828:4;33866:2;33855:9;33851:18;33843:26;;33879:71;33947:1;33936:9;33932:17;33923:6;33879:71;:::i;:::-;33960:72;34028:2;34017:9;34013:18;34004:6;33960:72;:::i;:::-;34042;34110:2;34099:9;34095:18;34086:6;34042:72;:::i;:::-;33679:442;;;;;;:::o;34127:180::-;34175:77;34172:1;34165:88;34272:4;34269:1;34262:15;34296:4;34293:1;34286:15;34313:180;34361:77;34358:1;34351:88;34458:4;34455:1;34448:15;34482:4;34479:1;34472:15;34499:143;34556:5;34587:6;34581:13;34572:22;;34603:33;34630:5;34603:33;:::i;:::-;34499:143;;;;:::o;34648:351::-;34718:6;34767:2;34755:9;34746:7;34742:23;34738:32;34735:119;;;34773:79;;:::i;:::-;34735:119;34893:1;34918:64;34974:7;34965:6;34954:9;34950:22;34918:64;:::i;:::-;34908:74;;34864:128;34648:351;;;;:::o;35005:85::-;35050:7;35079:5;35068:16;;35005:85;;;:::o;35096:158::-;35154:9;35187:61;35205:42;35214:32;35240:5;35214:32;:::i;:::-;35205:42;:::i;:::-;35187:61;:::i;:::-;35174:74;;35096:158;;;:::o;35260:147::-;35355:45;35394:5;35355:45;:::i;:::-;35350:3;35343:58;35260:147;;:::o;35413:114::-;35480:6;35514:5;35508:12;35498:22;;35413:114;;;:::o;35533:184::-;35632:11;35666:6;35661:3;35654:19;35706:4;35701:3;35697:14;35682:29;;35533:184;;;;:::o;35723:132::-;35790:4;35813:3;35805:11;;35843:4;35838:3;35834:14;35826:22;;35723:132;;;:::o;35861:108::-;35938:24;35956:5;35938:24;:::i;:::-;35933:3;35926:37;35861:108;;:::o;35975:179::-;36044:10;36065:46;36107:3;36099:6;36065:46;:::i;:::-;36143:4;36138:3;36134:14;36120:28;;35975:179;;;;:::o;36160:113::-;36230:4;36262;36257:3;36253:14;36245:22;;36160:113;;;:::o;36309:732::-;36428:3;36457:54;36505:5;36457:54;:::i;:::-;36527:86;36606:6;36601:3;36527:86;:::i;:::-;36520:93;;36637:56;36687:5;36637:56;:::i;:::-;36716:7;36747:1;36732:284;36757:6;36754:1;36751:13;36732:284;;;36833:6;36827:13;36860:63;36919:3;36904:13;36860:63;:::i;:::-;36853:70;;36946:60;36999:6;36946:60;:::i;:::-;36936:70;;36792:224;36779:1;36776;36772:9;36767:14;;36732:284;;;36736:14;37032:3;37025:10;;36433:608;;;36309:732;;;;:::o;37047:831::-;37310:4;37348:3;37337:9;37333:19;37325:27;;37362:71;37430:1;37419:9;37415:17;37406:6;37362:71;:::i;:::-;37443:80;37519:2;37508:9;37504:18;37495:6;37443:80;:::i;:::-;37570:9;37564:4;37560:20;37555:2;37544:9;37540:18;37533:48;37598:108;37701:4;37692:6;37598:108;:::i;:::-;37590:116;;37716:72;37784:2;37773:9;37769:18;37760:6;37716:72;:::i;:::-;37798:73;37866:3;37855:9;37851:19;37842:6;37798:73;:::i;:::-;37047:831;;;;;;;;:::o;37884:807::-;38133:4;38171:3;38160:9;38156:19;38148:27;;38185:71;38253:1;38242:9;38238:17;38229:6;38185:71;:::i;:::-;38266:72;38334:2;38323:9;38319:18;38310:6;38266:72;:::i;:::-;38348:80;38424:2;38413:9;38409:18;38400:6;38348:80;:::i;:::-;38438;38514:2;38503:9;38499:18;38490:6;38438:80;:::i;:::-;38528:73;38596:3;38585:9;38581:19;38572:6;38528:73;:::i;:::-;38611;38679:3;38668:9;38664:19;38655:6;38611:73;:::i;:::-;37884:807;;;;;;;;;:::o;38697:143::-;38754:5;38785:6;38779:13;38770:22;;38801:33;38828:5;38801:33;:::i;:::-;38697:143;;;;:::o;38846:663::-;38934:6;38942;38950;38999:2;38987:9;38978:7;38974:23;38970:32;38967:119;;;39005:79;;:::i;:::-;38967:119;39125:1;39150:64;39206:7;39197:6;39186:9;39182:22;39150:64;:::i;:::-;39140:74;;39096:128;39263:2;39289:64;39345:7;39336:6;39325:9;39321:22;39289:64;:::i;:::-;39279:74;;39234:129;39402:2;39428:64;39484:7;39475:6;39464:9;39460:22;39428:64;:::i;:::-;39418:74;;39373:129;38846:663;;;;;:::o

Swarm Source

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