ETH Price: $2,492.84 (-2.09%)

Token

DINOZILLA (DINOZ)
 

Overview

Max Total Supply

500,000,000 DINOZ

Holders

22

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
gaywojak.eth
Balance
6,650,000 DINOZ

Value
$0.00
0xc7145cf1aA65a02C415FcfaD0F0B1cF570F5a2B9
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:
DINOZILLA

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-18
*/

/**

www.dinozilla.fun
https://t.me/dinozilla

*/


// 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 DINOZILLA 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 = false;

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

    uint256 public buyTotalFees;
	uint256 public 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("DINOZILLA", "DINOZ") {
        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 = 0;
        uint256 _buyMarketingFee = 4;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 1;

		uint256 _sellCharityFee = 0;
        uint256 _sellMarketingFee = 4;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 1;

        uint256 totalSupply = 500000000  * 1e18;

        maxTransactionAmount = 7500000 * 1e18; // 1.5% from total supply maxTransactionAmountTxn
        maxWallet = 7500000 * 1e18; // 1.5% from total supply maxWallet
        swapTokensAtAmount = (totalSupply * 40) / 10000; // 0.4% 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(0x7EEE138756f09d2F79A634158B65980c22F2F0C0); // set as charity wallet
        marketingWallet = address(0x7EEE138756f09d2F79A634158B65980c22F2F0C0); // set as marketing wallet
        devWallet = address(0x7EEE138756f09d2F79A634158B65980c22F2F0C0); // set as dev wallet

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

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

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

    receive() external payable {}

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

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

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

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

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

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

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

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

    function updateSellFees(
		uint256 _charityFee,
        uint256 _marketingFee,
        uint256 _liquidityFee,
        uint256 _devFee
    ) external onlyOwner {
		require((_marketingFee + _liquidityFee + _devFee) <= 10, "Max SellFee 10%");
		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":"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":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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"},{"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":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_charityFee","type":"uint256"},{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600c60006101000a81548160ff0219169083151502179055506000600c60016101000a81548160ff0219169083151502179055506000600c60026101000a81548160ff0219169083151502179055506001600e60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600981526020017f44494e4f5a494c4c4100000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f44494e4f5a00000000000000000000000000000000000000000000000000000081525081600390805190602001906200010292919062000b6e565b5080600490805190602001906200011b92919062000b6e565b5050506200013e620001326200062e60201b60201c565b6200063660201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200016a816001620006fc60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001ea573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000210919062000c88565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000278573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200029e919062000c88565b6040518363ffffffff1660e01b8152600401620002bd92919062000ccb565b6020604051808303816000875af1158015620002dd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000303919062000c88565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200034b60a0516001620006fc60201b60201c565b6200036060a0516001620007e660201b60201c565b6000806004905060008060019050600080600490506000806001905060006b019d971e4fe8401e7400000090506a06342fd08f00f6378000006009819055506a06342fd08f00f637800000600b81905550612710602882620003c3919062000d31565b620003cf919062000dc1565b600a819055508860108190555087601181905550866012819055508560138190555060135460125460115460105462000409919062000df9565b62000415919062000df9565b62000421919062000df9565b600f81905550846015819055508360168190555082601781905550816018819055506018546017546016546015546200045b919062000df9565b62000467919062000df9565b62000473919062000df9565b601481905550737eee138756f09d2f79a634158b65980c22f2f0c0600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737eee138756f09d2f79a634158b65980c22f2f0c0600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550737eee138756f09d2f79a634158b65980c22f2f0c0600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200059a6200058c6200088760201b60201c565b6001620008b160201b60201c565b620005ad306001620008b160201b60201c565b620005c261dead6001620008b160201b60201c565b620005e4620005d66200088760201b60201c565b6001620006fc60201b60201c565b620005f7306001620006fc60201b60201c565b6200060c61dead6001620006fc60201b60201c565b6200061e3382620009eb60201b60201c565b5050505050505050505062001018565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200070c6200062e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007326200088760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200078b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007829062000eb7565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008c16200062e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008e76200088760201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000940576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009379062000eb7565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009df919062000ef6565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a5e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a559062000f63565b60405180910390fd5b62000a726000838362000b6460201b60201c565b806002600082825462000a86919062000df9565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000add919062000df9565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b44919062000f96565b60405180910390a362000b606000838362000b6960201b60201c565b5050565b505050565b505050565b82805462000b7c9062000fe2565b90600052602060002090601f01602090048101928262000ba0576000855562000bec565b82601f1062000bbb57805160ff191683800117855562000bec565b8280016001018555821562000bec579182015b8281111562000beb57825182559160200191906001019062000bce565b5b50905062000bfb919062000bff565b5090565b5b8082111562000c1a57600081600090555060010162000c00565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c508262000c23565b9050919050565b62000c628162000c43565b811462000c6e57600080fd5b50565b60008151905062000c828162000c57565b92915050565b60006020828403121562000ca15762000ca062000c1e565b5b600062000cb18482850162000c71565b91505092915050565b62000cc58162000c43565b82525050565b600060408201905062000ce2600083018562000cba565b62000cf1602083018462000cba565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000d3e8262000cf8565b915062000d4b8362000cf8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d875762000d8662000d02565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000dce8262000cf8565b915062000ddb8362000cf8565b92508262000dee5762000ded62000d92565b5b828204905092915050565b600062000e068262000cf8565b915062000e138362000cf8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e4b5762000e4a62000d02565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000e9f60208362000e56565b915062000eac8262000e67565b602082019050919050565b6000602082019050818103600083015262000ed28162000e90565b9050919050565b60008115159050919050565b62000ef08162000ed9565b82525050565b600060208201905062000f0d600083018462000ee5565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f4b601f8362000e56565b915062000f588262000f13565b602082019050919050565b6000602082019050818103600083015262000f7e8162000f3c565b9050919050565b62000f908162000cf8565b82525050565b600060208201905062000fad600083018462000f85565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000ffb57607f821691505b6020821081141562001012576200101162000fb3565b5b50919050565b60805160a0516150c4620010766000396000818161127c0152818161186c01526126ed015260008181610e4701528181612695015281816138c9015281816139aa015281816139d101528181613a6d0152613a9401526150c46000f3fe60806040526004361061036f5760003560e01c80638da5cb5b116101c6578063c0246668116100f7578063e2f4560511610095578063f11a24d31161006f578063f11a24d314610cc5578063f2fde38b14610cf0578063f637434214610d19578063f8b45b0514610d4457610376565b8063e2f4560514610c46578063e7ad9fcd14610c71578063e884f26014610c9a57610376565b8063c8c8ebe4116100d1578063c8c8ebe414610b76578063d257b34f14610ba1578063d85ba06314610bde578063dd62ed3e14610c0957610376565b8063c024666814610af9578063c18bc19514610b22578063c876d0b914610b4b57610376565b80639fccce3211610164578063a457c2d71161013e578063a457c2d714610a17578063a9059cbb14610a54578063b62496f514610a91578063bbc0c74214610ace57610376565b80639fccce3214610996578063a0d82dc5146109c1578063a1dc92bc146109ec57610376565b8063924de9b7116101a0578063924de9b7146108ee57806395d89b41146109175780639a7a23d6146109425780639c3b4fdc1461096b57610376565b80638da5cb5b1461086d5780638ea5220f1461089857806392136913146108c357610376565b806344249f04116102a0578063715018a61161023e57806375f0a8741161021857806375f0a874146107d55780637b208769146108005780637bce5a041461082b5780638a8c523c1461085657610376565b8063715018a61461076a578063751039fc146107815780637571336a146107ac57610376565b80634fbee1931161027a5780634fbee1931461069a5780636a486a8e146106d75780636ddd17131461070257806370a082311461072d57610376565b806344249f041461061957806349bd5a5e146106445780634a62bb651461066f57610376565b80631f3fed8f1161030d57806327c8f835116102e757806327c8f8351461055d5780632e6ed7ef14610588578063313ce567146105b157806339509351146105dc57610376565b80631f3fed8f146104cc578063203e727e146104f757806323b872dd1461052057610376565b806310d5de531161034957806310d5de531461040e5780631694505e1461044b57806318160ddd146104765780631a8145bb146104a157610376565b806306fdde031461037b578063095ea7b3146103a65780630d7f1441146103e357610376565b3661037657005b600080fd5b34801561038757600080fd5b50610390610d6f565b60405161039d9190613bfc565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c89190613cb7565b610e01565b6040516103da9190613d12565b60405180910390f35b3480156103ef57600080fd5b506103f8610e1f565b6040516104059190613d3c565b60405180910390f35b34801561041a57600080fd5b5061043560048036038101906104309190613d57565b610e25565b6040516104429190613d12565b60405180910390f35b34801561045757600080fd5b50610460610e45565b60405161046d9190613de3565b60405180910390f35b34801561048257600080fd5b5061048b610e69565b6040516104989190613d3c565b60405180910390f35b3480156104ad57600080fd5b506104b6610e73565b6040516104c39190613d3c565b60405180910390f35b3480156104d857600080fd5b506104e1610e79565b6040516104ee9190613d3c565b60405180910390f35b34801561050357600080fd5b5061051e60048036038101906105199190613dfe565b610e7f565b005b34801561052c57600080fd5b5061054760048036038101906105429190613e2b565b610f8e565b6040516105549190613d12565b60405180910390f35b34801561056957600080fd5b50610572611086565b60405161057f9190613e8d565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa9190613ea8565b61108c565b005b3480156105bd57600080fd5b506105c66111bf565b6040516105d39190613f2b565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe9190613cb7565b6111c8565b6040516106109190613d12565b60405180910390f35b34801561062557600080fd5b5061062e611274565b60405161063b9190613d3c565b60405180910390f35b34801561065057600080fd5b5061065961127a565b6040516106669190613e8d565b60405180910390f35b34801561067b57600080fd5b5061068461129e565b6040516106919190613d12565b60405180910390f35b3480156106a657600080fd5b506106c160048036038101906106bc9190613d57565b6112b1565b6040516106ce9190613d12565b60405180910390f35b3480156106e357600080fd5b506106ec611307565b6040516106f99190613d3c565b60405180910390f35b34801561070e57600080fd5b5061071761130d565b6040516107249190613d12565b60405180910390f35b34801561073957600080fd5b50610754600480360381019061074f9190613d57565b611320565b6040516107619190613d3c565b60405180910390f35b34801561077657600080fd5b5061077f611368565b005b34801561078d57600080fd5b506107966113f0565b6040516107a39190613d12565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce9190613f72565b611490565b005b3480156107e157600080fd5b506107ea611567565b6040516107f79190613e8d565b60405180910390f35b34801561080c57600080fd5b5061081561158d565b6040516108229190613e8d565b60405180910390f35b34801561083757600080fd5b506108406115b3565b60405161084d9190613d3c565b60405180910390f35b34801561086257600080fd5b5061086b6115b9565b005b34801561087957600080fd5b5061088261166d565b60405161088f9190613e8d565b60405180910390f35b3480156108a457600080fd5b506108ad611697565b6040516108ba9190613e8d565b60405180910390f35b3480156108cf57600080fd5b506108d86116bd565b6040516108e59190613d3c565b60405180910390f35b3480156108fa57600080fd5b5061091560048036038101906109109190613fb2565b6116c3565b005b34801561092357600080fd5b5061092c61175c565b6040516109399190613bfc565b60405180910390f35b34801561094e57600080fd5b5061096960048036038101906109649190613f72565b6117ee565b005b34801561097757600080fd5b50610980611907565b60405161098d9190613d3c565b60405180910390f35b3480156109a257600080fd5b506109ab61190d565b6040516109b89190613d3c565b60405180910390f35b3480156109cd57600080fd5b506109d6611913565b6040516109e39190613d3c565b60405180910390f35b3480156109f857600080fd5b50610a01611919565b604051610a0e9190613d3c565b60405180910390f35b348015610a2357600080fd5b50610a3e6004803603810190610a399190613cb7565b61191f565b604051610a4b9190613d12565b60405180910390f35b348015610a6057600080fd5b50610a7b6004803603810190610a769190613cb7565b611a0a565b604051610a889190613d12565b60405180910390f35b348015610a9d57600080fd5b50610ab86004803603810190610ab39190613d57565b611a28565b604051610ac59190613d12565b60405180910390f35b348015610ada57600080fd5b50610ae3611a48565b604051610af09190613d12565b60405180910390f35b348015610b0557600080fd5b50610b206004803603810190610b1b9190613f72565b611a5b565b005b348015610b2e57600080fd5b50610b496004803603810190610b449190613dfe565b611b80565b005b348015610b5757600080fd5b50610b60611c8f565b604051610b6d9190613d12565b60405180910390f35b348015610b8257600080fd5b50610b8b611ca2565b604051610b989190613d3c565b60405180910390f35b348015610bad57600080fd5b50610bc86004803603810190610bc39190613dfe565b611ca8565b604051610bd59190613d12565b60405180910390f35b348015610bea57600080fd5b50610bf3611dfd565b604051610c009190613d3c565b60405180910390f35b348015610c1557600080fd5b50610c306004803603810190610c2b9190613fdf565b611e03565b604051610c3d9190613d3c565b60405180910390f35b348015610c5257600080fd5b50610c5b611e8a565b604051610c689190613d3c565b60405180910390f35b348015610c7d57600080fd5b50610c986004803603810190610c939190613ea8565b611e90565b005b348015610ca657600080fd5b50610caf611fb8565b604051610cbc9190613d12565b60405180910390f35b348015610cd157600080fd5b50610cda612058565b604051610ce79190613d3c565b60405180910390f35b348015610cfc57600080fd5b50610d176004803603810190610d129190613d57565b61205e565b005b348015610d2557600080fd5b50610d2e612156565b604051610d3b9190613d3c565b60405180910390f35b348015610d5057600080fd5b50610d5961215c565b604051610d669190613d3c565b60405180910390f35b606060038054610d7e9061404e565b80601f0160208091040260200160405190810160405280929190818152602001828054610daa9061404e565b8015610df75780601f10610dcc57610100808354040283529160200191610df7565b820191906000526020600020905b815481529060010190602001808311610dda57829003601f168201915b5050505050905090565b6000610e15610e0e612162565b848461216a565b6001905092915050565b60155481565b601e6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b601b5481565b601a5481565b610e87612162565b73ffffffffffffffffffffffffffffffffffffffff16610ea561166d565b73ffffffffffffffffffffffffffffffffffffffff1614610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef2906140cc565b60405180910390fd5b670de0b6b3a76400006103e86001610f11610e69565b610f1b919061411b565b610f2591906141a4565b610f2f91906141a4565b811015610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6890614247565b60405180910390fd5b670de0b6b3a764000081610f85919061411b565b60098190555050565b6000610f9b848484612335565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610fe6612162565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105d906142d9565b60405180910390fd5b61107a85611072612162565b85840361216a565b60019150509392505050565b61dead81565b611094612162565b73ffffffffffffffffffffffffffffffffffffffff166110b261166d565b73ffffffffffffffffffffffffffffffffffffffff1614611108576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ff906140cc565b60405180910390fd5b60088183858761111891906142f9565b61112291906142f9565b61112c91906142f9565b111561116d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111649061439b565b60405180910390fd5b8360108190555082601181905550816012819055508060138190555060135460125460115460105461119f91906142f9565b6111a991906142f9565b6111b391906142f9565b600f8190555050505050565b60006012905090565b600061126a6111d5612162565b8484600160006111e3612162565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461126591906142f9565b61216a565b6001905092915050565b60195481565b7f000000000000000000000000000000000000000000000000000000000000000081565b600c60009054906101000a900460ff1681565b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600c60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611370612162565b73ffffffffffffffffffffffffffffffffffffffff1661138e61166d565b73ffffffffffffffffffffffffffffffffffffffff16146113e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113db906140cc565b60405180910390fd5b6113ee6000613035565b565b60006113fa612162565b73ffffffffffffffffffffffffffffffffffffffff1661141861166d565b73ffffffffffffffffffffffffffffffffffffffff161461146e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611465906140cc565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b611498612162565b73ffffffffffffffffffffffffffffffffffffffff166114b661166d565b73ffffffffffffffffffffffffffffffffffffffff161461150c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611503906140cc565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b6115c1612162565b73ffffffffffffffffffffffffffffffffffffffff166115df61166d565b73ffffffffffffffffffffffffffffffffffffffff1614611635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162c906140cc565b60405180910390fd5b6001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60165481565b6116cb612162565b73ffffffffffffffffffffffffffffffffffffffff166116e961166d565b73ffffffffffffffffffffffffffffffffffffffff161461173f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611736906140cc565b60405180910390fd5b80600c60026101000a81548160ff02191690831515021790555050565b60606004805461176b9061404e565b80601f01602080910402602001604051908101604052809291908181526020018280546117979061404e565b80156117e45780601f106117b9576101008083540402835291602001916117e4565b820191906000526020600020905b8154815290600101906020018083116117c757829003601f168201915b5050505050905090565b6117f6612162565b73ffffffffffffffffffffffffffffffffffffffff1661181461166d565b73ffffffffffffffffffffffffffffffffffffffff161461186a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611861906140cc565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f09061442d565b60405180910390fd5b61190382826130fb565b5050565b60135481565b601c5481565b60185481565b60105481565b6000806001600061192e612162565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156119eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e2906144bf565b60405180910390fd5b6119ff6119f6612162565b8585840361216a565b600191505092915050565b6000611a1e611a17612162565b8484612335565b6001905092915050565b601f6020528060005260406000206000915054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b611a63612162565b73ffffffffffffffffffffffffffffffffffffffff16611a8161166d565b73ffffffffffffffffffffffffffffffffffffffff1614611ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ace906140cc565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611b749190613d12565b60405180910390a25050565b611b88612162565b73ffffffffffffffffffffffffffffffffffffffff16611ba661166d565b73ffffffffffffffffffffffffffffffffffffffff1614611bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf3906140cc565b60405180910390fd5b670de0b6b3a76400006103e86005611c12610e69565b611c1c919061411b565b611c2691906141a4565b611c3091906141a4565b811015611c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6990614551565b60405180910390fd5b670de0b6b3a764000081611c86919061411b565b600b8190555050565b600e60009054906101000a900460ff1681565b60095481565b6000611cb2612162565b73ffffffffffffffffffffffffffffffffffffffff16611cd061166d565b73ffffffffffffffffffffffffffffffffffffffff1614611d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1d906140cc565b60405180910390fd5b620186a06001611d34610e69565b611d3e919061411b565b611d4891906141a4565b821015611d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d81906145e3565b60405180910390fd5b6103e86005611d97610e69565b611da1919061411b565b611dab91906141a4565b821115611ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de490614675565b60405180910390fd5b81600a8190555060019050919050565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b611e98612162565b73ffffffffffffffffffffffffffffffffffffffff16611eb661166d565b73ffffffffffffffffffffffffffffffffffffffff1614611f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f03906140cc565b60405180910390fd5b600a818385611f1b91906142f9565b611f2591906142f9565b1115611f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5d906146e1565b60405180910390fd5b83601581905550826016819055508160178190555080601881905550601854601754601654601554611f9891906142f9565b611fa291906142f9565b611fac91906142f9565b60148190555050505050565b6000611fc2612162565b73ffffffffffffffffffffffffffffffffffffffff16611fe061166d565b73ffffffffffffffffffffffffffffffffffffffff1614612036576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202d906140cc565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055506001905090565b60125481565b612066612162565b73ffffffffffffffffffffffffffffffffffffffff1661208461166d565b73ffffffffffffffffffffffffffffffffffffffff16146120da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d1906140cc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561214a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214190614773565b60405180910390fd5b61215381613035565b50565b60175481565b600b5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d190614805565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561224a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224190614897565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516123289190613d3c565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239c90614929565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612415576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240c906149bb565b60405180910390fd5b600081141561242f5761242a8383600061319c565b613030565b600c60009054906101000a900460ff1615612af25761244c61166d565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156124ba575061248a61166d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124f35750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561252d575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125465750600560149054906101000a900460ff16155b15612af157600c60019054906101000a900460ff1661264057601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806126005750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61263f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263690614a27565b60405180910390fd5b5b600e60009054906101000a900460ff16156128085761265d61166d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156126e457507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561273c57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156128075743600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106127c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b990614adf565b60405180910390fd5b43600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128ab5750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612952576009548111156128f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ec90614b71565b60405180910390fd5b600b5461290183611320565b8261290c91906142f9565b111561294d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294490614bdd565b60405180910390fd5b612af0565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156129f55750601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a4457600954811115612a3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3690614c6f565b60405180910390fd5b612aef565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612aee57600b54612aa183611320565b82612aac91906142f9565b1115612aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae490614bdd565b60405180910390fd5b5b5b5b5b5b6000612afd30611320565b90506000600a548210159050808015612b225750600c60029054906101000a900460ff165b8015612b3b5750600560149054906101000a900460ff16155b8015612b915750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612be75750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c3d5750601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c81576001600560146101000a81548160ff021916908315150217905550612c6561341d565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d375750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612d4157600090505b6000811561302057601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612da457506000601454115b15612ea457612dd16064612dc3601454886137de90919063ffffffff16565b6137f490919063ffffffff16565b905060145460155482612de4919061411b565b612dee91906141a4565b60196000828254612dff91906142f9565b9250508190555060145460175482612e17919061411b565b612e2191906141a4565b601b6000828254612e3291906142f9565b9250508190555060145460185482612e4a919061411b565b612e5491906141a4565b601c6000828254612e6591906142f9565b9250508190555060145460165482612e7d919061411b565b612e8791906141a4565b601a6000828254612e9891906142f9565b92505081905550612ffc565b601f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612eff57506000600f54115b15612ffb57612f2c6064612f1e600f54886137de90919063ffffffff16565b6137f490919063ffffffff16565b9050600f5460105482612f3f919061411b565b612f4991906141a4565b60196000828254612f5a91906142f9565b92505081905550600f5460125482612f72919061411b565b612f7c91906141a4565b601b6000828254612f8d91906142f9565b92505081905550600f5460135482612fa5919061411b565b612faf91906141a4565b601c6000828254612fc091906142f9565b92505081905550600f5460115482612fd8919061411b565b612fe291906141a4565b601a6000828254612ff391906142f9565b925050819055505b5b60008111156130115761301087308361319c565b5b808561301d9190614c8f565b94505b61302b87878761319c565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561320c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320390614929565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561327c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613273906149bb565b60405180910390fd5b61328783838361380a565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561330d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330490614d35565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133a091906142f9565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516134049190613d3c565b60405180910390a361341784848461380f565b50505050565b600061342830611320565b90506000601c54601a54601b5460195461344291906142f9565b61344c91906142f9565b61345691906142f9565b90506000808314806134685750600082145b15613475575050506137dc565b6014600a54613484919061411b565b83111561349d576014600a5461349a919061411b565b92505b6000600283601b54866134b0919061411b565b6134ba91906141a4565b6134c491906141a4565b905060006134db828661381490919063ffffffff16565b905060004790506134eb8261382a565b6000613500824761381490919063ffffffff16565b9050600061352b8761351d601954856137de90919063ffffffff16565b6137f490919063ffffffff16565b9050600061355688613548601a54866137de90919063ffffffff16565b6137f490919063ffffffff16565b9050600061358189613573601c54876137de90919063ffffffff16565b6137f490919063ffffffff16565b90506000818385876135939190614c8f565b61359d9190614c8f565b6135a79190614c8f565b90506000601b8190555060006019819055506000601a819055506000601c81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161360f90614d86565b60006040518083038185875af1925050503d806000811461364c576040519150601f19603f3d011682016040523d82523d6000602084013e613651565b606091505b505080995050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168360405161369d90614d86565b60006040518083038185875af1925050503d80600081146136da576040519150601f19603f3d011682016040523d82523d6000602084013e6136df565b606091505b5050809950506000881180156136f55750600081115b15613742576137048882613a67565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618782601b5460405161373993929190614d9b565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161378890614d86565b60006040518083038185875af1925050503d80600081146137c5576040519150601f19603f3d011682016040523d82523d6000602084013e6137ca565b606091505b50508099505050505050505050505050505b565b600081836137ec919061411b565b905092915050565b6000818361380291906141a4565b905092915050565b505050565b505050565b600081836138229190614c8f565b905092915050565b6000600267ffffffffffffffff81111561384757613846614dd2565b5b6040519080825280602002602001820160405280156138755781602001602082028036833780820191505090505b509050308160008151811061388d5761388c614e01565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613932573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139569190614e45565b8160018151811061396a57613969614e01565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506139cf307f00000000000000000000000000000000000000000000000000000000000000008461216a565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613a31959493929190614f6b565b600060405180830381600087803b158015613a4b57600080fd5b505af1158015613a5f573d6000803e3d6000fd5b505050505050565b613a92307f00000000000000000000000000000000000000000000000000000000000000008461216a565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401613b1996959493929190614fc5565b60606040518083038185885af1158015613b37573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613b5c919061503b565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b9d578082015181840152602081019050613b82565b83811115613bac576000848401525b50505050565b6000601f19601f8301169050919050565b6000613bce82613b63565b613bd88185613b6e565b9350613be8818560208601613b7f565b613bf181613bb2565b840191505092915050565b60006020820190508181036000830152613c168184613bc3565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c4e82613c23565b9050919050565b613c5e81613c43565b8114613c6957600080fd5b50565b600081359050613c7b81613c55565b92915050565b6000819050919050565b613c9481613c81565b8114613c9f57600080fd5b50565b600081359050613cb181613c8b565b92915050565b60008060408385031215613cce57613ccd613c1e565b5b6000613cdc85828601613c6c565b9250506020613ced85828601613ca2565b9150509250929050565b60008115159050919050565b613d0c81613cf7565b82525050565b6000602082019050613d276000830184613d03565b92915050565b613d3681613c81565b82525050565b6000602082019050613d516000830184613d2d565b92915050565b600060208284031215613d6d57613d6c613c1e565b5b6000613d7b84828501613c6c565b91505092915050565b6000819050919050565b6000613da9613da4613d9f84613c23565b613d84565b613c23565b9050919050565b6000613dbb82613d8e565b9050919050565b6000613dcd82613db0565b9050919050565b613ddd81613dc2565b82525050565b6000602082019050613df86000830184613dd4565b92915050565b600060208284031215613e1457613e13613c1e565b5b6000613e2284828501613ca2565b91505092915050565b600080600060608486031215613e4457613e43613c1e565b5b6000613e5286828701613c6c565b9350506020613e6386828701613c6c565b9250506040613e7486828701613ca2565b9150509250925092565b613e8781613c43565b82525050565b6000602082019050613ea26000830184613e7e565b92915050565b60008060008060808587031215613ec257613ec1613c1e565b5b6000613ed087828801613ca2565b9450506020613ee187828801613ca2565b9350506040613ef287828801613ca2565b9250506060613f0387828801613ca2565b91505092959194509250565b600060ff82169050919050565b613f2581613f0f565b82525050565b6000602082019050613f406000830184613f1c565b92915050565b613f4f81613cf7565b8114613f5a57600080fd5b50565b600081359050613f6c81613f46565b92915050565b60008060408385031215613f8957613f88613c1e565b5b6000613f9785828601613c6c565b9250506020613fa885828601613f5d565b9150509250929050565b600060208284031215613fc857613fc7613c1e565b5b6000613fd684828501613f5d565b91505092915050565b60008060408385031215613ff657613ff5613c1e565b5b600061400485828601613c6c565b925050602061401585828601613c6c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061406657607f821691505b6020821081141561407a5761407961401f565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140b6602083613b6e565b91506140c182614080565b602082019050919050565b600060208201905081810360008301526140e5816140a9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061412682613c81565b915061413183613c81565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561416a576141696140ec565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006141af82613c81565b91506141ba83613c81565b9250826141ca576141c9614175565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614231602f83613b6e565b915061423c826141d5565b604082019050919050565b6000602082019050818103600083015261426081614224565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006142c3602883613b6e565b91506142ce82614267565b604082019050919050565b600060208201905081810360008301526142f2816142b6565b9050919050565b600061430482613c81565b915061430f83613c81565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614344576143436140ec565b5b828201905092915050565b7f4d61782042757946656520382500000000000000000000000000000000000000600082015250565b6000614385600d83613b6e565b91506143908261434f565b602082019050919050565b600060208201905081810360008301526143b481614378565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614417603983613b6e565b9150614422826143bb565b604082019050919050565b600060208201905081810360008301526144468161440a565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006144a9602583613b6e565b91506144b48261444d565b604082019050919050565b600060208201905081810360008301526144d88161449c565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061453b602483613b6e565b9150614546826144df565b604082019050919050565b6000602082019050818103600083015261456a8161452e565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006145cd603583613b6e565b91506145d882614571565b604082019050919050565b600060208201905081810360008301526145fc816145c0565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061465f603483613b6e565b915061466a82614603565b604082019050919050565b6000602082019050818103600083015261468e81614652565b9050919050565b7f4d61782053656c6c466565203130250000000000000000000000000000000000600082015250565b60006146cb600f83613b6e565b91506146d682614695565b602082019050919050565b600060208201905081810360008301526146fa816146be565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061475d602683613b6e565b915061476882614701565b604082019050919050565b6000602082019050818103600083015261478c81614750565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006147ef602483613b6e565b91506147fa82614793565b604082019050919050565b6000602082019050818103600083015261481e816147e2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614881602283613b6e565b915061488c82614825565b604082019050919050565b600060208201905081810360008301526148b081614874565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614913602583613b6e565b915061491e826148b7565b604082019050919050565b6000602082019050818103600083015261494281614906565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006149a5602383613b6e565b91506149b082614949565b604082019050919050565b600060208201905081810360008301526149d481614998565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614a11601683613b6e565b9150614a1c826149db565b602082019050919050565b60006020820190508181036000830152614a4081614a04565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614ac9604983613b6e565b9150614ad482614a47565b606082019050919050565b60006020820190508181036000830152614af881614abc565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614b5b603583613b6e565b9150614b6682614aff565b604082019050919050565b60006020820190508181036000830152614b8a81614b4e565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614bc7601383613b6e565b9150614bd282614b91565b602082019050919050565b60006020820190508181036000830152614bf681614bba565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614c59603683613b6e565b9150614c6482614bfd565b604082019050919050565b60006020820190508181036000830152614c8881614c4c565b9050919050565b6000614c9a82613c81565b9150614ca583613c81565b925082821015614cb857614cb76140ec565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614d1f602683613b6e565b9150614d2a82614cc3565b604082019050919050565b60006020820190508181036000830152614d4e81614d12565b9050919050565b600081905092915050565b50565b6000614d70600083614d55565b9150614d7b82614d60565b600082019050919050565b6000614d9182614d63565b9150819050919050565b6000606082019050614db06000830186613d2d565b614dbd6020830185613d2d565b614dca6040830184613d2d565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614e3f81613c55565b92915050565b600060208284031215614e5b57614e5a613c1e565b5b6000614e6984828501614e30565b91505092915050565b6000819050919050565b6000614e97614e92614e8d84614e72565b613d84565b613c81565b9050919050565b614ea781614e7c565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614ee281613c43565b82525050565b6000614ef48383614ed9565b60208301905092915050565b6000602082019050919050565b6000614f1882614ead565b614f228185614eb8565b9350614f2d83614ec9565b8060005b83811015614f5e578151614f458882614ee8565b9750614f5083614f00565b925050600181019050614f31565b5085935050505092915050565b600060a082019050614f806000830188613d2d565b614f8d6020830187614e9e565b8181036040830152614f9f8186614f0d565b9050614fae6060830185613e7e565b614fbb6080830184613d2d565b9695505050505050565b600060c082019050614fda6000830189613e7e565b614fe76020830188613d2d565b614ff46040830187614e9e565b6150016060830186614e9e565b61500e6080830185613e7e565b61501b60a0830184613d2d565b979650505050505050565b60008151905061503581613c8b565b92915050565b60008060006060848603121561505457615053613c1e565b5b600061506286828701615026565b935050602061507386828701615026565b925050604061508486828701615026565b915050925092509256fea264697066735822122057420d125d1c983624e9aa2026e64c0bd0029273f9d007ed51525f639f2f81d164736f6c634300080a0033

Deployed Bytecode

0x60806040526004361061036f5760003560e01c80638da5cb5b116101c6578063c0246668116100f7578063e2f4560511610095578063f11a24d31161006f578063f11a24d314610cc5578063f2fde38b14610cf0578063f637434214610d19578063f8b45b0514610d4457610376565b8063e2f4560514610c46578063e7ad9fcd14610c71578063e884f26014610c9a57610376565b8063c8c8ebe4116100d1578063c8c8ebe414610b76578063d257b34f14610ba1578063d85ba06314610bde578063dd62ed3e14610c0957610376565b8063c024666814610af9578063c18bc19514610b22578063c876d0b914610b4b57610376565b80639fccce3211610164578063a457c2d71161013e578063a457c2d714610a17578063a9059cbb14610a54578063b62496f514610a91578063bbc0c74214610ace57610376565b80639fccce3214610996578063a0d82dc5146109c1578063a1dc92bc146109ec57610376565b8063924de9b7116101a0578063924de9b7146108ee57806395d89b41146109175780639a7a23d6146109425780639c3b4fdc1461096b57610376565b80638da5cb5b1461086d5780638ea5220f1461089857806392136913146108c357610376565b806344249f04116102a0578063715018a61161023e57806375f0a8741161021857806375f0a874146107d55780637b208769146108005780637bce5a041461082b5780638a8c523c1461085657610376565b8063715018a61461076a578063751039fc146107815780637571336a146107ac57610376565b80634fbee1931161027a5780634fbee1931461069a5780636a486a8e146106d75780636ddd17131461070257806370a082311461072d57610376565b806344249f041461061957806349bd5a5e146106445780634a62bb651461066f57610376565b80631f3fed8f1161030d57806327c8f835116102e757806327c8f8351461055d5780632e6ed7ef14610588578063313ce567146105b157806339509351146105dc57610376565b80631f3fed8f146104cc578063203e727e146104f757806323b872dd1461052057610376565b806310d5de531161034957806310d5de531461040e5780631694505e1461044b57806318160ddd146104765780631a8145bb146104a157610376565b806306fdde031461037b578063095ea7b3146103a65780630d7f1441146103e357610376565b3661037657005b600080fd5b34801561038757600080fd5b50610390610d6f565b60405161039d9190613bfc565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c89190613cb7565b610e01565b6040516103da9190613d12565b60405180910390f35b3480156103ef57600080fd5b506103f8610e1f565b6040516104059190613d3c565b60405180910390f35b34801561041a57600080fd5b5061043560048036038101906104309190613d57565b610e25565b6040516104429190613d12565b60405180910390f35b34801561045757600080fd5b50610460610e45565b60405161046d9190613de3565b60405180910390f35b34801561048257600080fd5b5061048b610e69565b6040516104989190613d3c565b60405180910390f35b3480156104ad57600080fd5b506104b6610e73565b6040516104c39190613d3c565b60405180910390f35b3480156104d857600080fd5b506104e1610e79565b6040516104ee9190613d3c565b60405180910390f35b34801561050357600080fd5b5061051e60048036038101906105199190613dfe565b610e7f565b005b34801561052c57600080fd5b5061054760048036038101906105429190613e2b565b610f8e565b6040516105549190613d12565b60405180910390f35b34801561056957600080fd5b50610572611086565b60405161057f9190613e8d565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa9190613ea8565b61108c565b005b3480156105bd57600080fd5b506105c66111bf565b6040516105d39190613f2b565b60405180910390f35b3480156105e857600080fd5b5061060360048036038101906105fe9190613cb7565b6111c8565b6040516106109190613d12565b60405180910390f35b34801561062557600080fd5b5061062e611274565b60405161063b9190613d3c565b60405180910390f35b34801561065057600080fd5b5061065961127a565b6040516106669190613e8d565b60405180910390f35b34801561067b57600080fd5b5061068461129e565b6040516106919190613d12565b60405180910390f35b3480156106a657600080fd5b506106c160048036038101906106bc9190613d57565b6112b1565b6040516106ce9190613d12565b60405180910390f35b3480156106e357600080fd5b506106ec611307565b6040516106f99190613d3c565b60405180910390f35b34801561070e57600080fd5b5061071761130d565b6040516107249190613d12565b60405180910390f35b34801561073957600080fd5b50610754600480360381019061074f9190613d57565b611320565b6040516107619190613d3c565b60405180910390f35b34801561077657600080fd5b5061077f611368565b005b34801561078d57600080fd5b506107966113f0565b6040516107a39190613d12565b60405180910390f35b3480156107b857600080fd5b506107d360048036038101906107ce9190613f72565b611490565b005b3480156107e157600080fd5b506107ea611567565b6040516107f79190613e8d565b60405180910390f35b34801561080c57600080fd5b5061081561158d565b6040516108229190613e8d565b60405180910390f35b34801561083757600080fd5b506108406115b3565b60405161084d9190613d3c565b60405180910390f35b34801561086257600080fd5b5061086b6115b9565b005b34801561087957600080fd5b5061088261166d565b60405161088f9190613e8d565b60405180910390f35b3480156108a457600080fd5b506108ad611697565b6040516108ba9190613e8d565b60405180910390f35b3480156108cf57600080fd5b506108d86116bd565b6040516108e59190613d3c565b60405180910390f35b3480156108fa57600080fd5b5061091560048036038101906109109190613fb2565b6116c3565b005b34801561092357600080fd5b5061092c61175c565b6040516109399190613bfc565b60405180910390f35b34801561094e57600080fd5b5061096960048036038101906109649190613f72565b6117ee565b005b34801561097757600080fd5b50610980611907565b60405161098d9190613d3c565b60405180910390f35b3480156109a257600080fd5b506109ab61190d565b6040516109b89190613d3c565b60405180910390f35b3480156109cd57600080fd5b506109d6611913565b6040516109e39190613d3c565b60405180910390f35b3480156109f857600080fd5b50610a01611919565b604051610a0e9190613d3c565b60405180910390f35b348015610a2357600080fd5b50610a3e6004803603810190610a399190613cb7565b61191f565b604051610a4b9190613d12565b60405180910390f35b348015610a6057600080fd5b50610a7b6004803603810190610a769190613cb7565b611a0a565b604051610a889190613d12565b60405180910390f35b348015610a9d57600080fd5b50610ab86004803603810190610ab39190613d57565b611a28565b604051610ac59190613d12565b60405180910390f35b348015610ada57600080fd5b50610ae3611a48565b604051610af09190613d12565b60405180910390f35b348015610b0557600080fd5b50610b206004803603810190610b1b9190613f72565b611a5b565b005b348015610b2e57600080fd5b50610b496004803603810190610b449190613dfe565b611b80565b005b348015610b5757600080fd5b50610b60611c8f565b604051610b6d9190613d12565b60405180910390f35b348015610b8257600080fd5b50610b8b611ca2565b604051610b989190613d3c565b60405180910390f35b348015610bad57600080fd5b50610bc86004803603810190610bc39190613dfe565b611ca8565b604051610bd59190613d12565b60405180910390f35b348015610bea57600080fd5b50610bf3611dfd565b604051610c009190613d3c565b60405180910390f35b348015610c1557600080fd5b50610c306004803603810190610c2b9190613fdf565b611e03565b604051610c3d9190613d3c565b60405180910390f35b348015610c5257600080fd5b50610c5b611e8a565b604051610c689190613d3c565b60405180910390f35b348015610c7d57600080fd5b50610c986004803603810190610c939190613ea8565b611e90565b005b348015610ca657600080fd5b50610caf611fb8565b604051610cbc9190613d12565b60405180910390f35b348015610cd157600080fd5b50610cda612058565b604051610ce79190613d3c565b60405180910390f35b348015610cfc57600080fd5b50610d176004803603810190610d129190613d57565b61205e565b005b348015610d2557600080fd5b50610d2e612156565b604051610d3b9190613d3c565b60405180910390f35b348015610d5057600080fd5b50610d5961215c565b604051610d669190613d3c565b60405180910390f35b606060038054610d7e9061404e565b80601f0160208091040260200160405190810160405280929190818152602001828054610daa9061404e565b8015610df75780601f10610dcc57610100808354040283529160200191610df7565b820191906000526020600020905b815481529060010190602001808311610dda57829003601f168201915b5050505050905090565b6000610e15610e0e612162565b848461216a565b6001905092915050565b60155481565b601e6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b601b5481565b601a5481565b610e87612162565b73ffffffffffffffffffffffffffffffffffffffff16610ea561166d565b73ffffffffffffffffffffffffffffffffffffffff1614610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef2906140cc565b60405180910390fd5b670de0b6b3a76400006103e86001610f11610e69565b610f1b919061411b565b610f2591906141a4565b610f2f91906141a4565b811015610f71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6890614247565b60405180910390fd5b670de0b6b3a764000081610f85919061411b565b60098190555050565b6000610f9b848484612335565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610fe6612162565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105d906142d9565b60405180910390fd5b61107a85611072612162565b85840361216a565b60019150509392505050565b61dead81565b611094612162565b73ffffffffffffffffffffffffffffffffffffffff166110b261166d565b73ffffffffffffffffffffffffffffffffffffffff1614611108576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ff906140cc565b60405180910390fd5b60088183858761111891906142f9565b61112291906142f9565b61112c91906142f9565b111561116d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111649061439b565b60405180910390fd5b8360108190555082601181905550816012819055508060138190555060135460125460115460105461119f91906142f9565b6111a991906142f9565b6111b391906142f9565b600f8190555050505050565b60006012905090565b600061126a6111d5612162565b8484600160006111e3612162565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461126591906142f9565b61216a565b6001905092915050565b60195481565b7f00000000000000000000000097cfcd50774a41e01f33e32d7cc323231197c6eb81565b600c60009054906101000a900460ff1681565b6000601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60145481565b600c60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611370612162565b73ffffffffffffffffffffffffffffffffffffffff1661138e61166d565b73ffffffffffffffffffffffffffffffffffffffff16146113e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113db906140cc565b60405180910390fd5b6113ee6000613035565b565b60006113fa612162565b73ffffffffffffffffffffffffffffffffffffffff1661141861166d565b73ffffffffffffffffffffffffffffffffffffffff161461146e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611465906140cc565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b611498612162565b73ffffffffffffffffffffffffffffffffffffffff166114b661166d565b73ffffffffffffffffffffffffffffffffffffffff161461150c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611503906140cc565b60405180910390fd5b80601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b6115c1612162565b73ffffffffffffffffffffffffffffffffffffffff166115df61166d565b73ffffffffffffffffffffffffffffffffffffffff1614611635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162c906140cc565b60405180910390fd5b6001600c60016101000a81548160ff0219169083151502179055506001600c60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60165481565b6116cb612162565b73ffffffffffffffffffffffffffffffffffffffff166116e961166d565b73ffffffffffffffffffffffffffffffffffffffff161461173f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611736906140cc565b60405180910390fd5b80600c60026101000a81548160ff02191690831515021790555050565b60606004805461176b9061404e565b80601f01602080910402602001604051908101604052809291908181526020018280546117979061404e565b80156117e45780601f106117b9576101008083540402835291602001916117e4565b820191906000526020600020905b8154815290600101906020018083116117c757829003601f168201915b5050505050905090565b6117f6612162565b73ffffffffffffffffffffffffffffffffffffffff1661181461166d565b73ffffffffffffffffffffffffffffffffffffffff161461186a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611861906140cc565b60405180910390fd5b7f00000000000000000000000097cfcd50774a41e01f33e32d7cc323231197c6eb73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f09061442d565b60405180910390fd5b61190382826130fb565b5050565b60135481565b601c5481565b60185481565b60105481565b6000806001600061192e612162565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156119eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e2906144bf565b60405180910390fd5b6119ff6119f6612162565b8585840361216a565b600191505092915050565b6000611a1e611a17612162565b8484612335565b6001905092915050565b601f6020528060005260406000206000915054906101000a900460ff1681565b600c60019054906101000a900460ff1681565b611a63612162565b73ffffffffffffffffffffffffffffffffffffffff16611a8161166d565b73ffffffffffffffffffffffffffffffffffffffff1614611ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ace906140cc565b60405180910390fd5b80601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611b749190613d12565b60405180910390a25050565b611b88612162565b73ffffffffffffffffffffffffffffffffffffffff16611ba661166d565b73ffffffffffffffffffffffffffffffffffffffff1614611bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf3906140cc565b60405180910390fd5b670de0b6b3a76400006103e86005611c12610e69565b611c1c919061411b565b611c2691906141a4565b611c3091906141a4565b811015611c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c6990614551565b60405180910390fd5b670de0b6b3a764000081611c86919061411b565b600b8190555050565b600e60009054906101000a900460ff1681565b60095481565b6000611cb2612162565b73ffffffffffffffffffffffffffffffffffffffff16611cd061166d565b73ffffffffffffffffffffffffffffffffffffffff1614611d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1d906140cc565b60405180910390fd5b620186a06001611d34610e69565b611d3e919061411b565b611d4891906141a4565b821015611d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d81906145e3565b60405180910390fd5b6103e86005611d97610e69565b611da1919061411b565b611dab91906141a4565b821115611ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de490614675565b60405180910390fd5b81600a8190555060019050919050565b600f5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b611e98612162565b73ffffffffffffffffffffffffffffffffffffffff16611eb661166d565b73ffffffffffffffffffffffffffffffffffffffff1614611f0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f03906140cc565b60405180910390fd5b600a818385611f1b91906142f9565b611f2591906142f9565b1115611f66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5d906146e1565b60405180910390fd5b83601581905550826016819055508160178190555080601881905550601854601754601654601554611f9891906142f9565b611fa291906142f9565b611fac91906142f9565b60148190555050505050565b6000611fc2612162565b73ffffffffffffffffffffffffffffffffffffffff16611fe061166d565b73ffffffffffffffffffffffffffffffffffffffff1614612036576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202d906140cc565b60405180910390fd5b6000600e60006101000a81548160ff0219169083151502179055506001905090565b60125481565b612066612162565b73ffffffffffffffffffffffffffffffffffffffff1661208461166d565b73ffffffffffffffffffffffffffffffffffffffff16146120da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d1906140cc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561214a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161214190614773565b60405180910390fd5b61215381613035565b50565b60175481565b600b5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d190614805565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561224a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224190614897565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516123289190613d3c565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156123a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239c90614929565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612415576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240c906149bb565b60405180910390fd5b600081141561242f5761242a8383600061319c565b613030565b600c60009054906101000a900460ff1615612af25761244c61166d565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156124ba575061248a61166d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156124f35750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561252d575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156125465750600560149054906101000a900460ff16155b15612af157600c60019054906101000a900460ff1661264057601d60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806126005750601d60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b61263f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263690614a27565b60405180910390fd5b5b600e60009054906101000a900460ff16156128085761265d61166d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141580156126e457507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561273c57507f00000000000000000000000097cfcd50774a41e01f33e32d7cc323231197c6eb73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156128075743600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106127c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b990614adf565b60405180910390fd5b43600d60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128ab5750601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612952576009548111156128f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ec90614b71565b60405180910390fd5b600b5461290183611320565b8261290c91906142f9565b111561294d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294490614bdd565b60405180910390fd5b612af0565b601f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156129f55750601e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612a4457600954811115612a3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3690614c6f565b60405180910390fd5b612aef565b601e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612aee57600b54612aa183611320565b82612aac91906142f9565b1115612aed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae490614bdd565b60405180910390fd5b5b5b5b5b5b6000612afd30611320565b90506000600a548210159050808015612b225750600c60029054906101000a900460ff165b8015612b3b5750600560149054906101000a900460ff16155b8015612b915750601f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612be75750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612c3d5750601d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612c81576001600560146101000a81548160ff021916908315150217905550612c6561341d565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601d60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612d375750601d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612d4157600090505b6000811561302057601f60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612da457506000601454115b15612ea457612dd16064612dc3601454886137de90919063ffffffff16565b6137f490919063ffffffff16565b905060145460155482612de4919061411b565b612dee91906141a4565b60196000828254612dff91906142f9565b9250508190555060145460175482612e17919061411b565b612e2191906141a4565b601b6000828254612e3291906142f9565b9250508190555060145460185482612e4a919061411b565b612e5491906141a4565b601c6000828254612e6591906142f9565b9250508190555060145460165482612e7d919061411b565b612e8791906141a4565b601a6000828254612e9891906142f9565b92505081905550612ffc565b601f60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612eff57506000600f54115b15612ffb57612f2c6064612f1e600f54886137de90919063ffffffff16565b6137f490919063ffffffff16565b9050600f5460105482612f3f919061411b565b612f4991906141a4565b60196000828254612f5a91906142f9565b92505081905550600f5460125482612f72919061411b565b612f7c91906141a4565b601b6000828254612f8d91906142f9565b92505081905550600f5460135482612fa5919061411b565b612faf91906141a4565b601c6000828254612fc091906142f9565b92505081905550600f5460115482612fd8919061411b565b612fe291906141a4565b601a6000828254612ff391906142f9565b925050819055505b5b60008111156130115761301087308361319c565b5b808561301d9190614c8f565b94505b61302b87878761319c565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561320c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161320390614929565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561327c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613273906149bb565b60405180910390fd5b61328783838361380a565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561330d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330490614d35565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133a091906142f9565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516134049190613d3c565b60405180910390a361341784848461380f565b50505050565b600061342830611320565b90506000601c54601a54601b5460195461344291906142f9565b61344c91906142f9565b61345691906142f9565b90506000808314806134685750600082145b15613475575050506137dc565b6014600a54613484919061411b565b83111561349d576014600a5461349a919061411b565b92505b6000600283601b54866134b0919061411b565b6134ba91906141a4565b6134c491906141a4565b905060006134db828661381490919063ffffffff16565b905060004790506134eb8261382a565b6000613500824761381490919063ffffffff16565b9050600061352b8761351d601954856137de90919063ffffffff16565b6137f490919063ffffffff16565b9050600061355688613548601a54866137de90919063ffffffff16565b6137f490919063ffffffff16565b9050600061358189613573601c54876137de90919063ffffffff16565b6137f490919063ffffffff16565b90506000818385876135939190614c8f565b61359d9190614c8f565b6135a79190614c8f565b90506000601b8190555060006019819055506000601a819055506000601c81905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168260405161360f90614d86565b60006040518083038185875af1925050503d806000811461364c576040519150601f19603f3d011682016040523d82523d6000602084013e613651565b606091505b505080995050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168360405161369d90614d86565b60006040518083038185875af1925050503d80600081146136da576040519150601f19603f3d011682016040523d82523d6000602084013e6136df565b606091505b5050809950506000881180156136f55750600081115b15613742576137048882613a67565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5618782601b5460405161373993929190614d9b565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161378890614d86565b60006040518083038185875af1925050503d80600081146137c5576040519150601f19603f3d011682016040523d82523d6000602084013e6137ca565b606091505b50508099505050505050505050505050505b565b600081836137ec919061411b565b905092915050565b6000818361380291906141a4565b905092915050565b505050565b505050565b600081836138229190614c8f565b905092915050565b6000600267ffffffffffffffff81111561384757613846614dd2565b5b6040519080825280602002602001820160405280156138755781602001602082028036833780820191505090505b509050308160008151811061388d5761388c614e01565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613932573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139569190614e45565b8160018151811061396a57613969614e01565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506139cf307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461216a565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613a31959493929190614f6b565b600060405180830381600087803b158015613a4b57600080fd5b505af1158015613a5f573d6000803e3d6000fd5b505050505050565b613a92307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461216a565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401613b1996959493929190614fc5565b60606040518083038185885af1158015613b37573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190613b5c919061503b565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613b9d578082015181840152602081019050613b82565b83811115613bac576000848401525b50505050565b6000601f19601f8301169050919050565b6000613bce82613b63565b613bd88185613b6e565b9350613be8818560208601613b7f565b613bf181613bb2565b840191505092915050565b60006020820190508181036000830152613c168184613bc3565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c4e82613c23565b9050919050565b613c5e81613c43565b8114613c6957600080fd5b50565b600081359050613c7b81613c55565b92915050565b6000819050919050565b613c9481613c81565b8114613c9f57600080fd5b50565b600081359050613cb181613c8b565b92915050565b60008060408385031215613cce57613ccd613c1e565b5b6000613cdc85828601613c6c565b9250506020613ced85828601613ca2565b9150509250929050565b60008115159050919050565b613d0c81613cf7565b82525050565b6000602082019050613d276000830184613d03565b92915050565b613d3681613c81565b82525050565b6000602082019050613d516000830184613d2d565b92915050565b600060208284031215613d6d57613d6c613c1e565b5b6000613d7b84828501613c6c565b91505092915050565b6000819050919050565b6000613da9613da4613d9f84613c23565b613d84565b613c23565b9050919050565b6000613dbb82613d8e565b9050919050565b6000613dcd82613db0565b9050919050565b613ddd81613dc2565b82525050565b6000602082019050613df86000830184613dd4565b92915050565b600060208284031215613e1457613e13613c1e565b5b6000613e2284828501613ca2565b91505092915050565b600080600060608486031215613e4457613e43613c1e565b5b6000613e5286828701613c6c565b9350506020613e6386828701613c6c565b9250506040613e7486828701613ca2565b9150509250925092565b613e8781613c43565b82525050565b6000602082019050613ea26000830184613e7e565b92915050565b60008060008060808587031215613ec257613ec1613c1e565b5b6000613ed087828801613ca2565b9450506020613ee187828801613ca2565b9350506040613ef287828801613ca2565b9250506060613f0387828801613ca2565b91505092959194509250565b600060ff82169050919050565b613f2581613f0f565b82525050565b6000602082019050613f406000830184613f1c565b92915050565b613f4f81613cf7565b8114613f5a57600080fd5b50565b600081359050613f6c81613f46565b92915050565b60008060408385031215613f8957613f88613c1e565b5b6000613f9785828601613c6c565b9250506020613fa885828601613f5d565b9150509250929050565b600060208284031215613fc857613fc7613c1e565b5b6000613fd684828501613f5d565b91505092915050565b60008060408385031215613ff657613ff5613c1e565b5b600061400485828601613c6c565b925050602061401585828601613c6c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061406657607f821691505b6020821081141561407a5761407961401f565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006140b6602083613b6e565b91506140c182614080565b602082019050919050565b600060208201905081810360008301526140e5816140a9565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061412682613c81565b915061413183613c81565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561416a576141696140ec565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006141af82613c81565b91506141ba83613c81565b9250826141ca576141c9614175565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000614231602f83613b6e565b915061423c826141d5565b604082019050919050565b6000602082019050818103600083015261426081614224565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006142c3602883613b6e565b91506142ce82614267565b604082019050919050565b600060208201905081810360008301526142f2816142b6565b9050919050565b600061430482613c81565b915061430f83613c81565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614344576143436140ec565b5b828201905092915050565b7f4d61782042757946656520382500000000000000000000000000000000000000600082015250565b6000614385600d83613b6e565b91506143908261434f565b602082019050919050565b600060208201905081810360008301526143b481614378565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000614417603983613b6e565b9150614422826143bb565b604082019050919050565b600060208201905081810360008301526144468161440a565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006144a9602583613b6e565b91506144b48261444d565b604082019050919050565b600060208201905081810360008301526144d88161449c565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061453b602483613b6e565b9150614546826144df565b604082019050919050565b6000602082019050818103600083015261456a8161452e565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006145cd603583613b6e565b91506145d882614571565b604082019050919050565b600060208201905081810360008301526145fc816145c0565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b600061465f603483613b6e565b915061466a82614603565b604082019050919050565b6000602082019050818103600083015261468e81614652565b9050919050565b7f4d61782053656c6c466565203130250000000000000000000000000000000000600082015250565b60006146cb600f83613b6e565b91506146d682614695565b602082019050919050565b600060208201905081810360008301526146fa816146be565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061475d602683613b6e565b915061476882614701565b604082019050919050565b6000602082019050818103600083015261478c81614750565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006147ef602483613b6e565b91506147fa82614793565b604082019050919050565b6000602082019050818103600083015261481e816147e2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614881602283613b6e565b915061488c82614825565b604082019050919050565b600060208201905081810360008301526148b081614874565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614913602583613b6e565b915061491e826148b7565b604082019050919050565b6000602082019050818103600083015261494281614906565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006149a5602383613b6e565b91506149b082614949565b604082019050919050565b600060208201905081810360008301526149d481614998565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614a11601683613b6e565b9150614a1c826149db565b602082019050919050565b60006020820190508181036000830152614a4081614a04565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614ac9604983613b6e565b9150614ad482614a47565b606082019050919050565b60006020820190508181036000830152614af881614abc565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000614b5b603583613b6e565b9150614b6682614aff565b604082019050919050565b60006020820190508181036000830152614b8a81614b4e565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000614bc7601383613b6e565b9150614bd282614b91565b602082019050919050565b60006020820190508181036000830152614bf681614bba565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000614c59603683613b6e565b9150614c6482614bfd565b604082019050919050565b60006020820190508181036000830152614c8881614c4c565b9050919050565b6000614c9a82613c81565b9150614ca583613c81565b925082821015614cb857614cb76140ec565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000614d1f602683613b6e565b9150614d2a82614cc3565b604082019050919050565b60006020820190508181036000830152614d4e81614d12565b9050919050565b600081905092915050565b50565b6000614d70600083614d55565b9150614d7b82614d60565b600082019050919050565b6000614d9182614d63565b9150819050919050565b6000606082019050614db06000830186613d2d565b614dbd6020830185613d2d565b614dca6040830184613d2d565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050614e3f81613c55565b92915050565b600060208284031215614e5b57614e5a613c1e565b5b6000614e6984828501614e30565b91505092915050565b6000819050919050565b6000614e97614e92614e8d84614e72565b613d84565b613c81565b9050919050565b614ea781614e7c565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614ee281613c43565b82525050565b6000614ef48383614ed9565b60208301905092915050565b6000602082019050919050565b6000614f1882614ead565b614f228185614eb8565b9350614f2d83614ec9565b8060005b83811015614f5e578151614f458882614ee8565b9750614f5083614f00565b925050600181019050614f31565b5085935050505092915050565b600060a082019050614f806000830188613d2d565b614f8d6020830187614e9e565b8181036040830152614f9f8186614f0d565b9050614fae6060830185613e7e565b614fbb6080830184613d2d565b9695505050505050565b600060c082019050614fda6000830189613e7e565b614fe76020830188613d2d565b614ff46040830187614e9e565b6150016060830186614e9e565b61500e6080830185613e7e565b61501b60a0830184613d2d565b979650505050505050565b60008151905061503581613c8b565b92915050565b60008060006060848603121561505457615053613c1e565b5b600061506286828701615026565b935050602061507386828701615026565b925050604061508486828701615026565b915050925092509256fea264697066735822122057420d125d1c983624e9aa2026e64c0bd0029273f9d007ed51525f639f2f81d164736f6c634300080a0033

Deployed Bytecode Sourcemap

32687:16491:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9615:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11782:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33729:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34166:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32766:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10735:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33950:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33910;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38559:275;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12433:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32869:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39478:496;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10577:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13334:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33872:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32824:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33178:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41182:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33697:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33258:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10906:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2850:103;;;;;;;;;;;;;:::i;:::-;;37667:121;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39107:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32993:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32958:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33590:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37503:112;;;;;;;;;;;;;:::i;:::-;;2199:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33030:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33765:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39370:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9834:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40674:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33664:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33990:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33841:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33555:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14052:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11246:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34387:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33218:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40484:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38842:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33476:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33063:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38054:497;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33524:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11484:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33105:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39982:494;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37849:135;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33627:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3108:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33803:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33145:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9615:100;9669:13;9702:5;9695:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9615:100;:::o;11782:169::-;11865:4;11882:39;11891:12;:10;:12::i;:::-;11905:7;11914:6;11882:8;:39::i;:::-;11939:4;11932:11;;11782:169;;;;:::o;33729:29::-;;;;:::o;34166:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;32766:51::-;;;:::o;10735:108::-;10796:7;10823:12;;10816:19;;10735:108;:::o;33950:33::-;;;;:::o;33910:::-;;;;:::o;38559:275::-;2430:12;:10;:12::i;:::-;2419:23;;:7;:5;:7::i;:::-;:23;;;2411:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38696:4:::1;38688;38683:1;38667:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38666:26;;;;:::i;:::-;38665:35;;;;:::i;:::-;38655:6;:45;;38633:142;;;;;;;;;;;;:::i;:::-;;;;;;;;;38819:6;38809;:17;;;;:::i;:::-;38786:20;:40;;;;38559:275:::0;:::o;12433:492::-;12573:4;12590:36;12600:6;12608:9;12619:6;12590:9;:36::i;:::-;12639:24;12666:11;:19;12678:6;12666:19;;;;;;;;;;;;;;;:33;12686:12;:10;:12::i;:::-;12666:33;;;;;;;;;;;;;;;;12639:60;;12738:6;12718:16;:26;;12710:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12825:57;12834:6;12842:12;:10;:12::i;:::-;12875:6;12856:16;:25;12825:8;:57::i;:::-;12913:4;12906:11;;;12433:492;;;;;:::o;32869:53::-;32915:6;32869:53;:::o;39478:496::-;2430:12;:10;:12::i;:::-;2419:23;;:7;:5;:7::i;:::-;:23;;;2411:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39713:1:::1;39701:7;39685:13;39669;39655:11;:27;;;;:::i;:::-;:43;;;;:::i;:::-;:53;;;;:::i;:::-;39654:60;;39646:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;39753:11;39737:13;:27;;;;39793:13;39775:15;:31;;;;39835:13;39817:15;:31;;;;39871:7;39859:9;:19;;;;39956:9;;39938:15;;39920;;39904:13;;:31;;;;:::i;:::-;:49;;;;:::i;:::-;:61;;;;:::i;:::-;39889:12;:76;;;;39478:496:::0;;;;:::o;10577:93::-;10635:5;10660:2;10653:9;;10577:93;:::o;13334:215::-;13422:4;13439:80;13448:12;:10;:12::i;:::-;13462:7;13508:10;13471:11;:25;13483:12;:10;:12::i;:::-;13471:25;;;;;;;;;;;;;;;:34;13497:7;13471:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13439:8;:80::i;:::-;13537:4;13530:11;;13334:215;;;;:::o;33872:31::-;;;;:::o;32824:38::-;;;:::o;33178:33::-;;;;;;;;;;;;;:::o;41182:126::-;41248:4;41272:19;:28;41292:7;41272:28;;;;;;;;;;;;;;;;;;;;;;;;;41265:35;;41182:126;;;:::o;33697:28::-;;;;:::o;33258:31::-;;;;;;;;;;;;;:::o;10906:127::-;10980:7;11007:9;:18;11017:7;11007:18;;;;;;;;;;;;;;;;11000:25;;10906:127;;;:::o;2850:103::-;2430:12;:10;:12::i;:::-;2419:23;;:7;:5;:7::i;:::-;:23;;;2411:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2915:30:::1;2942:1;2915:18;:30::i;:::-;2850:103::o:0;37667:121::-;37719:4;2430:12;:10;:12::i;:::-;2419:23;;:7;:5;:7::i;:::-;:23;;;2411:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37753:5:::1;37736:14;;:22;;;;;;;;;;;;;;;;;;37776:4;37769:11;;37667:121:::0;:::o;39107:167::-;2430:12;:10;:12::i;:::-;2419:23;;:7;:5;:7::i;:::-;:23;;;2411:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39262:4:::1;39220:31;:39;39252:6;39220:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;39107:167:::0;;:::o;32993:30::-;;;;;;;;;;;;;:::o;32958:28::-;;;;;;;;;;;;;:::o;33590:30::-;;;;:::o;37503:112::-;2430:12;:10;:12::i;:::-;2419:23;;:7;:5;:7::i;:::-;:23;;;2411:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37574:4:::1;37558:13;;:20;;;;;;;;;;;;;;;;;;37603:4;37589:11;;:18;;;;;;;;;;;;;;;;;;37503:112::o:0;2199:87::-;2245:7;2272:6;;;;;;;;;;;2265:13;;2199:87;:::o;33030:24::-;;;;;;;;;;;;;:::o;33765:31::-;;;;:::o;39370:100::-;2430:12;:10;:12::i;:::-;2419:23;;:7;:5;:7::i;:::-;:23;;;2411:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39455:7:::1;39441:11;;:21;;;;;;;;;;;;;;;;;;39370:100:::0;:::o;9834:104::-;9890:13;9923:7;9916:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9834:104;:::o;40674:304::-;2430:12;:10;:12::i;:::-;2419:23;;:7;:5;:7::i;:::-;:23;;;2411:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40818:13:::1;40810:21;;:4;:21;;;;40788:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;40929:41;40958:4;40964:5;40929:28;:41::i;:::-;40674:304:::0;;:::o;33664:24::-;;;;:::o;33990:27::-;;;;:::o;33841:25::-;;;;:::o;33555:28::-;;;;:::o;14052:413::-;14145:4;14162:24;14189:11;:25;14201:12;:10;:12::i;:::-;14189:25;;;;;;;;;;;;;;;:34;14215:7;14189:34;;;;;;;;;;;;;;;;14162:61;;14262:15;14242:16;:35;;14234:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14355:67;14364:12;:10;:12::i;:::-;14378:7;14406:15;14387:16;:34;14355:8;:67::i;:::-;14453:4;14446:11;;;14052:413;;;;:::o;11246:175::-;11332:4;11349:42;11359:12;:10;:12::i;:::-;11373:9;11384:6;11349:9;:42::i;:::-;11409:4;11402:11;;11246:175;;;;:::o;34387:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;33218:33::-;;;;;;;;;;;;;:::o;40484:182::-;2430:12;:10;:12::i;:::-;2419:23;;:7;:5;:7::i;:::-;:23;;;2411:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40600:8:::1;40569:19;:28;40589:7;40569:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;40640:7;40624:34;;;40649:8;40624:34;;;;;;:::i;:::-;;;;;;;;40484:182:::0;;:::o;38842:256::-;2430:12;:10;:12::i;:::-;2419:23;;:7;:5;:7::i;:::-;:23;;;2411:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38982:4:::1;38974;38969:1;38953:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38952:26;;;;:::i;:::-;38951:35;;;;:::i;:::-;38941:6;:45;;38919:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;39083:6;39073;:17;;;;:::i;:::-;39061:9;:29;;;;38842:256:::0;:::o;33476:39::-;;;;;;;;;;;;;:::o;33063:35::-;;;;:::o;38054:497::-;38162:4;2430:12;:10;:12::i;:::-;2419:23;;:7;:5;:7::i;:::-;:23;;;2411:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38241:6:::1;38236:1;38220:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38219:28;;;;:::i;:::-;38206:9;:41;;38184:144;;;;;;;;;;;;:::i;:::-;;;;;;;;;38396:4;38391:1;38375:13;:11;:13::i;:::-;:17;;;;:::i;:::-;38374:26;;;;:::i;:::-;38361:9;:39;;38339:141;;;;;;;;;;;;:::i;:::-;;;;;;;;;38512:9;38491:18;:30;;;;38539:4;38532:11;;38054:497:::0;;;:::o;33524:27::-;;;;:::o;11484:151::-;11573:7;11600:11;:18;11612:5;11600:18;;;;;;;;;;;;;;;:27;11619:7;11600:27;;;;;;;;;;;;;;;;11593:34;;11484:151;;;;:::o;33105:33::-;;;;:::o;39982:494::-;2430:12;:10;:12::i;:::-;2419:23;;:7;:5;:7::i;:::-;:23;;;2411:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40204:2:::1;40192:7;40176:13;40160;:29;;;;:::i;:::-;:39;;;;:::i;:::-;40159:47;;40151:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;40248:11;40231:14;:28;;;;40289:13;40270:16;:32;;;;40332:13;40313:16;:32;;;;40369:7;40356:10;:20;;;;40458:10;;40439:16;;40420;;40403:14;;:33;;;;:::i;:::-;:52;;;;:::i;:::-;:65;;;;:::i;:::-;40387:13;:81;;;;39982:494:::0;;;;:::o;37849:135::-;37909:4;2430:12;:10;:12::i;:::-;2419:23;;:7;:5;:7::i;:::-;:23;;;2411:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37949:5:::1;37926:20;;:28;;;;;;;;;;;;;;;;;;37972:4;37965:11;;37849:135:::0;:::o;33627:30::-;;;;:::o;3108:201::-;2430:12;:10;:12::i;:::-;2419:23;;:7;:5;:7::i;:::-;:23;;;2411:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3217:1:::1;3197:22;;:8;:22;;;;3189:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3273:28;3292:8;3273:18;:28::i;:::-;3108:201:::0;:::o;33803:31::-;;;;:::o;33145:24::-;;;;:::o;872:98::-;925:7;952:10;945:17;;872:98;:::o;17736:380::-;17889:1;17872:19;;:5;:19;;;;17864:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17970:1;17951:21;;:7;:21;;;;17943:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18054:6;18024:11;:18;18036:5;18024:18;;;;;;;;;;;;;;;:27;18043:7;18024:27;;;;;;;;;;;;;;;:36;;;;18092:7;18076:32;;18085:5;18076:32;;;18101:6;18076:32;;;;;;:::i;:::-;;;;;;;;17736:380;;;:::o;41316:4847::-;41464:1;41448:18;;:4;:18;;;;41440:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41541:1;41527:16;;:2;:16;;;;41519:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;41610:1;41600:6;:11;41596:93;;;41628:28;41644:4;41650:2;41654:1;41628:15;:28::i;:::-;41671:7;;41596:93;41705:14;;;;;;;;;;;41701:2487;;;41766:7;:5;:7::i;:::-;41758:15;;:4;:15;;;;:49;;;;;41800:7;:5;:7::i;:::-;41794:13;;:2;:13;;;;41758:49;:86;;;;;41842:1;41828:16;;:2;:16;;;;41758:86;:128;;;;;41879:6;41865:21;;:2;:21;;;;41758:128;:158;;;;;41908:8;;;;;;;;;;;41907:9;41758:158;41736:2441;;;41956:13;;;;;;;;;;;41951:223;;42028:19;:25;42048:4;42028:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;42057:19;:23;42077:2;42057:23;;;;;;;;;;;;;;;;;;;;;;;;;42028:52;41994:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;41951:223;42330:20;;;;;;;;;;;42326:641;;;42411:7;:5;:7::i;:::-;42405:13;;:2;:13;;;;:72;;;;;42461:15;42447:30;;:2;:30;;;;42405:72;:129;;;;;42520:13;42506:28;;:2;:28;;;;42405:129;42375:573;;;42698:12;42623:28;:39;42652:9;42623:39;;;;;;;;;;;;;;;;:87;42585:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;42912:12;42870:28;:39;42899:9;42870:39;;;;;;;;;;;;;;;:54;;;;42375:573;42326:641;43041:25;:31;43067:4;43041:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43098:31;:35;43130:2;43098:35;;;;;;;;;;;;;;;;;;;;;;;;;43097:36;43041:92;43015:1147;;;43220:20;;43210:6;:30;;43176:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;43428:9;;43411:13;43421:2;43411:9;:13::i;:::-;43402:6;:22;;;;:::i;:::-;:35;;43368:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43015:1147;;;43606:25;:29;43632:2;43606:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;43661:31;:37;43693:4;43661:37;;;;;;;;;;;;;;;;;;;;;;;;;43660:38;43606:92;43580:582;;;43785:20;;43775:6;:30;;43741:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;43580:582;;;43942:31;:35;43974:2;43942:35;;;;;;;;;;;;;;;;;;;;;;;;;43937:225;;44062:9;;44045:13;44055:2;44045:9;:13::i;:::-;44036:6;:22;;;;:::i;:::-;:35;;44002:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;43937:225;43580:582;43015:1147;41736:2441;41701:2487;44200:28;44231:24;44249:4;44231:9;:24::i;:::-;44200:55;;44268:12;44307:18;;44283:20;:42;;44268:57;;44356:7;:35;;;;;44380:11;;;;;;;;;;;44356:35;:61;;;;;44409:8;;;;;;;;;;;44408:9;44356:61;:110;;;;;44435:25;:31;44461:4;44435:31;;;;;;;;;;;;;;;;;;;;;;;;;44434:32;44356:110;:153;;;;;44484:19;:25;44504:4;44484:25;;;;;;;;;;;;;;;;;;;;;;;;;44483:26;44356:153;:194;;;;;44527:19;:23;44547:2;44527:23;;;;;;;;;;;;;;;;;;;;;;;;;44526:24;44356:194;44338:326;;;44588:4;44577:8;;:15;;;;;;;;;;;;;;;;;;44609:10;:8;:10::i;:::-;44647:5;44636:8;;:16;;;;;;;;;;;;;;;;;;44338:326;44676:12;44692:8;;;;;;;;;;;44691:9;44676:24;;44802:19;:25;44822:4;44802:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;44831:19;:23;44851:2;44831:23;;;;;;;;;;;;;;;;;;;;;;;;;44802:52;44798:100;;;44881:5;44871:15;;44798:100;44910:12;45015:7;45011:1099;;;45067:25;:29;45093:2;45067:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;45116:1;45100:13;;:17;45067:50;45063:898;;;45145:34;45175:3;45145:25;45156:13;;45145:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;45138:41;;45232:13;;45214:14;;45207:4;:21;;;;:::i;:::-;45206:39;;;;:::i;:::-;45186:16;;:59;;;;;;;:::i;:::-;;;;;;;;45314:13;;45294:16;;45287:4;:23;;;;:::i;:::-;45286:41;;;;:::i;:::-;45264:18;;:63;;;;;;;:::i;:::-;;;;;;;;45384:13;;45370:10;;45363:4;:17;;;;:::i;:::-;45362:35;;;;:::i;:::-;45346:12;;:51;;;;;;;:::i;:::-;;;;;;;;45466:13;;45446:16;;45439:4;:23;;;;:::i;:::-;45438:41;;;;:::i;:::-;45416:18;;:63;;;;;;;:::i;:::-;;;;;;;;45063:898;;;45541:25;:31;45567:4;45541:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;45591:1;45576:12;;:16;45541:51;45537:424;;;45620:33;45649:3;45620:24;45631:12;;45620:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;45613:40;;45705:12;;45688:13;;45681:4;:20;;;;:::i;:::-;45680:37;;;;:::i;:::-;45660:16;;:57;;;;;;;:::i;:::-;;;;;;;;45785:12;;45766:15;;45759:4;:22;;;;:::i;:::-;45758:39;;;;:::i;:::-;45736:18;;:61;;;;;;;:::i;:::-;;;;;;;;45853:12;;45840:9;;45833:4;:16;;;;:::i;:::-;45832:33;;;;:::i;:::-;45816:12;;:49;;;;;;;:::i;:::-;;;;;;;;45933:12;;45914:15;;45907:4;:22;;;;:::i;:::-;45906:39;;;;:::i;:::-;45884:18;;:61;;;;;;;:::i;:::-;;;;;;;;45537:424;45063:898;45988:1;45981:4;:8;45977:91;;;46010:42;46026:4;46040;46047;46010:15;:42::i;:::-;45977:91;46094:4;46084:14;;;;;:::i;:::-;;;45011:1099;46122:33;46138:4;46144:2;46148:6;46122:15;:33::i;:::-;41429:4734;;;;41316:4847;;;;:::o;3469:191::-;3543:16;3562:6;;;;;;;;;;;3543:25;;3588:8;3579:6;;:17;;;;;;;;;;;;;;;;;;3643:8;3612:40;;3633:8;3612:40;;;;;;;;;;;;3532:128;3469:191;:::o;40986:188::-;41103:5;41069:25;:31;41095:4;41069:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;41160:5;41126:40;;41154:4;41126:40;;;;;;;;;;;;40986:188;;:::o;14955:733::-;15113:1;15095:20;;:6;:20;;;;15087:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15197:1;15176:23;;:9;:23;;;;15168:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15252:47;15273:6;15281:9;15292:6;15252:20;:47::i;:::-;15312:21;15336:9;:17;15346:6;15336:17;;;;;;;;;;;;;;;;15312:41;;15389:6;15372:13;:23;;15364:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15510:6;15494:13;:22;15474:9;:17;15484:6;15474:17;;;;;;;;;;;;;;;:42;;;;15562:6;15538:9;:20;15548:9;15538:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15603:9;15586:35;;15595:6;15586:35;;;15614:6;15586:35;;;;;;:::i;:::-;;;;;;;;15634:46;15654:6;15662:9;15673:6;15634:19;:46::i;:::-;15076:612;14955:733;;;:::o;47291:1882::-;47330:23;47356:24;47374:4;47356:9;:24::i;:::-;47330:50;;47391:25;47480:12;;47459:18;;47438;;47419:16;;:37;;;;:::i;:::-;:58;;;;:::i;:::-;:73;;;;:::i;:::-;47391:101;;47503:12;47551:1;47532:15;:20;:46;;;;47577:1;47556:17;:22;47532:46;47528:85;;;47595:7;;;;;47528:85;47668:2;47647:18;;:23;;;;:::i;:::-;47629:15;:41;47625:115;;;47726:2;47705:18;;:23;;;;:::i;:::-;47687:41;;47625:115;47801:23;47888:1;47868:17;47846:18;;47828:15;:36;;;;:::i;:::-;47827:58;;;;:::i;:::-;:62;;;;:::i;:::-;47801:88;;47900:26;47929:36;47949:15;47929;:19;;:36;;;;:::i;:::-;47900:65;;47978:25;48006:21;47978:49;;48040:36;48057:18;48040:16;:36::i;:::-;48089:18;48110:44;48136:17;48110:21;:25;;:44;;;;:::i;:::-;48089:65;;48161:21;48185:55;48222:17;48185:32;48200:16;;48185:10;:14;;:32;;;;:::i;:::-;:36;;:55;;;;:::i;:::-;48161:79;;48251:23;48277:57;48316:17;48277:34;48292:18;;48277:10;:14;;:34;;;;:::i;:::-;:38;;:57;;;;:::i;:::-;48251:83;;48345:17;48365:51;48398:17;48365:28;48380:12;;48365:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;48345:71;;48429:23;48502:9;48484:15;48468:13;48455:10;:26;;;;:::i;:::-;:44;;;;:::i;:::-;:56;;;;:::i;:::-;48429:82;;48545:1;48524:18;:22;;;;48570:1;48551:16;:20;;;;48603:1;48582:18;:22;;;;48630:1;48615:12;:16;;;;48666:9;;;;;;;;;;;48658:23;;48689:9;48658:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48644:59;;;;;48736:15;;;;;;;;;;;48728:29;;48765:15;48728:57;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48714:71;;;;;48822:1;48804:15;:19;:42;;;;;48845:1;48827:15;:19;48804:42;48800:278;;;48863:46;48876:15;48893;48863:12;:46::i;:::-;48929:137;48962:18;48999:15;49033:18;;48929:137;;;;;;;;:::i;:::-;;;;;;;;48800:278;49112:13;;;;;;;;;;;49104:27;;49139:21;49104:61;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49090:75;;;;;47319:1854;;;;;;;;;;;47291:1882;:::o;23189:98::-;23247:7;23278:1;23274;:5;;;;:::i;:::-;23267:12;;23189:98;;;;:::o;23588:::-;23646:7;23677:1;23673;:5;;;;:::i;:::-;23666:12;;23588:98;;;;:::o;18716:125::-;;;;:::o;19445:124::-;;;;:::o;22832:98::-;22890:7;22921:1;22917;:5;;;;:::i;:::-;22910:12;;22832:98;;;;:::o;46171:589::-;46297:21;46335:1;46321:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46297:40;;46366:4;46348;46353:1;46348:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;46392:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;46382:4;46387:1;46382:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;46427:62;46444:4;46459:15;46477:11;46427:8;:62::i;:::-;46528:15;:66;;;46609:11;46635:1;46679:4;46706;46726:15;46528:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46226:534;46171:589;:::o;46768:515::-;46916:62;46933:4;46948:15;46966:11;46916:8;:62::i;:::-;47021:15;:31;;;47060:9;47093:4;47113:11;47139:1;47182;47225:9;;;;;;;;;;;47249:15;47021:254;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;46768: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:329::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:119;;;5273:79;;:::i;:::-;5235:119;5393:1;5418:53;5463:7;5454:6;5443:9;5439:22;5418:53;:::i;:::-;5408:63;;5364:117;5159:329;;;;:::o;5494:619::-;5571:6;5579;5587;5636:2;5624:9;5615:7;5611:23;5607:32;5604:119;;;5642:79;;:::i;:::-;5604:119;5762:1;5787:53;5832:7;5823:6;5812:9;5808:22;5787:53;:::i;:::-;5777:63;;5733:117;5889:2;5915:53;5960:7;5951:6;5940:9;5936:22;5915:53;:::i;:::-;5905:63;;5860:118;6017:2;6043:53;6088:7;6079:6;6068:9;6064:22;6043:53;:::i;:::-;6033:63;;5988:118;5494:619;;;;;:::o;6119:118::-;6206:24;6224:5;6206:24;:::i;:::-;6201:3;6194:37;6119:118;;:::o;6243:222::-;6336:4;6374:2;6363:9;6359:18;6351:26;;6387:71;6455:1;6444:9;6440:17;6431:6;6387:71;:::i;:::-;6243:222;;;;:::o;6471:765::-;6557:6;6565;6573;6581;6630:3;6618:9;6609:7;6605:23;6601:33;6598:120;;;6637:79;;:::i;:::-;6598:120;6757:1;6782:53;6827:7;6818:6;6807:9;6803:22;6782:53;:::i;:::-;6772:63;;6728:117;6884:2;6910:53;6955:7;6946:6;6935:9;6931:22;6910:53;:::i;:::-;6900:63;;6855:118;7012:2;7038:53;7083:7;7074:6;7063:9;7059:22;7038:53;:::i;:::-;7028:63;;6983:118;7140:2;7166:53;7211:7;7202:6;7191:9;7187:22;7166:53;:::i;:::-;7156:63;;7111:118;6471:765;;;;;;;:::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:348;10939:7;10962:20;10980:1;10962:20;:::i;:::-;10957:25;;10996:20;11014:1;10996:20;:::i;:::-;10991:25;;11184:1;11116:66;11112:74;11109:1;11106:81;11101:1;11094:9;11087:17;11083:105;11080:131;;;11191:18;;:::i;:::-;11080:131;11239:1;11236;11232:9;11221:20;;10899:348;;;;:::o;11253:180::-;11301:77;11298:1;11291:88;11398:4;11395:1;11388:15;11422:4;11419:1;11412:15;11439:185;11479:1;11496:20;11514:1;11496:20;:::i;:::-;11491:25;;11530:20;11548:1;11530:20;:::i;:::-;11525:25;;11569:1;11559:35;;11574:18;;:::i;:::-;11559:35;11616:1;11613;11609:9;11604:14;;11439:185;;;;:::o;11630:234::-;11770:34;11766:1;11758:6;11754:14;11747:58;11839:17;11834:2;11826:6;11822:15;11815:42;11630:234;:::o;11870:366::-;12012:3;12033:67;12097:2;12092:3;12033:67;:::i;:::-;12026:74;;12109:93;12198:3;12109:93;:::i;:::-;12227:2;12222:3;12218:12;12211:19;;11870:366;;;:::o;12242:419::-;12408:4;12446:2;12435:9;12431:18;12423:26;;12495:9;12489:4;12485:20;12481:1;12470:9;12466:17;12459:47;12523:131;12649:4;12523:131;:::i;:::-;12515:139;;12242:419;;;:::o;12667:227::-;12807:34;12803:1;12795:6;12791:14;12784:58;12876:10;12871:2;12863:6;12859:15;12852:35;12667:227;:::o;12900:366::-;13042:3;13063:67;13127:2;13122:3;13063:67;:::i;:::-;13056:74;;13139:93;13228:3;13139:93;:::i;:::-;13257:2;13252:3;13248:12;13241:19;;12900:366;;;:::o;13272:419::-;13438:4;13476:2;13465:9;13461:18;13453:26;;13525:9;13519:4;13515:20;13511:1;13500:9;13496:17;13489:47;13553:131;13679:4;13553:131;:::i;:::-;13545:139;;13272:419;;;:::o;13697:305::-;13737:3;13756:20;13774:1;13756:20;:::i;:::-;13751:25;;13790:20;13808:1;13790:20;:::i;:::-;13785:25;;13944:1;13876:66;13872:74;13869:1;13866:81;13863:107;;;13950:18;;:::i;:::-;13863:107;13994:1;13991;13987:9;13980:16;;13697:305;;;;:::o;14008:163::-;14148:15;14144:1;14136:6;14132:14;14125:39;14008:163;:::o;14177:366::-;14319:3;14340:67;14404:2;14399:3;14340:67;:::i;:::-;14333:74;;14416:93;14505:3;14416:93;:::i;:::-;14534:2;14529:3;14525:12;14518:19;;14177:366;;;:::o;14549:419::-;14715:4;14753:2;14742:9;14738:18;14730:26;;14802:9;14796:4;14792:20;14788:1;14777:9;14773:17;14766:47;14830:131;14956:4;14830:131;:::i;:::-;14822:139;;14549:419;;;:::o;14974:244::-;15114:34;15110:1;15102:6;15098:14;15091:58;15183:27;15178:2;15170:6;15166:15;15159:52;14974:244;:::o;15224:366::-;15366:3;15387:67;15451:2;15446:3;15387:67;:::i;:::-;15380:74;;15463:93;15552:3;15463:93;:::i;:::-;15581:2;15576:3;15572:12;15565:19;;15224:366;;;:::o;15596:419::-;15762:4;15800:2;15789:9;15785:18;15777:26;;15849:9;15843:4;15839:20;15835:1;15824:9;15820:17;15813:47;15877:131;16003:4;15877:131;:::i;:::-;15869:139;;15596:419;;;:::o;16021:224::-;16161:34;16157:1;16149:6;16145:14;16138:58;16230:7;16225:2;16217:6;16213:15;16206:32;16021:224;:::o;16251:366::-;16393:3;16414:67;16478:2;16473:3;16414:67;:::i;:::-;16407:74;;16490:93;16579:3;16490:93;:::i;:::-;16608:2;16603:3;16599:12;16592:19;;16251:366;;;:::o;16623:419::-;16789:4;16827:2;16816:9;16812:18;16804:26;;16876:9;16870:4;16866:20;16862:1;16851:9;16847:17;16840:47;16904:131;17030:4;16904:131;:::i;:::-;16896:139;;16623:419;;;:::o;17048:223::-;17188:34;17184:1;17176:6;17172:14;17165:58;17257:6;17252:2;17244:6;17240:15;17233:31;17048:223;:::o;17277:366::-;17419:3;17440:67;17504:2;17499:3;17440:67;:::i;:::-;17433:74;;17516:93;17605:3;17516:93;:::i;:::-;17634:2;17629:3;17625:12;17618:19;;17277:366;;;:::o;17649:419::-;17815:4;17853:2;17842:9;17838:18;17830:26;;17902:9;17896:4;17892:20;17888:1;17877:9;17873:17;17866:47;17930:131;18056:4;17930:131;:::i;:::-;17922:139;;17649:419;;;:::o;18074:240::-;18214:34;18210:1;18202:6;18198:14;18191:58;18283:23;18278:2;18270:6;18266:15;18259:48;18074:240;:::o;18320:366::-;18462:3;18483:67;18547:2;18542:3;18483:67;:::i;:::-;18476:74;;18559:93;18648:3;18559:93;:::i;:::-;18677:2;18672:3;18668:12;18661:19;;18320:366;;;:::o;18692:419::-;18858:4;18896:2;18885:9;18881:18;18873:26;;18945:9;18939:4;18935:20;18931:1;18920:9;18916:17;18909:47;18973:131;19099:4;18973:131;:::i;:::-;18965:139;;18692:419;;;:::o;19117:239::-;19257:34;19253:1;19245:6;19241:14;19234:58;19326:22;19321:2;19313:6;19309:15;19302:47;19117:239;:::o;19362:366::-;19504:3;19525:67;19589:2;19584:3;19525:67;:::i;:::-;19518:74;;19601:93;19690:3;19601:93;:::i;:::-;19719:2;19714:3;19710:12;19703:19;;19362:366;;;:::o;19734:419::-;19900:4;19938:2;19927:9;19923:18;19915:26;;19987:9;19981:4;19977:20;19973:1;19962:9;19958:17;19951:47;20015:131;20141:4;20015:131;:::i;:::-;20007:139;;19734:419;;;:::o;20159:165::-;20299:17;20295:1;20287:6;20283:14;20276:41;20159:165;:::o;20330:366::-;20472:3;20493:67;20557:2;20552:3;20493:67;:::i;:::-;20486:74;;20569:93;20658:3;20569:93;:::i;:::-;20687:2;20682:3;20678:12;20671:19;;20330:366;;;:::o;20702:419::-;20868:4;20906:2;20895:9;20891:18;20883:26;;20955:9;20949:4;20945:20;20941:1;20930:9;20926:17;20919:47;20983:131;21109:4;20983:131;:::i;:::-;20975:139;;20702:419;;;:::o;21127:225::-;21267:34;21263:1;21255:6;21251:14;21244:58;21336:8;21331:2;21323:6;21319:15;21312:33;21127:225;:::o;21358:366::-;21500:3;21521:67;21585:2;21580:3;21521:67;:::i;:::-;21514:74;;21597:93;21686:3;21597:93;:::i;:::-;21715:2;21710:3;21706:12;21699:19;;21358:366;;;:::o;21730:419::-;21896:4;21934:2;21923:9;21919:18;21911:26;;21983:9;21977:4;21973:20;21969:1;21958:9;21954:17;21947:47;22011:131;22137:4;22011:131;:::i;:::-;22003:139;;21730:419;;;:::o;22155:223::-;22295:34;22291:1;22283:6;22279:14;22272:58;22364:6;22359:2;22351:6;22347:15;22340:31;22155:223;:::o;22384:366::-;22526:3;22547:67;22611:2;22606:3;22547:67;:::i;:::-;22540:74;;22623:93;22712:3;22623:93;:::i;:::-;22741:2;22736:3;22732:12;22725:19;;22384:366;;;:::o;22756:419::-;22922:4;22960:2;22949:9;22945:18;22937:26;;23009:9;23003:4;22999:20;22995:1;22984:9;22980:17;22973:47;23037:131;23163:4;23037:131;:::i;:::-;23029:139;;22756:419;;;:::o;23181:221::-;23321:34;23317:1;23309:6;23305:14;23298:58;23390:4;23385:2;23377:6;23373:15;23366:29;23181:221;:::o;23408:366::-;23550:3;23571:67;23635:2;23630:3;23571:67;:::i;:::-;23564:74;;23647:93;23736:3;23647:93;:::i;:::-;23765:2;23760:3;23756:12;23749:19;;23408:366;;;:::o;23780:419::-;23946:4;23984:2;23973:9;23969:18;23961:26;;24033:9;24027:4;24023:20;24019:1;24008:9;24004:17;23997:47;24061:131;24187:4;24061:131;:::i;:::-;24053:139;;23780:419;;;:::o;24205:224::-;24345:34;24341:1;24333:6;24329:14;24322:58;24414:7;24409:2;24401:6;24397:15;24390:32;24205:224;:::o;24435:366::-;24577:3;24598:67;24662:2;24657:3;24598:67;:::i;:::-;24591:74;;24674:93;24763:3;24674:93;:::i;:::-;24792:2;24787:3;24783:12;24776:19;;24435:366;;;:::o;24807:419::-;24973:4;25011:2;25000:9;24996:18;24988:26;;25060:9;25054:4;25050:20;25046:1;25035:9;25031:17;25024:47;25088:131;25214:4;25088:131;:::i;:::-;25080:139;;24807:419;;;:::o;25232:222::-;25372:34;25368:1;25360:6;25356:14;25349:58;25441:5;25436:2;25428:6;25424:15;25417:30;25232:222;:::o;25460:366::-;25602:3;25623:67;25687:2;25682:3;25623:67;:::i;:::-;25616:74;;25699:93;25788:3;25699:93;:::i;:::-;25817:2;25812:3;25808:12;25801:19;;25460:366;;;:::o;25832:419::-;25998:4;26036:2;26025:9;26021:18;26013:26;;26085:9;26079:4;26075:20;26071:1;26060:9;26056:17;26049:47;26113:131;26239:4;26113:131;:::i;:::-;26105:139;;25832:419;;;:::o;26257:172::-;26397:24;26393:1;26385:6;26381:14;26374:48;26257:172;:::o;26435:366::-;26577:3;26598:67;26662:2;26657:3;26598:67;:::i;:::-;26591:74;;26674:93;26763:3;26674:93;:::i;:::-;26792:2;26787:3;26783:12;26776:19;;26435:366;;;:::o;26807:419::-;26973:4;27011:2;27000:9;26996:18;26988:26;;27060:9;27054:4;27050:20;27046:1;27035:9;27031:17;27024:47;27088:131;27214:4;27088:131;:::i;:::-;27080:139;;26807:419;;;:::o;27232:297::-;27372:34;27368:1;27360:6;27356:14;27349:58;27441:34;27436:2;27428:6;27424:15;27417:59;27510:11;27505:2;27497:6;27493:15;27486:36;27232:297;:::o;27535:366::-;27677:3;27698:67;27762:2;27757:3;27698:67;:::i;:::-;27691:74;;27774:93;27863:3;27774:93;:::i;:::-;27892:2;27887:3;27883:12;27876:19;;27535:366;;;:::o;27907:419::-;28073:4;28111:2;28100:9;28096:18;28088:26;;28160:9;28154:4;28150:20;28146:1;28135:9;28131:17;28124:47;28188:131;28314:4;28188:131;:::i;:::-;28180:139;;27907:419;;;:::o;28332:240::-;28472:34;28468:1;28460:6;28456:14;28449:58;28541:23;28536:2;28528:6;28524:15;28517:48;28332:240;:::o;28578:366::-;28720:3;28741:67;28805:2;28800:3;28741:67;:::i;:::-;28734:74;;28817:93;28906:3;28817:93;:::i;:::-;28935:2;28930:3;28926:12;28919:19;;28578:366;;;:::o;28950:419::-;29116:4;29154:2;29143:9;29139:18;29131:26;;29203:9;29197:4;29193:20;29189:1;29178:9;29174:17;29167:47;29231:131;29357:4;29231:131;:::i;:::-;29223:139;;28950:419;;;:::o;29375:169::-;29515:21;29511:1;29503:6;29499:14;29492:45;29375:169;:::o;29550:366::-;29692:3;29713:67;29777:2;29772:3;29713:67;:::i;:::-;29706:74;;29789:93;29878:3;29789:93;:::i;:::-;29907:2;29902:3;29898:12;29891:19;;29550:366;;;:::o;29922:419::-;30088:4;30126:2;30115:9;30111:18;30103:26;;30175:9;30169:4;30165:20;30161:1;30150:9;30146:17;30139:47;30203:131;30329:4;30203:131;:::i;:::-;30195:139;;29922:419;;;:::o;30347:241::-;30487:34;30483:1;30475:6;30471:14;30464:58;30556:24;30551:2;30543:6;30539:15;30532:49;30347:241;:::o;30594:366::-;30736:3;30757:67;30821:2;30816:3;30757:67;:::i;:::-;30750:74;;30833:93;30922:3;30833:93;:::i;:::-;30951:2;30946:3;30942:12;30935:19;;30594:366;;;:::o;30966:419::-;31132:4;31170:2;31159:9;31155:18;31147:26;;31219:9;31213:4;31209:20;31205:1;31194:9;31190:17;31183:47;31247:131;31373:4;31247:131;:::i;:::-;31239:139;;30966:419;;;:::o;31391:191::-;31431:4;31451:20;31469:1;31451:20;:::i;:::-;31446:25;;31485:20;31503:1;31485:20;:::i;:::-;31480:25;;31524:1;31521;31518:8;31515:34;;;31529:18;;:::i;:::-;31515:34;31574:1;31571;31567:9;31559:17;;31391:191;;;;:::o;31588:225::-;31728:34;31724:1;31716:6;31712:14;31705:58;31797:8;31792:2;31784:6;31780:15;31773:33;31588:225;:::o;31819:366::-;31961:3;31982:67;32046:2;32041:3;31982:67;:::i;:::-;31975:74;;32058:93;32147:3;32058:93;:::i;:::-;32176:2;32171:3;32167:12;32160:19;;31819:366;;;:::o;32191:419::-;32357:4;32395:2;32384:9;32380:18;32372:26;;32444:9;32438:4;32434:20;32430:1;32419:9;32415:17;32408:47;32472:131;32598:4;32472:131;:::i;:::-;32464:139;;32191:419;;;:::o;32616:147::-;32717:11;32754:3;32739:18;;32616:147;;;;:::o;32769:114::-;;:::o;32889:398::-;33048:3;33069:83;33150:1;33145:3;33069:83;:::i;:::-;33062:90;;33161:93;33250:3;33161:93;:::i;:::-;33279:1;33274:3;33270:11;33263:18;;32889:398;;;:::o;33293:379::-;33477:3;33499:147;33642:3;33499:147;:::i;:::-;33492:154;;33663:3;33656:10;;33293:379;;;:::o;33678:442::-;33827:4;33865:2;33854:9;33850:18;33842:26;;33878:71;33946:1;33935:9;33931:17;33922:6;33878:71;:::i;:::-;33959:72;34027:2;34016:9;34012:18;34003:6;33959:72;:::i;:::-;34041;34109:2;34098:9;34094:18;34085:6;34041:72;:::i;:::-;33678:442;;;;;;:::o;34126:180::-;34174:77;34171:1;34164:88;34271:4;34268:1;34261:15;34295:4;34292:1;34285:15;34312:180;34360:77;34357:1;34350:88;34457:4;34454:1;34447:15;34481:4;34478:1;34471:15;34498:143;34555:5;34586:6;34580:13;34571:22;;34602:33;34629:5;34602:33;:::i;:::-;34498:143;;;;:::o;34647:351::-;34717:6;34766:2;34754:9;34745:7;34741:23;34737:32;34734:119;;;34772:79;;:::i;:::-;34734:119;34892:1;34917:64;34973:7;34964:6;34953:9;34949:22;34917:64;:::i;:::-;34907:74;;34863:128;34647:351;;;;:::o;35004:85::-;35049:7;35078:5;35067:16;;35004:85;;;:::o;35095:158::-;35153:9;35186:61;35204:42;35213:32;35239:5;35213:32;:::i;:::-;35204:42;:::i;:::-;35186:61;:::i;:::-;35173:74;;35095:158;;;:::o;35259:147::-;35354:45;35393:5;35354:45;:::i;:::-;35349:3;35342:58;35259:147;;:::o;35412:114::-;35479:6;35513:5;35507:12;35497:22;;35412:114;;;:::o;35532:184::-;35631:11;35665:6;35660:3;35653:19;35705:4;35700:3;35696:14;35681:29;;35532:184;;;;:::o;35722:132::-;35789:4;35812:3;35804:11;;35842:4;35837:3;35833:14;35825:22;;35722:132;;;:::o;35860:108::-;35937:24;35955:5;35937:24;:::i;:::-;35932:3;35925:37;35860:108;;:::o;35974:179::-;36043:10;36064:46;36106:3;36098:6;36064:46;:::i;:::-;36142:4;36137:3;36133:14;36119:28;;35974:179;;;;:::o;36159:113::-;36229:4;36261;36256:3;36252:14;36244:22;;36159:113;;;:::o;36308:732::-;36427:3;36456:54;36504:5;36456:54;:::i;:::-;36526:86;36605:6;36600:3;36526:86;:::i;:::-;36519:93;;36636:56;36686:5;36636:56;:::i;:::-;36715:7;36746:1;36731:284;36756:6;36753:1;36750:13;36731:284;;;36832:6;36826:13;36859:63;36918:3;36903:13;36859:63;:::i;:::-;36852:70;;36945:60;36998:6;36945:60;:::i;:::-;36935:70;;36791:224;36778:1;36775;36771:9;36766:14;;36731:284;;;36735:14;37031:3;37024:10;;36432:608;;;36308:732;;;;:::o;37046:831::-;37309:4;37347:3;37336:9;37332:19;37324:27;;37361:71;37429:1;37418:9;37414:17;37405:6;37361:71;:::i;:::-;37442:80;37518:2;37507:9;37503:18;37494:6;37442:80;:::i;:::-;37569:9;37563:4;37559:20;37554:2;37543:9;37539:18;37532:48;37597:108;37700:4;37691:6;37597:108;:::i;:::-;37589:116;;37715:72;37783:2;37772:9;37768:18;37759:6;37715:72;:::i;:::-;37797:73;37865:3;37854:9;37850:19;37841:6;37797:73;:::i;:::-;37046:831;;;;;;;;:::o;37883:807::-;38132:4;38170:3;38159:9;38155:19;38147:27;;38184:71;38252:1;38241:9;38237:17;38228:6;38184:71;:::i;:::-;38265:72;38333:2;38322:9;38318:18;38309:6;38265:72;:::i;:::-;38347:80;38423:2;38412:9;38408:18;38399:6;38347:80;:::i;:::-;38437;38513:2;38502:9;38498:18;38489:6;38437:80;:::i;:::-;38527:73;38595:3;38584:9;38580:19;38571:6;38527:73;:::i;:::-;38610;38678:3;38667:9;38663:19;38654:6;38610:73;:::i;:::-;37883:807;;;;;;;;;:::o;38696:143::-;38753:5;38784:6;38778:13;38769:22;;38800:33;38827:5;38800:33;:::i;:::-;38696:143;;;;:::o;38845:663::-;38933:6;38941;38949;38998:2;38986:9;38977:7;38973:23;38969:32;38966:119;;;39004:79;;:::i;:::-;38966:119;39124:1;39149:64;39205:7;39196:6;39185:9;39181:22;39149:64;:::i;:::-;39139:74;;39095:128;39262:2;39288:64;39344:7;39335:6;39324:9;39320:22;39288:64;:::i;:::-;39278:74;;39233:129;39401:2;39427:64;39483:7;39474:6;39463:9;39459:22;39427:64;:::i;:::-;39417:74;;39372:129;38845:663;;;;;:::o

Swarm Source

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