ETH Price: $2,854.98 (-10.85%)
Gas: 15 Gwei

Token

Cross (CROSS)
 

Overview

Max Total Supply

10,000,000 CROSS

Holders

397

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0 CROSS

Value
$0.00
0x0e59a2a95534625005c73d47587dfd07c1be7657
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:
Cross

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-08-06
*/

/*
 ,-----.                       
'  .--./ ,---.  ,---. ,---.  ,---.    
|  |    | .-._|| .-. ||_.-. ||_.-. |   
'  '--'\' '    \ `-' / . '.'  . '.'     
 `-----''-'     `---'  `----` `----`    

*/

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


/**


Website: https://crosschainbot.com/

Twitter: https://twitter.com/crosschainbot

Telegram: https://t.me/cross_chain_bot


*/


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

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

/* pragma solidity ^0.8.0; */

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

/* 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 addLiquidityETH(
        address token,
        uint256 amountTokenDesired,
        uint256 amountTokenMin,
        uint256 amountETHMin,
        address to,
        uint256 deadline
    )
        external
        payable
        returns (
            uint256 amountToken,
            uint256 amountETH,
            uint256 liquidity
        );

    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 Cross is ERC20, Ownable {
    using SafeMath for uint256;

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

    bool private swapping;

    address public marketingWallet;
    address public devWallet;

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

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

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

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

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

    uint256 public tokensForMarketing;
    uint256 public tokensForLiquidity;
    uint256 public tokensForDev;

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

    // exlcude from fees and max transaction amount
    mapping(address => bool) private _isExcludedFromFees;
    mapping(address => bool) public _isExcludedMaxTransactionAmount;

    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses
    // could be subject to a maximum transfer amount
    mapping(address => bool) public automatedMarketMakerPairs;

    event UpdateUniswapV2Router(
        address indexed newAddress,
        address indexed oldAddress
    );

    event ExcludeFromFees(address indexed account, bool isExcluded);

    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);

    event SwapAndLiquify(
        uint256 tokensSwapped,
        uint256 ethReceived,
        uint256 tokensIntoLiquidity
    );

    constructor() ERC20("Cross", "CROSS") {
        // IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(
        //     0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
        // );

        address router;
        if (block.chainid == 56) {
            router = 0x10ED43C718714eb63d5aA57B78B54704E256024E; // BSC Pancake Mainnet Router
        } else if (block.chainid == 97) {
            router = 0xD99D1c33F9fC3444f8101754aBC46c52416550D1; // BSC Pancake Testnet Router
        } else if (block.chainid == 1 || block.chainid == 5) {
            router = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; // ETH Uniswap Mainnet % Testnet
        } else if (block.chainid == 11155111){
            router = 0xC532a74256D3Db42D0Bf7a0400fEFDbad7694008; // ETH Uniswap Mainnet % Testnet
        } 
        else {
            revert();
        }

        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(router);


        excludeFromMaxTransaction(address(_uniswapV2Router), true);
        uniswapV2Router = _uniswapV2Router;

        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())
            .createPair(address(this), _uniswapV2Router.WETH());
        // uniswapV2Router.addLiquidityETH{value: address(this).balance}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp);
        excludeFromMaxTransaction(address(uniswapV2Pair), true);
        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);

        uint256 _buyMarketingFee = 3;
        uint256 _buyLiquidityFee = 0;
        uint256 _buyDevFee = 0;

        uint256 _sellMarketingFee = 3;
        uint256 _sellLiquidityFee = 0;
        uint256 _sellDevFee = 0;

        uint256 totalSupply = 10000000 * 1e18;

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

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

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

        marketingWallet = address(0xe06F54f7eD490d90725F7c64c140dD43Ce397681); // 
        devWallet = address(0xbC5E7e62CeDd93C77f14595cc0d765AFf3E2D199); // 

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

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


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

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

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

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

        uint256 initialETHBalance = address(this).balance;

        swapTokensForEth(amountToSwapForETH);

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

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

        // uint256 ethForLiquidity = ethBalance - ethForMarketing - ethForDev;

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

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

    }

}

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":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600b60006101000a81548160ff0219169083151502179055506001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff0219169083151502179055506001600d60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600581526020017f43726f73730000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f43524f535300000000000000000000000000000000000000000000000000000081525081600390805190602001906200010292919062000b7f565b5080600490805190602001906200011b92919062000b7f565b5050506200013e620001326200063f60201b60201c565b6200064760201b60201c565b6000603846141562000167577310ed43c718714eb63d5aa57b78b54704e256024e9050620001f2565b60614614156200018e5773d99d1c33f9fc3444f8101754abc46c52416550d19050620001f1565b60014614806200019e5750600546145b15620001c157737a250d5630b4cf539739df2c5dacb4c659f2488d9050620001f0565b62aa36a7461415620001ea5773c532a74256d3db42d0bf7a0400fefdbad76940089050620001ef565b600080fd5b5b5b5b60008190506200020a8160016200070d60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200028a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002b0919062000c99565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801562000318573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200033e919062000c99565b6040518363ffffffff1660e01b81526004016200035d92919062000cdc565b6020604051808303816000875af11580156200037d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003a3919062000c99565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff1681525050620003eb60a05160016200070d60201b60201c565b6200040060a0516001620007f760201b60201c565b60006003905060008060006003905060008060006a084595161401484a0000009050692a5a058fc295ed000000600881905550694a1d89bb94865ec00000600a81905550612710600a8262000456919062000d42565b62000462919062000dd2565b60098190555086600f819055508560108190555084601181905550601154601054600f5462000492919062000e0a565b6200049e919062000e0a565b600e81905550836013819055508260148190555081601581905550601554601454601354620004ce919062000e0a565b620004da919062000e0a565b60128190555073e06f54f7ed490d90725f7c64c140dd43ce397681600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073bc5e7e62cedd93c77f14595cc0d765aff3e2d199600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620005ac6200059e6200089860201b60201c565b6001620008c260201b60201c565b620005bf306001620008c260201b60201c565b620005d461dead6001620008c260201b60201c565b620005f6620005e86200089860201b60201c565b60016200070d60201b60201c565b620006093060016200070d60201b60201c565b6200061e61dead60016200070d60201b60201c565b620006303382620009fc60201b60201c565b50505050505050505062001029565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200071d6200063f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007436200089860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200079c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007939062000ec8565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620008d26200063f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620008f86200089860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000951576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009489062000ec8565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620009f0919062000f07565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a6f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000a669062000f74565b60405180910390fd5b62000a836000838362000b7560201b60201c565b806002600082825462000a97919062000e0a565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000aee919062000e0a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000b55919062000fa7565b60405180910390a362000b716000838362000b7a60201b60201c565b5050565b505050565b505050565b82805462000b8d9062000ff3565b90600052602060002090601f01602090048101928262000bb1576000855562000bfd565b82601f1062000bcc57805160ff191683800117855562000bfd565b8280016001018555821562000bfd579182015b8281111562000bfc57825182559160200191906001019062000bdf565b5b50905062000c0c919062000c10565b5090565b5b8082111562000c2b57600081600090555060010162000c11565b5090565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000c618262000c34565b9050919050565b62000c738162000c54565b811462000c7f57600080fd5b50565b60008151905062000c938162000c68565b92915050565b60006020828403121562000cb25762000cb162000c2f565b5b600062000cc28482850162000c82565b91505092915050565b62000cd68162000c54565b82525050565b600060408201905062000cf3600083018562000ccb565b62000d02602083018462000ccb565b9392505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000d4f8262000d09565b915062000d5c8362000d09565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000d985762000d9762000d13565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600062000ddf8262000d09565b915062000dec8362000d09565b92508262000dff5762000dfe62000da3565b5b828204905092915050565b600062000e178262000d09565b915062000e248362000d09565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000e5c5762000e5b62000d13565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000eb060208362000e67565b915062000ebd8262000e78565b602082019050919050565b6000602082019050818103600083015262000ee38162000ea1565b9050919050565b60008115159050919050565b62000f018162000eea565b82525050565b600060208201905062000f1e600083018462000ef6565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f5c601f8362000e67565b915062000f698262000f24565b602082019050919050565b6000602082019050818103600083015262000f8f8162000f4d565b9050919050565b62000fa18162000d09565b82525050565b600060208201905062000fbe600083018462000f96565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200100c57607f821691505b6020821081141562001023576200102262000fc4565b5b50919050565b60805160a051613d696200107960003960008181610cfc015281816110d90152611b28015260008181610b0f01528181611ad001528181612b4b01528181612c2c0152612c530152613d696000f3fe6080604052600436106102605760003560e01c80638da5cb5b11610144578063bbc0c742116100b6578063dd62ed3e1161007a578063dd62ed3e1461092b578063e2f4560514610968578063f11a24d314610993578063f2fde38b146109be578063f6374342146109e7578063f8b45b0514610a1257610267565b8063bbc0c74214610856578063c024666814610881578063c876d0b9146108aa578063c8c8ebe4146108d5578063d85ba0631461090057610267565b80639c3b4fdc116101085780639c3b4fdc1461071e5780639fccce3214610749578063a0d82dc514610774578063a457c2d71461079f578063a9059cbb146107dc578063b62496f51461081957610267565b80638da5cb5b146106495780638ea5220f14610674578063921369131461069f57806395d89b41146106ca5780639a7a23d6146106f557610267565b806339509351116101dd5780636ddd1713116101a15780636ddd17131461054b57806370a0823114610576578063715018a6146105b35780637571336a146105ca57806375f0a874146105f35780637bce5a041461061e57610267565b8063395093511461045057806349bd5a5e1461048d5780634a62bb65146104b85780634fbee193146104e35780636a486a8e1461052057610267565b80631a8145bb116102245780631a8145bb146103675780631f3fed8f1461039257806323b872dd146103bd57806327c8f835146103fa578063313ce5671461042557610267565b806306fdde031461026c578063095ea7b31461029757806310d5de53146102d45780631694505e1461031157806318160ddd1461033c57610267565b3661026757005b600080fd5b34801561027857600080fd5b50610281610a3d565b60405161028e9190612d82565b60405180910390f35b3480156102a357600080fd5b506102be60048036038101906102b99190612e3d565b610acf565b6040516102cb9190612e98565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190612eb3565b610aed565b6040516103089190612e98565b60405180910390f35b34801561031d57600080fd5b50610326610b0d565b6040516103339190612f3f565b60405180910390f35b34801561034857600080fd5b50610351610b31565b60405161035e9190612f69565b60405180910390f35b34801561037357600080fd5b5061037c610b3b565b6040516103899190612f69565b60405180910390f35b34801561039e57600080fd5b506103a7610b41565b6040516103b49190612f69565b60405180910390f35b3480156103c957600080fd5b506103e460048036038101906103df9190612f84565b610b47565b6040516103f19190612e98565b60405180910390f35b34801561040657600080fd5b5061040f610c3f565b60405161041c9190612fe6565b60405180910390f35b34801561043157600080fd5b5061043a610c45565b604051610447919061301d565b60405180910390f35b34801561045c57600080fd5b5061047760048036038101906104729190612e3d565b610c4e565b6040516104849190612e98565b60405180910390f35b34801561049957600080fd5b506104a2610cfa565b6040516104af9190612fe6565b60405180910390f35b3480156104c457600080fd5b506104cd610d1e565b6040516104da9190612e98565b60405180910390f35b3480156104ef57600080fd5b5061050a60048036038101906105059190612eb3565b610d31565b6040516105179190612e98565b60405180910390f35b34801561052c57600080fd5b50610535610d87565b6040516105429190612f69565b60405180910390f35b34801561055757600080fd5b50610560610d8d565b60405161056d9190612e98565b60405180910390f35b34801561058257600080fd5b5061059d60048036038101906105989190612eb3565b610da0565b6040516105aa9190612f69565b60405180910390f35b3480156105bf57600080fd5b506105c8610de8565b005b3480156105d657600080fd5b506105f160048036038101906105ec9190613064565b610e70565b005b3480156105ff57600080fd5b50610608610f47565b6040516106159190612fe6565b60405180910390f35b34801561062a57600080fd5b50610633610f6d565b6040516106409190612f69565b60405180910390f35b34801561065557600080fd5b5061065e610f73565b60405161066b9190612fe6565b60405180910390f35b34801561068057600080fd5b50610689610f9d565b6040516106969190612fe6565b60405180910390f35b3480156106ab57600080fd5b506106b4610fc3565b6040516106c19190612f69565b60405180910390f35b3480156106d657600080fd5b506106df610fc9565b6040516106ec9190612d82565b60405180910390f35b34801561070157600080fd5b5061071c60048036038101906107179190613064565b61105b565b005b34801561072a57600080fd5b50610733611174565b6040516107409190612f69565b60405180910390f35b34801561075557600080fd5b5061075e61117a565b60405161076b9190612f69565b60405180910390f35b34801561078057600080fd5b50610789611180565b6040516107969190612f69565b60405180910390f35b3480156107ab57600080fd5b506107c660048036038101906107c19190612e3d565b611186565b6040516107d39190612e98565b60405180910390f35b3480156107e857600080fd5b5061080360048036038101906107fe9190612e3d565b611271565b6040516108109190612e98565b60405180910390f35b34801561082557600080fd5b50610840600480360381019061083b9190612eb3565b61128f565b60405161084d9190612e98565b60405180910390f35b34801561086257600080fd5b5061086b6112af565b6040516108789190612e98565b60405180910390f35b34801561088d57600080fd5b506108a860048036038101906108a39190613064565b6112c2565b005b3480156108b657600080fd5b506108bf6113e7565b6040516108cc9190612e98565b60405180910390f35b3480156108e157600080fd5b506108ea6113fa565b6040516108f79190612f69565b60405180910390f35b34801561090c57600080fd5b50610915611400565b6040516109229190612f69565b60405180910390f35b34801561093757600080fd5b50610952600480360381019061094d91906130a4565b611406565b60405161095f9190612f69565b60405180910390f35b34801561097457600080fd5b5061097d61148d565b60405161098a9190612f69565b60405180910390f35b34801561099f57600080fd5b506109a8611493565b6040516109b59190612f69565b60405180910390f35b3480156109ca57600080fd5b506109e560048036038101906109e09190612eb3565b611499565b005b3480156109f357600080fd5b506109fc611591565b604051610a099190612f69565b60405180910390f35b348015610a1e57600080fd5b50610a27611597565b604051610a349190612f69565b60405180910390f35b606060038054610a4c90613113565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7890613113565b8015610ac55780601f10610a9a57610100808354040283529160200191610ac5565b820191906000526020600020905b815481529060010190602001808311610aa857829003601f168201915b5050505050905090565b6000610ae3610adc61159d565b84846115a5565b6001905092915050565b601a6020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b60175481565b60165481565b6000610b54848484611770565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610b9f61159d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c16906131b7565b60405180910390fd5b610c3385610c2b61159d565b8584036115a5565b60019150509392505050565b61dead81565b60006012905090565b6000610cf0610c5b61159d565b848460016000610c6961159d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ceb9190613206565b6115a5565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b60009054906101000a900460ff1681565b6000601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60125481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610df061159d565b73ffffffffffffffffffffffffffffffffffffffff16610e0e610f73565b73ffffffffffffffffffffffffffffffffffffffff1614610e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5b906132a8565b60405180910390fd5b610e6e600061240a565b565b610e7861159d565b73ffffffffffffffffffffffffffffffffffffffff16610e96610f73565b73ffffffffffffffffffffffffffffffffffffffff1614610eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee3906132a8565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60135481565b606060048054610fd890613113565b80601f016020809104026020016040519081016040528092919081815260200182805461100490613113565b80156110515780601f1061102657610100808354040283529160200191611051565b820191906000526020600020905b81548152906001019060200180831161103457829003601f168201915b5050505050905090565b61106361159d565b73ffffffffffffffffffffffffffffffffffffffff16611081610f73565b73ffffffffffffffffffffffffffffffffffffffff16146110d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ce906132a8565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115d9061333a565b60405180910390fd5b61117082826124d0565b5050565b60115481565b60185481565b60155481565b6000806001600061119561159d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611252576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611249906133cc565b60405180910390fd5b61126661125d61159d565b858584036115a5565b600191505092915050565b600061128561127e61159d565b8484611770565b6001905092915050565b601b6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b6112ca61159d565b73ffffffffffffffffffffffffffffffffffffffff166112e8610f73565b73ffffffffffffffffffffffffffffffffffffffff161461133e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611335906132a8565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516113db9190612e98565b60405180910390a25050565b600d60009054906101000a900460ff1681565b60085481565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60105481565b6114a161159d565b73ffffffffffffffffffffffffffffffffffffffff166114bf610f73565b73ffffffffffffffffffffffffffffffffffffffff1614611515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150c906132a8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611585576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157c9061345e565b60405180910390fd5b61158e8161240a565b50565b60145481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611615576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160c906134f0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611685576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167c90613582565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516117639190612f69565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d790613614565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611850576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611847906136a6565b60405180910390fd5b600081141561186a5761186583836000612571565b612405565b600b60009054906101000a900460ff1615611f2d57611887610f73565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156118f557506118c5610f73565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561192e5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611968575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156119815750600560149054906101000a900460ff16155b15611f2c57600b60019054906101000a900460ff16611a7b57601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611a3b5750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611a7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7190613712565b60405180910390fd5b5b600d60009054906101000a900460ff1615611c4357611a98610f73565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611b1f57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611b7757507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611c425743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611bfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf4906137ca565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611ce65750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611d8d57600854811115611d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d279061385c565b60405180910390fd5b600a54611d3c83610da0565b82611d479190613206565b1115611d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7f906138c8565b60405180910390fd5b611f2b565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611e305750601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611e7f57600854811115611e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e719061395a565b60405180910390fd5b611f2a565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611f2957600a54611edc83610da0565b82611ee79190613206565b1115611f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1f906138c8565b60405180910390fd5b5b5b5b5b5b6000611f3830610da0565b905060006009548210159050808015611f5d5750600b60029054906101000a900460ff165b8015611f765750600560149054906101000a900460ff16155b8015611fcc5750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156120225750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156120785750601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156120bc576001600560146101000a81548160ff0219169083151502179055506120a06127f2565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806121725750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561217c57600090505b600081156123f557601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156121df57506000601254115b156122ac5761220c60646121fe60125488612a6090919063ffffffff16565b612a7690919063ffffffff16565b90506012546014548261221f919061397a565b6122299190613a03565b6017600082825461223a9190613206565b9250508190555060125460155482612252919061397a565b61225c9190613a03565b6018600082825461226d9190613206565b9250508190555060125460135482612285919061397a565b61228f9190613a03565b601660008282546122a09190613206565b925050819055506123d1565b601b60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561230757506000600e54115b156123d0576123346064612326600e5488612a6090919063ffffffff16565b612a7690919063ffffffff16565b9050600e5460105482612347919061397a565b6123519190613a03565b601760008282546123629190613206565b92505081905550600e546011548261237a919061397a565b6123849190613a03565b601860008282546123959190613206565b92505081905550600e54600f54826123ad919061397a565b6123b79190613a03565b601660008282546123c89190613206565b925050819055505b5b60008111156123e6576123e5873083612571565b5b80856123f29190613a34565b94505b612400878787612571565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156125e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d890613614565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612651576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612648906136a6565b60405180910390fd5b61265c838383612a8c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156126e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d990613ada565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127759190613206565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516127d99190612f69565b60405180910390a36127ec848484612a91565b50505050565b60006127fd30610da0565b905060006018546016546017546128149190613206565b61281e9190613206565b90506000808314806128305750600082145b1561283d57505050612a5e565b601460095461284c919061397a565b831115612865576014600954612862919061397a565b92505b600060028360175486612878919061397a565b6128829190613a03565b61288c9190613a03565b905060006128a38286612a9690919063ffffffff16565b905060004790506128b382612aac565b60006128c88247612a9690919063ffffffff16565b905060006128f3876128e560165485612a6090919063ffffffff16565b612a7690919063ffffffff16565b9050600061291e8861291060185486612a6090919063ffffffff16565b612a7690919063ffffffff16565b9050600060178190555060006016819055506000601881905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168160405161297e90613b2b565b60006040518083038185875af1925050503d80600081146129bb576040519150601f19603f3d011682016040523d82523d6000602084013e6129c0565b606091505b505080975050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051612a0c90613b2b565b60006040518083038185875af1925050503d8060008114612a49576040519150601f19603f3d011682016040523d82523d6000602084013e612a4e565b606091505b5050809750505050505050505050505b565b60008183612a6e919061397a565b905092915050565b60008183612a849190613a03565b905092915050565b505050565b505050565b60008183612aa49190613a34565b905092915050565b6000600267ffffffffffffffff811115612ac957612ac8613b40565b5b604051908082528060200260200182016040528015612af75781602001602082028036833780820191505090505b5090503081600081518110612b0f57612b0e613b6f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612bb4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612bd89190613bb3565b81600181518110612bec57612beb613b6f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612c51307f0000000000000000000000000000000000000000000000000000000000000000846115a5565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612cb3959493929190613cd9565b600060405180830381600087803b158015612ccd57600080fd5b505af1158015612ce1573d6000803e3d6000fd5b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612d23578082015181840152602081019050612d08565b83811115612d32576000848401525b50505050565b6000601f19601f8301169050919050565b6000612d5482612ce9565b612d5e8185612cf4565b9350612d6e818560208601612d05565b612d7781612d38565b840191505092915050565b60006020820190508181036000830152612d9c8184612d49565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612dd482612da9565b9050919050565b612de481612dc9565b8114612def57600080fd5b50565b600081359050612e0181612ddb565b92915050565b6000819050919050565b612e1a81612e07565b8114612e2557600080fd5b50565b600081359050612e3781612e11565b92915050565b60008060408385031215612e5457612e53612da4565b5b6000612e6285828601612df2565b9250506020612e7385828601612e28565b9150509250929050565b60008115159050919050565b612e9281612e7d565b82525050565b6000602082019050612ead6000830184612e89565b92915050565b600060208284031215612ec957612ec8612da4565b5b6000612ed784828501612df2565b91505092915050565b6000819050919050565b6000612f05612f00612efb84612da9565b612ee0565b612da9565b9050919050565b6000612f1782612eea565b9050919050565b6000612f2982612f0c565b9050919050565b612f3981612f1e565b82525050565b6000602082019050612f546000830184612f30565b92915050565b612f6381612e07565b82525050565b6000602082019050612f7e6000830184612f5a565b92915050565b600080600060608486031215612f9d57612f9c612da4565b5b6000612fab86828701612df2565b9350506020612fbc86828701612df2565b9250506040612fcd86828701612e28565b9150509250925092565b612fe081612dc9565b82525050565b6000602082019050612ffb6000830184612fd7565b92915050565b600060ff82169050919050565b61301781613001565b82525050565b6000602082019050613032600083018461300e565b92915050565b61304181612e7d565b811461304c57600080fd5b50565b60008135905061305e81613038565b92915050565b6000806040838503121561307b5761307a612da4565b5b600061308985828601612df2565b925050602061309a8582860161304f565b9150509250929050565b600080604083850312156130bb576130ba612da4565b5b60006130c985828601612df2565b92505060206130da85828601612df2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061312b57607f821691505b6020821081141561313f5761313e6130e4565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006131a1602883612cf4565b91506131ac82613145565b604082019050919050565b600060208201905081810360008301526131d081613194565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061321182612e07565b915061321c83612e07565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613251576132506131d7565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613292602083612cf4565b915061329d8261325c565b602082019050919050565b600060208201905081810360008301526132c181613285565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613324603983612cf4565b915061332f826132c8565b604082019050919050565b6000602082019050818103600083015261335381613317565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006133b6602583612cf4565b91506133c18261335a565b604082019050919050565b600060208201905081810360008301526133e5816133a9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613448602683612cf4565b9150613453826133ec565b604082019050919050565b600060208201905081810360008301526134778161343b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006134da602483612cf4565b91506134e58261347e565b604082019050919050565b60006020820190508181036000830152613509816134cd565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061356c602283612cf4565b915061357782613510565b604082019050919050565b6000602082019050818103600083015261359b8161355f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006135fe602583612cf4565b9150613609826135a2565b604082019050919050565b6000602082019050818103600083015261362d816135f1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613690602383612cf4565b915061369b82613634565b604082019050919050565b600060208201905081810360008301526136bf81613683565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006136fc601683612cf4565b9150613707826136c6565b602082019050919050565b6000602082019050818103600083015261372b816136ef565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006137b4604983612cf4565b91506137bf82613732565b606082019050919050565b600060208201905081810360008301526137e3816137a7565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613846603583612cf4565b9150613851826137ea565b604082019050919050565b6000602082019050818103600083015261387581613839565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006138b2601383612cf4565b91506138bd8261387c565b602082019050919050565b600060208201905081810360008301526138e1816138a5565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000613944603683612cf4565b915061394f826138e8565b604082019050919050565b6000602082019050818103600083015261397381613937565b9050919050565b600061398582612e07565b915061399083612e07565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139c9576139c86131d7565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613a0e82612e07565b9150613a1983612e07565b925082613a2957613a286139d4565b5b828204905092915050565b6000613a3f82612e07565b9150613a4a83612e07565b925082821015613a5d57613a5c6131d7565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613ac4602683612cf4565b9150613acf82613a68565b604082019050919050565b60006020820190508181036000830152613af381613ab7565b9050919050565b600081905092915050565b50565b6000613b15600083613afa565b9150613b2082613b05565b600082019050919050565b6000613b3682613b08565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050613bad81612ddb565b92915050565b600060208284031215613bc957613bc8612da4565b5b6000613bd784828501613b9e565b91505092915050565b6000819050919050565b6000613c05613c00613bfb84613be0565b612ee0565b612e07565b9050919050565b613c1581613bea565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613c5081612dc9565b82525050565b6000613c628383613c47565b60208301905092915050565b6000602082019050919050565b6000613c8682613c1b565b613c908185613c26565b9350613c9b83613c37565b8060005b83811015613ccc578151613cb38882613c56565b9750613cbe83613c6e565b925050600181019050613c9f565b5085935050505092915050565b600060a082019050613cee6000830188612f5a565b613cfb6020830187613c0c565b8181036040830152613d0d8186613c7b565b9050613d1c6060830185612fd7565b613d296080830184612f5a565b969550505050505056fea2646970667358221220e354e9a7bf63e6107d59c712776357f66067494d8f5d6f9e14781a6bcc3a452864736f6c634300080a0033

Deployed Bytecode

0x6080604052600436106102605760003560e01c80638da5cb5b11610144578063bbc0c742116100b6578063dd62ed3e1161007a578063dd62ed3e1461092b578063e2f4560514610968578063f11a24d314610993578063f2fde38b146109be578063f6374342146109e7578063f8b45b0514610a1257610267565b8063bbc0c74214610856578063c024666814610881578063c876d0b9146108aa578063c8c8ebe4146108d5578063d85ba0631461090057610267565b80639c3b4fdc116101085780639c3b4fdc1461071e5780639fccce3214610749578063a0d82dc514610774578063a457c2d71461079f578063a9059cbb146107dc578063b62496f51461081957610267565b80638da5cb5b146106495780638ea5220f14610674578063921369131461069f57806395d89b41146106ca5780639a7a23d6146106f557610267565b806339509351116101dd5780636ddd1713116101a15780636ddd17131461054b57806370a0823114610576578063715018a6146105b35780637571336a146105ca57806375f0a874146105f35780637bce5a041461061e57610267565b8063395093511461045057806349bd5a5e1461048d5780634a62bb65146104b85780634fbee193146104e35780636a486a8e1461052057610267565b80631a8145bb116102245780631a8145bb146103675780631f3fed8f1461039257806323b872dd146103bd57806327c8f835146103fa578063313ce5671461042557610267565b806306fdde031461026c578063095ea7b31461029757806310d5de53146102d45780631694505e1461031157806318160ddd1461033c57610267565b3661026757005b600080fd5b34801561027857600080fd5b50610281610a3d565b60405161028e9190612d82565b60405180910390f35b3480156102a357600080fd5b506102be60048036038101906102b99190612e3d565b610acf565b6040516102cb9190612e98565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190612eb3565b610aed565b6040516103089190612e98565b60405180910390f35b34801561031d57600080fd5b50610326610b0d565b6040516103339190612f3f565b60405180910390f35b34801561034857600080fd5b50610351610b31565b60405161035e9190612f69565b60405180910390f35b34801561037357600080fd5b5061037c610b3b565b6040516103899190612f69565b60405180910390f35b34801561039e57600080fd5b506103a7610b41565b6040516103b49190612f69565b60405180910390f35b3480156103c957600080fd5b506103e460048036038101906103df9190612f84565b610b47565b6040516103f19190612e98565b60405180910390f35b34801561040657600080fd5b5061040f610c3f565b60405161041c9190612fe6565b60405180910390f35b34801561043157600080fd5b5061043a610c45565b604051610447919061301d565b60405180910390f35b34801561045c57600080fd5b5061047760048036038101906104729190612e3d565b610c4e565b6040516104849190612e98565b60405180910390f35b34801561049957600080fd5b506104a2610cfa565b6040516104af9190612fe6565b60405180910390f35b3480156104c457600080fd5b506104cd610d1e565b6040516104da9190612e98565b60405180910390f35b3480156104ef57600080fd5b5061050a60048036038101906105059190612eb3565b610d31565b6040516105179190612e98565b60405180910390f35b34801561052c57600080fd5b50610535610d87565b6040516105429190612f69565b60405180910390f35b34801561055757600080fd5b50610560610d8d565b60405161056d9190612e98565b60405180910390f35b34801561058257600080fd5b5061059d60048036038101906105989190612eb3565b610da0565b6040516105aa9190612f69565b60405180910390f35b3480156105bf57600080fd5b506105c8610de8565b005b3480156105d657600080fd5b506105f160048036038101906105ec9190613064565b610e70565b005b3480156105ff57600080fd5b50610608610f47565b6040516106159190612fe6565b60405180910390f35b34801561062a57600080fd5b50610633610f6d565b6040516106409190612f69565b60405180910390f35b34801561065557600080fd5b5061065e610f73565b60405161066b9190612fe6565b60405180910390f35b34801561068057600080fd5b50610689610f9d565b6040516106969190612fe6565b60405180910390f35b3480156106ab57600080fd5b506106b4610fc3565b6040516106c19190612f69565b60405180910390f35b3480156106d657600080fd5b506106df610fc9565b6040516106ec9190612d82565b60405180910390f35b34801561070157600080fd5b5061071c60048036038101906107179190613064565b61105b565b005b34801561072a57600080fd5b50610733611174565b6040516107409190612f69565b60405180910390f35b34801561075557600080fd5b5061075e61117a565b60405161076b9190612f69565b60405180910390f35b34801561078057600080fd5b50610789611180565b6040516107969190612f69565b60405180910390f35b3480156107ab57600080fd5b506107c660048036038101906107c19190612e3d565b611186565b6040516107d39190612e98565b60405180910390f35b3480156107e857600080fd5b5061080360048036038101906107fe9190612e3d565b611271565b6040516108109190612e98565b60405180910390f35b34801561082557600080fd5b50610840600480360381019061083b9190612eb3565b61128f565b60405161084d9190612e98565b60405180910390f35b34801561086257600080fd5b5061086b6112af565b6040516108789190612e98565b60405180910390f35b34801561088d57600080fd5b506108a860048036038101906108a39190613064565b6112c2565b005b3480156108b657600080fd5b506108bf6113e7565b6040516108cc9190612e98565b60405180910390f35b3480156108e157600080fd5b506108ea6113fa565b6040516108f79190612f69565b60405180910390f35b34801561090c57600080fd5b50610915611400565b6040516109229190612f69565b60405180910390f35b34801561093757600080fd5b50610952600480360381019061094d91906130a4565b611406565b60405161095f9190612f69565b60405180910390f35b34801561097457600080fd5b5061097d61148d565b60405161098a9190612f69565b60405180910390f35b34801561099f57600080fd5b506109a8611493565b6040516109b59190612f69565b60405180910390f35b3480156109ca57600080fd5b506109e560048036038101906109e09190612eb3565b611499565b005b3480156109f357600080fd5b506109fc611591565b604051610a099190612f69565b60405180910390f35b348015610a1e57600080fd5b50610a27611597565b604051610a349190612f69565b60405180910390f35b606060038054610a4c90613113565b80601f0160208091040260200160405190810160405280929190818152602001828054610a7890613113565b8015610ac55780601f10610a9a57610100808354040283529160200191610ac5565b820191906000526020600020905b815481529060010190602001808311610aa857829003601f168201915b5050505050905090565b6000610ae3610adc61159d565b84846115a5565b6001905092915050565b601a6020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b60175481565b60165481565b6000610b54848484611770565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610b9f61159d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610c1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c16906131b7565b60405180910390fd5b610c3385610c2b61159d565b8584036115a5565b60019150509392505050565b61dead81565b60006012905090565b6000610cf0610c5b61159d565b848460016000610c6961159d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610ceb9190613206565b6115a5565b6001905092915050565b7f0000000000000000000000005f83953ecc15434729b45d44d366e3132e3d494c81565b600b60009054906101000a900460ff1681565b6000601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60125481565b600b60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610df061159d565b73ffffffffffffffffffffffffffffffffffffffff16610e0e610f73565b73ffffffffffffffffffffffffffffffffffffffff1614610e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5b906132a8565b60405180910390fd5b610e6e600061240a565b565b610e7861159d565b73ffffffffffffffffffffffffffffffffffffffff16610e96610f73565b73ffffffffffffffffffffffffffffffffffffffff1614610eec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee3906132a8565b60405180910390fd5b80601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60135481565b606060048054610fd890613113565b80601f016020809104026020016040519081016040528092919081815260200182805461100490613113565b80156110515780601f1061102657610100808354040283529160200191611051565b820191906000526020600020905b81548152906001019060200180831161103457829003601f168201915b5050505050905090565b61106361159d565b73ffffffffffffffffffffffffffffffffffffffff16611081610f73565b73ffffffffffffffffffffffffffffffffffffffff16146110d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110ce906132a8565b60405180910390fd5b7f0000000000000000000000005f83953ecc15434729b45d44d366e3132e3d494c73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611166576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115d9061333a565b60405180910390fd5b61117082826124d0565b5050565b60115481565b60185481565b60155481565b6000806001600061119561159d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611252576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611249906133cc565b60405180910390fd5b61126661125d61159d565b858584036115a5565b600191505092915050565b600061128561127e61159d565b8484611770565b6001905092915050565b601b6020528060005260406000206000915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b6112ca61159d565b73ffffffffffffffffffffffffffffffffffffffff166112e8610f73565b73ffffffffffffffffffffffffffffffffffffffff161461133e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611335906132a8565b60405180910390fd5b80601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516113db9190612e98565b60405180910390a25050565b600d60009054906101000a900460ff1681565b60085481565b600e5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60095481565b60105481565b6114a161159d565b73ffffffffffffffffffffffffffffffffffffffff166114bf610f73565b73ffffffffffffffffffffffffffffffffffffffff1614611515576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150c906132a8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611585576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157c9061345e565b60405180910390fd5b61158e8161240a565b50565b60145481565b600a5481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611615576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160c906134f0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611685576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167c90613582565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516117639190612f69565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156117e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d790613614565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611850576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611847906136a6565b60405180910390fd5b600081141561186a5761186583836000612571565b612405565b600b60009054906101000a900460ff1615611f2d57611887610f73565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156118f557506118c5610f73565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561192e5750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611968575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156119815750600560149054906101000a900460ff16155b15611f2c57600b60019054906101000a900460ff16611a7b57601960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611a3b5750601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611a7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7190613712565b60405180910390fd5b5b600d60009054906101000a900460ff1615611c4357611a98610f73565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611b1f57507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611b7757507f0000000000000000000000005f83953ecc15434729b45d44d366e3132e3d494c73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b15611c425743600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410611bfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf4906137ca565b60405180910390fd5b43600c60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611ce65750601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611d8d57600854811115611d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d279061385c565b60405180910390fd5b600a54611d3c83610da0565b82611d479190613206565b1115611d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7f906138c8565b60405180910390fd5b611f2b565b601b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611e305750601a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611e7f57600854811115611e7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e719061395a565b60405180910390fd5b611f2a565b601a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611f2957600a54611edc83610da0565b82611ee79190613206565b1115611f28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1f906138c8565b60405180910390fd5b5b5b5b5b5b6000611f3830610da0565b905060006009548210159050808015611f5d5750600b60029054906101000a900460ff165b8015611f765750600560149054906101000a900460ff16155b8015611fcc5750601b60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156120225750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156120785750601960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156120bc576001600560146101000a81548160ff0219169083151502179055506120a06127f2565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806121725750601960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561217c57600090505b600081156123f557601b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156121df57506000601254115b156122ac5761220c60646121fe60125488612a6090919063ffffffff16565b612a7690919063ffffffff16565b90506012546014548261221f919061397a565b6122299190613a03565b6017600082825461223a9190613206565b9250508190555060125460155482612252919061397a565b61225c9190613a03565b6018600082825461226d9190613206565b9250508190555060125460135482612285919061397a565b61228f9190613a03565b601660008282546122a09190613206565b925050819055506123d1565b601b60008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561230757506000600e54115b156123d0576123346064612326600e5488612a6090919063ffffffff16565b612a7690919063ffffffff16565b9050600e5460105482612347919061397a565b6123519190613a03565b601760008282546123629190613206565b92505081905550600e546011548261237a919061397a565b6123849190613a03565b601860008282546123959190613206565b92505081905550600e54600f54826123ad919061397a565b6123b79190613a03565b601660008282546123c89190613206565b925050819055505b5b60008111156123e6576123e5873083612571565b5b80856123f29190613a34565b94505b612400878787612571565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156125e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d890613614565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612651576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612648906136a6565b60405180910390fd5b61265c838383612a8c565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156126e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d990613ada565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127759190613206565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516127d99190612f69565b60405180910390a36127ec848484612a91565b50505050565b60006127fd30610da0565b905060006018546016546017546128149190613206565b61281e9190613206565b90506000808314806128305750600082145b1561283d57505050612a5e565b601460095461284c919061397a565b831115612865576014600954612862919061397a565b92505b600060028360175486612878919061397a565b6128829190613a03565b61288c9190613a03565b905060006128a38286612a9690919063ffffffff16565b905060004790506128b382612aac565b60006128c88247612a9690919063ffffffff16565b905060006128f3876128e560165485612a6090919063ffffffff16565b612a7690919063ffffffff16565b9050600061291e8861291060185486612a6090919063ffffffff16565b612a7690919063ffffffff16565b9050600060178190555060006016819055506000601881905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168160405161297e90613b2b565b60006040518083038185875af1925050503d80600081146129bb576040519150601f19603f3d011682016040523d82523d6000602084013e6129c0565b606091505b505080975050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051612a0c90613b2b565b60006040518083038185875af1925050503d8060008114612a49576040519150601f19603f3d011682016040523d82523d6000602084013e612a4e565b606091505b5050809750505050505050505050505b565b60008183612a6e919061397a565b905092915050565b60008183612a849190613a03565b905092915050565b505050565b505050565b60008183612aa49190613a34565b905092915050565b6000600267ffffffffffffffff811115612ac957612ac8613b40565b5b604051908082528060200260200182016040528015612af75781602001602082028036833780820191505090505b5090503081600081518110612b0f57612b0e613b6f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612bb4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612bd89190613bb3565b81600181518110612bec57612beb613b6f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612c51307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846115a5565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612cb3959493929190613cd9565b600060405180830381600087803b158015612ccd57600080fd5b505af1158015612ce1573d6000803e3d6000fd5b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612d23578082015181840152602081019050612d08565b83811115612d32576000848401525b50505050565b6000601f19601f8301169050919050565b6000612d5482612ce9565b612d5e8185612cf4565b9350612d6e818560208601612d05565b612d7781612d38565b840191505092915050565b60006020820190508181036000830152612d9c8184612d49565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612dd482612da9565b9050919050565b612de481612dc9565b8114612def57600080fd5b50565b600081359050612e0181612ddb565b92915050565b6000819050919050565b612e1a81612e07565b8114612e2557600080fd5b50565b600081359050612e3781612e11565b92915050565b60008060408385031215612e5457612e53612da4565b5b6000612e6285828601612df2565b9250506020612e7385828601612e28565b9150509250929050565b60008115159050919050565b612e9281612e7d565b82525050565b6000602082019050612ead6000830184612e89565b92915050565b600060208284031215612ec957612ec8612da4565b5b6000612ed784828501612df2565b91505092915050565b6000819050919050565b6000612f05612f00612efb84612da9565b612ee0565b612da9565b9050919050565b6000612f1782612eea565b9050919050565b6000612f2982612f0c565b9050919050565b612f3981612f1e565b82525050565b6000602082019050612f546000830184612f30565b92915050565b612f6381612e07565b82525050565b6000602082019050612f7e6000830184612f5a565b92915050565b600080600060608486031215612f9d57612f9c612da4565b5b6000612fab86828701612df2565b9350506020612fbc86828701612df2565b9250506040612fcd86828701612e28565b9150509250925092565b612fe081612dc9565b82525050565b6000602082019050612ffb6000830184612fd7565b92915050565b600060ff82169050919050565b61301781613001565b82525050565b6000602082019050613032600083018461300e565b92915050565b61304181612e7d565b811461304c57600080fd5b50565b60008135905061305e81613038565b92915050565b6000806040838503121561307b5761307a612da4565b5b600061308985828601612df2565b925050602061309a8582860161304f565b9150509250929050565b600080604083850312156130bb576130ba612da4565b5b60006130c985828601612df2565b92505060206130da85828601612df2565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061312b57607f821691505b6020821081141561313f5761313e6130e4565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006131a1602883612cf4565b91506131ac82613145565b604082019050919050565b600060208201905081810360008301526131d081613194565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061321182612e07565b915061321c83612e07565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613251576132506131d7565b5b828201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613292602083612cf4565b915061329d8261325c565b602082019050919050565b600060208201905081810360008301526132c181613285565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613324603983612cf4565b915061332f826132c8565b604082019050919050565b6000602082019050818103600083015261335381613317565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006133b6602583612cf4565b91506133c18261335a565b604082019050919050565b600060208201905081810360008301526133e5816133a9565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613448602683612cf4565b9150613453826133ec565b604082019050919050565b600060208201905081810360008301526134778161343b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006134da602483612cf4565b91506134e58261347e565b604082019050919050565b60006020820190508181036000830152613509816134cd565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061356c602283612cf4565b915061357782613510565b604082019050919050565b6000602082019050818103600083015261359b8161355f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006135fe602583612cf4565b9150613609826135a2565b604082019050919050565b6000602082019050818103600083015261362d816135f1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613690602383612cf4565b915061369b82613634565b604082019050919050565b600060208201905081810360008301526136bf81613683565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b60006136fc601683612cf4565b9150613707826136c6565b602082019050919050565b6000602082019050818103600083015261372b816136ef565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b60006137b4604983612cf4565b91506137bf82613732565b606082019050919050565b600060208201905081810360008301526137e3816137a7565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613846603583612cf4565b9150613851826137ea565b604082019050919050565b6000602082019050818103600083015261387581613839565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b60006138b2601383612cf4565b91506138bd8261387c565b602082019050919050565b600060208201905081810360008301526138e1816138a5565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000613944603683612cf4565b915061394f826138e8565b604082019050919050565b6000602082019050818103600083015261397381613937565b9050919050565b600061398582612e07565b915061399083612e07565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156139c9576139c86131d7565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613a0e82612e07565b9150613a1983612e07565b925082613a2957613a286139d4565b5b828204905092915050565b6000613a3f82612e07565b9150613a4a83612e07565b925082821015613a5d57613a5c6131d7565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613ac4602683612cf4565b9150613acf82613a68565b604082019050919050565b60006020820190508181036000830152613af381613ab7565b9050919050565b600081905092915050565b50565b6000613b15600083613afa565b9150613b2082613b05565b600082019050919050565b6000613b3682613b08565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050613bad81612ddb565b92915050565b600060208284031215613bc957613bc8612da4565b5b6000613bd784828501613b9e565b91505092915050565b6000819050919050565b6000613c05613c00613bfb84613be0565b612ee0565b612e07565b9050919050565b613c1581613bea565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613c5081612dc9565b82525050565b6000613c628383613c47565b60208301905092915050565b6000602082019050919050565b6000613c8682613c1b565b613c908185613c26565b9350613c9b83613c37565b8060005b83811015613ccc578151613cb38882613c56565b9750613cbe83613c6e565b925050600181019050613c9f565b5085935050505092915050565b600060a082019050613cee6000830188612f5a565b613cfb6020830187613c0c565b8181036040830152613d0d8186613c7b565b9050613d1c6060830185612fd7565b613d296080830184612f5a565b969550505050505056fea2646970667358221220e354e9a7bf63e6107d59c712776357f66067494d8f5d6f9e14781a6bcc3a452864736f6c634300080a0033

Deployed Bytecode Sourcemap

31517:13537:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9273:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11440:169;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32858:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31592:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10393:108;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32642:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32602;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12091:492;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31695:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10235:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12992:215;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31650:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31972:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37619:126;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32457:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32051:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10564:127;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2835:103;;;;;;;;;;;;;:::i;:::-;;36744:167;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31787:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32350;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2184:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31824:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32492:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9492:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37111:304;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32424:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32682:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32568:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13710:413;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10904:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33079:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32012:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36921:182;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32268:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31857:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32316:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11142:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31899:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32387:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3093:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32530:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31939:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9273:100;9327:13;9360:5;9353:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9273:100;:::o;11440:169::-;11523:4;11540:39;11549:12;:10;:12::i;:::-;11563:7;11572:6;11540:8;:39::i;:::-;11597:4;11590:11;;11440:169;;;;:::o;32858:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;31592:51::-;;;:::o;10393:108::-;10454:7;10481:12;;10474:19;;10393:108;:::o;32642:33::-;;;;:::o;32602:::-;;;;:::o;12091:492::-;12231:4;12248:36;12258:6;12266:9;12277:6;12248:9;:36::i;:::-;12297:24;12324:11;:19;12336:6;12324:19;;;;;;;;;;;;;;;:33;12344:12;:10;:12::i;:::-;12324:33;;;;;;;;;;;;;;;;12297:60;;12396:6;12376:16;:26;;12368:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12483:57;12492:6;12500:12;:10;:12::i;:::-;12533:6;12514:16;:25;12483:8;:57::i;:::-;12571:4;12564:11;;;12091:492;;;;;:::o;31695:53::-;31741:6;31695:53;:::o;10235:93::-;10293:5;10318:2;10311:9;;10235:93;:::o;12992:215::-;13080:4;13097:80;13106:12;:10;:12::i;:::-;13120:7;13166:10;13129:11;:25;13141:12;:10;:12::i;:::-;13129:25;;;;;;;;;;;;;;;:34;13155:7;13129:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13097:8;:80::i;:::-;13195:4;13188:11;;12992:215;;;;:::o;31650:38::-;;;:::o;31972:33::-;;;;;;;;;;;;;:::o;37619:126::-;37685:4;37709:19;:28;37729:7;37709:28;;;;;;;;;;;;;;;;;;;;;;;;;37702:35;;37619:126;;;:::o;32457:28::-;;;;:::o;32051:30::-;;;;;;;;;;;;;:::o;10564:127::-;10638:7;10665:9;:18;10675:7;10665:18;;;;;;;;;;;;;;;;10658:25;;10564:127;;;:::o;2835:103::-;2415:12;:10;:12::i;:::-;2404:23;;:7;:5;:7::i;:::-;:23;;;2396:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2900:30:::1;2927:1;2900:18;:30::i;:::-;2835:103::o:0;36744:167::-;2415:12;:10;:12::i;:::-;2404:23;;:7;:5;:7::i;:::-;:23;;;2396:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36899:4:::1;36857:31;:39;36889:6;36857:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36744:167:::0;;:::o;31787:30::-;;;;;;;;;;;;;:::o;32350:::-;;;;:::o;2184:87::-;2230:7;2257:6;;;;;;;;;;;2250:13;;2184:87;:::o;31824:24::-;;;;;;;;;;;;;:::o;32492:31::-;;;;:::o;9492:104::-;9548:13;9581:7;9574:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9492:104;:::o;37111:304::-;2415:12;:10;:12::i;:::-;2404:23;;:7;:5;:7::i;:::-;:23;;;2396:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37255:13:::1;37247:21;;:4;:21;;;;37225:128;;;;;;;;;;;;:::i;:::-;;;;;;;;;37366:41;37395:4;37401:5;37366:28;:41::i;:::-;37111:304:::0;;:::o;32424:24::-;;;;:::o;32682:27::-;;;;:::o;32568:25::-;;;;:::o;13710:413::-;13803:4;13820:24;13847:11;:25;13859:12;:10;:12::i;:::-;13847:25;;;;;;;;;;;;;;;:34;13873:7;13847:34;;;;;;;;;;;;;;;;13820:61;;13920:15;13900:16;:35;;13892:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14013:67;14022:12;:10;:12::i;:::-;14036:7;14064:15;14045:16;:34;14013:8;:67::i;:::-;14111:4;14104:11;;;13710:413;;;;:::o;10904:175::-;10990:4;11007:42;11017:12;:10;:12::i;:::-;11031:9;11042:6;11007:9;:42::i;:::-;11067:4;11060:11;;10904:175;;;;:::o;33079:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;32012:32::-;;;;;;;;;;;;;:::o;36921:182::-;2415:12;:10;:12::i;:::-;2404:23;;:7;:5;:7::i;:::-;:23;;;2396:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37037:8:::1;37006:19;:28;37026:7;37006:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;37077:7;37061:34;;;37086:8;37061:34;;;;;;:::i;:::-;;;;;;;;36921:182:::0;;:::o;32268:39::-;;;;;;;;;;;;;:::o;31857:35::-;;;;:::o;32316:27::-;;;;:::o;11142:151::-;11231:7;11258:11;:18;11270:5;11258:18;;;;;;;;;;;;;;;:27;11277:7;11258:27;;;;;;;;;;;;;;;;11251:34;;11142:151;;;;:::o;31899:33::-;;;;:::o;32387:30::-;;;;:::o;3093:201::-;2415:12;:10;:12::i;:::-;2404:23;;:7;:5;:7::i;:::-;:23;;;2396:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3202:1:::1;3182:22;;:8;:22;;;;3174:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3258:28;3277:8;3258:18;:28::i;:::-;3093:201:::0;:::o;32530:31::-;;;;:::o;31939:24::-;;;;:::o;1051:98::-;1104:7;1131:10;1124:17;;1051:98;:::o;17394:380::-;17547:1;17530:19;;:5;:19;;;;17522:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17628:1;17609:21;;:7;:21;;;;17601:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17712:6;17682:11;:18;17694:5;17682:18;;;;;;;;;;;;;;;:27;17701:7;17682:27;;;;;;;;;;;;;;;:36;;;;17750:7;17734:32;;17743:5;17734:32;;;17759:6;17734:32;;;;;;:::i;:::-;;;;;;;;17394:380;;;:::o;37753:4805::-;37901:1;37885:18;;:4;:18;;;;37877:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37978:1;37964:16;;:2;:16;;;;37956:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;38047:1;38037:6;:11;38033:93;;;38065:28;38081:4;38087:2;38091:1;38065:15;:28::i;:::-;38108:7;;38033:93;38142:14;;;;;;;;;;;38138:2487;;;38203:7;:5;:7::i;:::-;38195:15;;:4;:15;;;;:49;;;;;38237:7;:5;:7::i;:::-;38231:13;;:2;:13;;;;38195:49;:86;;;;;38279:1;38265:16;;:2;:16;;;;38195:86;:128;;;;;38316:6;38302:21;;:2;:21;;;;38195:128;:158;;;;;38345:8;;;;;;;;;;;38344:9;38195:158;38173:2441;;;38393:13;;;;;;;;;;;38388:223;;38465:19;:25;38485:4;38465:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;38494:19;:23;38514:2;38494:23;;;;;;;;;;;;;;;;;;;;;;;;;38465:52;38431:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;38388:223;38767:20;;;;;;;;;;;38763:641;;;38848:7;:5;:7::i;:::-;38842:13;;:2;:13;;;;:72;;;;;38898:15;38884:30;;:2;:30;;;;38842:72;:129;;;;;38957:13;38943:28;;:2;:28;;;;38842:129;38812:573;;;39135:12;39060:28;:39;39089:9;39060:39;;;;;;;;;;;;;;;;:87;39022:258;;;;;;;;;;;;:::i;:::-;;;;;;;;;39349:12;39307:28;:39;39336:9;39307:39;;;;;;;;;;;;;;;:54;;;;38812:573;38763:641;39478:25;:31;39504:4;39478:31;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;39535:31;:35;39567:2;39535:35;;;;;;;;;;;;;;;;;;;;;;;;;39534:36;39478:92;39452:1147;;;39657:20;;39647:6;:30;;39613:169;;;;;;;;;;;;:::i;:::-;;;;;;;;;39865:9;;39848:13;39858:2;39848:9;:13::i;:::-;39839:6;:22;;;;:::i;:::-;:35;;39805:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;39452:1147;;;40043:25;:29;40069:2;40043:29;;;;;;;;;;;;;;;;;;;;;;;;;:92;;;;;40098:31;:37;40130:4;40098:37;;;;;;;;;;;;;;;;;;;;;;;;;40097:38;40043:92;40017:582;;;40222:20;;40212:6;:30;;40178:170;;;;;;;;;;;;:::i;:::-;;;;;;;;;40017:582;;;40379:31;:35;40411:2;40379:35;;;;;;;;;;;;;;;;;;;;;;;;;40374:225;;40499:9;;40482:13;40492:2;40482:9;:13::i;:::-;40473:6;:22;;;;:::i;:::-;:35;;40439:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;40374:225;40017:582;39452:1147;38173:2441;38138:2487;40637:28;40668:24;40686:4;40668:9;:24::i;:::-;40637:55;;40705:12;40744:18;;40720:20;:42;;40705:57;;40793:7;:35;;;;;40817:11;;;;;;;;;;;40793:35;:61;;;;;40846:8;;;;;;;;;;;40845:9;40793:61;:110;;;;;40872:25;:31;40898:4;40872:31;;;;;;;;;;;;;;;;;;;;;;;;;40871:32;40793:110;:153;;;;;40921:19;:25;40941:4;40921:25;;;;;;;;;;;;;;;;;;;;;;;;;40920:26;40793:153;:194;;;;;40964:19;:23;40984:2;40964:23;;;;;;;;;;;;;;;;;;;;;;;;;40963:24;40793:194;40775:326;;;41025:4;41014:8;;:15;;;;;;;;;;;;;;;;;;41046:10;:8;:10::i;:::-;41084:5;41073:8;;:16;;;;;;;;;;;;;;;;;;40775:326;41113:12;41129:8;;;;;;;;;;;41128:9;41113:24;;41239:19;:25;41259:4;41239:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;41268:19;:23;41288:2;41268:23;;;;;;;;;;;;;;;;;;;;;;;;;41239:52;41235:100;;;41318:5;41308:15;;41235:100;41347:12;41452:7;41448:1057;;;41504:25;:29;41530:2;41504:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;41553:1;41537:13;;:17;41504:50;41500:809;;;41623:34;41653:3;41623:25;41634:13;;41623:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;41616:41;;41726:13;;41706:16;;41699:4;:23;;;;:::i;:::-;41698:41;;;;:::i;:::-;41676:18;;:63;;;;;;;:::i;:::-;;;;;;;;41796:13;;41782:10;;41775:4;:17;;;;:::i;:::-;41774:35;;;;:::i;:::-;41758:12;;:51;;;;;;;:::i;:::-;;;;;;;;41878:13;;41858:16;;41851:4;:23;;;;:::i;:::-;41850:41;;;;:::i;:::-;41828:18;;:63;;;;;;;:::i;:::-;;;;;;;;41500:809;;;41953:25;:31;41979:4;41953:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;42003:1;41988:12;;:16;41953:51;41949:360;;;42032:33;42061:3;42032:24;42043:12;;42032:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;42025:40;;42133:12;;42114:15;;42107:4;:22;;;;:::i;:::-;42106:39;;;;:::i;:::-;42084:18;;:61;;;;;;;:::i;:::-;;;;;;;;42201:12;;42188:9;;42181:4;:16;;;;:::i;:::-;42180:33;;;;:::i;:::-;42164:12;;:49;;;;;;;:::i;:::-;;;;;;;;42281:12;;42262:15;;42255:4;:22;;;;:::i;:::-;42254:39;;;;:::i;:::-;42232:18;;:61;;;;;;;:::i;:::-;;;;;;;;41949:360;41500:809;42383:1;42376:4;:8;42372:91;;;42405:42;42421:4;42435;42442;42405:15;:42::i;:::-;42372:91;42489:4;42479:14;;;;;:::i;:::-;;;41448:1057;42517:33;42533:4;42539:2;42543:6;42517:15;:33::i;:::-;37866:4692;;;;37753:4805;;;;:::o;3454:191::-;3528:16;3547:6;;;;;;;;;;;3528:25;;3573:8;3564:6;;:17;;;;;;;;;;;;;;;;;;3628:8;3597:40;;3618:8;3597:40;;;;;;;;;;;;3517:128;3454:191;:::o;37423:188::-;37540:5;37506:25;:31;37532:4;37506:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;37597:5;37563:40;;37591:4;37563:40;;;;;;;;;;;;37423:188;;:::o;14613:733::-;14771:1;14753:20;;:6;:20;;;;14745:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14855:1;14834:23;;:9;:23;;;;14826:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14910:47;14931:6;14939:9;14950:6;14910:20;:47::i;:::-;14970:21;14994:9;:17;15004:6;14994:17;;;;;;;;;;;;;;;;14970:41;;15047:6;15030:13;:23;;15022:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15168:6;15152:13;:22;15132:9;:17;15142:6;15132:17;;;;;;;;;;;;;;;:42;;;;15220:6;15196:9;:20;15206:9;15196:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15261:9;15244:35;;15253:6;15244:35;;;15272:6;15244:35;;;;;;:::i;:::-;;;;;;;;15292:46;15312:6;15320:9;15331:6;15292:19;:46::i;:::-;14734:612;14613:733;;;:::o;43686:1363::-;43725:23;43751:24;43769:4;43751:9;:24::i;:::-;43725:50;;43786:25;43856:12;;43835:18;;43814;;:39;;;;:::i;:::-;:54;;;;:::i;:::-;43786:82;;43879:12;43927:1;43908:15;:20;:46;;;;43953:1;43932:17;:22;43908:46;43904:85;;;43971:7;;;;;43904:85;44044:2;44023:18;;:23;;;;:::i;:::-;44005:15;:41;44001:115;;;44102:2;44081:18;;:23;;;;:::i;:::-;44063:41;;44001:115;44177:23;44264:1;44244:17;44222:18;;44204:15;:36;;;;:::i;:::-;44203:58;;;;:::i;:::-;:62;;;;:::i;:::-;44177:88;;44276:26;44305:36;44325:15;44305;:19;;:36;;;;:::i;:::-;44276:65;;44354:25;44382:21;44354:49;;44416:36;44433:18;44416:16;:36::i;:::-;44465:18;44486:44;44512:17;44486:21;:25;;:44;;;;:::i;:::-;44465:65;;44543:23;44569:57;44608:17;44569:34;44584:18;;44569:10;:14;;:34;;;;:::i;:::-;:38;;:57;;;;:::i;:::-;44543:83;;44637:17;44657:51;44690:17;44657:28;44672:12;;44657:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;44637:71;;44824:1;44803:18;:22;;;;44857:1;44836:18;:22;;;;44884:1;44869:12;:16;;;;44920:9;;;;;;;;;;;44912:23;;44943:9;44912:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44898:59;;;;;44990:15;;;;;;;;;;;44982:29;;45019:15;44982:57;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44968:71;;;;;43714:1335;;;;;;;;;43686:1363;:::o;22847:98::-;22905:7;22936:1;22932;:5;;;;:::i;:::-;22925:12;;22847:98;;;;:::o;23246:::-;23304:7;23335:1;23331;:5;;;;:::i;:::-;23324:12;;23246:98;;;;:::o;18374:125::-;;;;:::o;19103:124::-;;;;:::o;22490:98::-;22548:7;22579:1;22575;:5;;;;:::i;:::-;22568:12;;22490:98;;;;:::o;42566:589::-;42692:21;42730:1;42716:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42692:40;;42761:4;42743;42748:1;42743:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;42787:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;42777:4;42782:1;42777:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;42822:62;42839:4;42854:15;42872:11;42822:8;:62::i;:::-;42923:15;:66;;;43004:11;43030:1;43074:4;43101;43121:15;42923:224;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42621:534;42566:589;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:307::-;355:1;365:113;379:6;376:1;373:13;365:113;;;464:1;459:3;455:11;449:18;445:1;440:3;436:11;429:39;401:2;398:1;394:10;389:15;;365:113;;;496:6;493:1;490:13;487:101;;;576:1;567:6;562:3;558:16;551:27;487:101;336:258;287:307;;;:::o;600:102::-;641:6;692:2;688:7;683:2;676:5;672:14;668:28;658:38;;600:102;;;:::o;708:364::-;796:3;824:39;857:5;824:39;:::i;:::-;879:71;943:6;938:3;879:71;:::i;:::-;872:78;;959:52;1004:6;999:3;992:4;985:5;981:16;959:52;:::i;:::-;1036:29;1058:6;1036:29;:::i;:::-;1031:3;1027:39;1020:46;;800:272;708:364;;;;:::o;1078:313::-;1191:4;1229:2;1218:9;1214:18;1206:26;;1278:9;1272:4;1268:20;1264:1;1253:9;1249:17;1242:47;1306:78;1379:4;1370:6;1306:78;:::i;:::-;1298:86;;1078:313;;;;:::o;1478:117::-;1587:1;1584;1577:12;1724:126;1761:7;1801:42;1794:5;1790:54;1779:65;;1724:126;;;:::o;1856:96::-;1893:7;1922:24;1940:5;1922:24;:::i;:::-;1911:35;;1856:96;;;:::o;1958:122::-;2031:24;2049:5;2031:24;:::i;:::-;2024:5;2021:35;2011:63;;2070:1;2067;2060:12;2011:63;1958:122;:::o;2086:139::-;2132:5;2170:6;2157:20;2148:29;;2186:33;2213:5;2186:33;:::i;:::-;2086:139;;;;:::o;2231:77::-;2268:7;2297:5;2286:16;;2231:77;;;:::o;2314:122::-;2387:24;2405:5;2387:24;:::i;:::-;2380:5;2377:35;2367:63;;2426:1;2423;2416:12;2367:63;2314:122;:::o;2442:139::-;2488:5;2526:6;2513:20;2504:29;;2542:33;2569:5;2542:33;:::i;:::-;2442:139;;;;:::o;2587:474::-;2655:6;2663;2712:2;2700:9;2691:7;2687:23;2683:32;2680:119;;;2718:79;;:::i;:::-;2680:119;2838:1;2863:53;2908:7;2899:6;2888:9;2884:22;2863:53;:::i;:::-;2853:63;;2809:117;2965:2;2991:53;3036:7;3027:6;3016:9;3012:22;2991:53;:::i;:::-;2981:63;;2936:118;2587:474;;;;;:::o;3067:90::-;3101:7;3144:5;3137:13;3130:21;3119:32;;3067:90;;;:::o;3163:109::-;3244:21;3259:5;3244:21;:::i;:::-;3239:3;3232:34;3163:109;;:::o;3278:210::-;3365:4;3403:2;3392:9;3388:18;3380:26;;3416:65;3478:1;3467:9;3463:17;3454:6;3416:65;:::i;:::-;3278:210;;;;:::o;3494:329::-;3553:6;3602:2;3590:9;3581:7;3577:23;3573:32;3570:119;;;3608:79;;:::i;:::-;3570:119;3728:1;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3699:117;3494:329;;;;:::o;3829:60::-;3857:3;3878:5;3871:12;;3829:60;;;:::o;3895:142::-;3945:9;3978:53;3996:34;4005:24;4023:5;4005:24;:::i;:::-;3996:34;:::i;:::-;3978:53;:::i;:::-;3965:66;;3895:142;;;:::o;4043:126::-;4093:9;4126:37;4157:5;4126:37;:::i;:::-;4113:50;;4043:126;;;:::o;4175:153::-;4252:9;4285:37;4316:5;4285:37;:::i;:::-;4272:50;;4175:153;;;:::o;4334:185::-;4448:64;4506:5;4448:64;:::i;:::-;4443:3;4436:77;4334:185;;:::o;4525:276::-;4645:4;4683:2;4672:9;4668:18;4660:26;;4696:98;4791:1;4780:9;4776:17;4767:6;4696:98;:::i;:::-;4525:276;;;;:::o;4807:118::-;4894:24;4912:5;4894:24;:::i;:::-;4889:3;4882:37;4807:118;;:::o;4931:222::-;5024:4;5062:2;5051:9;5047:18;5039:26;;5075:71;5143:1;5132:9;5128:17;5119:6;5075:71;:::i;:::-;4931:222;;;;:::o;5159:619::-;5236:6;5244;5252;5301:2;5289:9;5280:7;5276:23;5272:32;5269:119;;;5307:79;;:::i;:::-;5269:119;5427:1;5452:53;5497:7;5488:6;5477:9;5473:22;5452:53;:::i;:::-;5442:63;;5398:117;5554:2;5580:53;5625:7;5616:6;5605:9;5601:22;5580:53;:::i;:::-;5570:63;;5525:118;5682:2;5708:53;5753:7;5744:6;5733:9;5729:22;5708:53;:::i;:::-;5698:63;;5653:118;5159:619;;;;;:::o;5784:118::-;5871:24;5889:5;5871:24;:::i;:::-;5866:3;5859:37;5784:118;;:::o;5908:222::-;6001:4;6039:2;6028:9;6024:18;6016:26;;6052:71;6120:1;6109:9;6105:17;6096:6;6052:71;:::i;:::-;5908:222;;;;:::o;6136:86::-;6171:7;6211:4;6204:5;6200:16;6189:27;;6136:86;;;:::o;6228:112::-;6311:22;6327:5;6311:22;:::i;:::-;6306:3;6299:35;6228:112;;:::o;6346:214::-;6435:4;6473:2;6462:9;6458:18;6450:26;;6486:67;6550:1;6539:9;6535:17;6526:6;6486:67;:::i;:::-;6346:214;;;;:::o;6566:116::-;6636:21;6651:5;6636:21;:::i;:::-;6629:5;6626:32;6616:60;;6672:1;6669;6662:12;6616:60;6566:116;:::o;6688:133::-;6731:5;6769:6;6756:20;6747:29;;6785:30;6809:5;6785:30;:::i;:::-;6688:133;;;;:::o;6827:468::-;6892:6;6900;6949:2;6937:9;6928:7;6924:23;6920:32;6917:119;;;6955:79;;:::i;:::-;6917:119;7075:1;7100:53;7145:7;7136:6;7125:9;7121:22;7100:53;:::i;:::-;7090:63;;7046:117;7202:2;7228:50;7270:7;7261:6;7250:9;7246:22;7228:50;:::i;:::-;7218:60;;7173:115;6827:468;;;;;:::o;7301:474::-;7369:6;7377;7426:2;7414:9;7405:7;7401:23;7397:32;7394:119;;;7432:79;;:::i;:::-;7394:119;7552:1;7577:53;7622:7;7613:6;7602:9;7598:22;7577:53;:::i;:::-;7567:63;;7523:117;7679:2;7705:53;7750:7;7741:6;7730:9;7726:22;7705:53;:::i;:::-;7695:63;;7650:118;7301:474;;;;;:::o;7781:180::-;7829:77;7826:1;7819:88;7926:4;7923:1;7916:15;7950:4;7947:1;7940:15;7967:320;8011:6;8048:1;8042:4;8038:12;8028:22;;8095:1;8089:4;8085:12;8116:18;8106:81;;8172:4;8164:6;8160:17;8150:27;;8106:81;8234:2;8226:6;8223:14;8203:18;8200:38;8197:84;;;8253:18;;:::i;:::-;8197:84;8018:269;7967:320;;;:::o;8293:227::-;8433:34;8429:1;8421:6;8417:14;8410:58;8502:10;8497:2;8489:6;8485:15;8478:35;8293:227;:::o;8526:366::-;8668:3;8689:67;8753:2;8748:3;8689:67;:::i;:::-;8682:74;;8765:93;8854:3;8765:93;:::i;:::-;8883:2;8878:3;8874:12;8867:19;;8526:366;;;:::o;8898:419::-;9064:4;9102:2;9091:9;9087:18;9079:26;;9151:9;9145:4;9141:20;9137:1;9126:9;9122:17;9115:47;9179:131;9305:4;9179:131;:::i;:::-;9171:139;;8898:419;;;:::o;9323:180::-;9371:77;9368:1;9361:88;9468:4;9465:1;9458:15;9492:4;9489:1;9482:15;9509:305;9549:3;9568:20;9586:1;9568:20;:::i;:::-;9563:25;;9602:20;9620:1;9602:20;:::i;:::-;9597:25;;9756:1;9688:66;9684:74;9681:1;9678:81;9675:107;;;9762:18;;:::i;:::-;9675:107;9806:1;9803;9799:9;9792:16;;9509:305;;;;:::o;9820:182::-;9960:34;9956:1;9948:6;9944:14;9937:58;9820:182;:::o;10008:366::-;10150:3;10171:67;10235:2;10230:3;10171:67;:::i;:::-;10164:74;;10247:93;10336:3;10247:93;:::i;:::-;10365:2;10360:3;10356:12;10349:19;;10008:366;;;:::o;10380:419::-;10546:4;10584:2;10573:9;10569:18;10561:26;;10633:9;10627:4;10623:20;10619:1;10608:9;10604:17;10597:47;10661:131;10787:4;10661:131;:::i;:::-;10653:139;;10380:419;;;:::o;10805:244::-;10945:34;10941:1;10933:6;10929:14;10922:58;11014:27;11009:2;11001:6;10997:15;10990:52;10805:244;:::o;11055:366::-;11197:3;11218:67;11282:2;11277:3;11218:67;:::i;:::-;11211:74;;11294:93;11383:3;11294:93;:::i;:::-;11412:2;11407:3;11403:12;11396:19;;11055:366;;;:::o;11427:419::-;11593:4;11631:2;11620:9;11616:18;11608:26;;11680:9;11674:4;11670:20;11666:1;11655:9;11651:17;11644:47;11708:131;11834:4;11708:131;:::i;:::-;11700:139;;11427:419;;;:::o;11852:224::-;11992:34;11988:1;11980:6;11976:14;11969:58;12061:7;12056:2;12048:6;12044:15;12037:32;11852:224;:::o;12082:366::-;12224:3;12245:67;12309:2;12304:3;12245:67;:::i;:::-;12238:74;;12321:93;12410:3;12321:93;:::i;:::-;12439:2;12434:3;12430:12;12423:19;;12082:366;;;:::o;12454:419::-;12620:4;12658:2;12647:9;12643:18;12635:26;;12707:9;12701:4;12697:20;12693:1;12682:9;12678:17;12671:47;12735:131;12861:4;12735:131;:::i;:::-;12727:139;;12454:419;;;:::o;12879:225::-;13019:34;13015:1;13007:6;13003:14;12996:58;13088:8;13083:2;13075:6;13071:15;13064:33;12879:225;:::o;13110:366::-;13252:3;13273:67;13337:2;13332:3;13273:67;:::i;:::-;13266:74;;13349:93;13438:3;13349:93;:::i;:::-;13467:2;13462:3;13458:12;13451:19;;13110:366;;;:::o;13482:419::-;13648:4;13686:2;13675:9;13671:18;13663:26;;13735:9;13729:4;13725:20;13721:1;13710:9;13706:17;13699:47;13763:131;13889:4;13763:131;:::i;:::-;13755:139;;13482:419;;;:::o;13907:223::-;14047:34;14043:1;14035:6;14031:14;14024:58;14116:6;14111:2;14103:6;14099:15;14092:31;13907:223;:::o;14136:366::-;14278:3;14299:67;14363:2;14358:3;14299:67;:::i;:::-;14292:74;;14375:93;14464:3;14375:93;:::i;:::-;14493:2;14488:3;14484:12;14477:19;;14136:366;;;:::o;14508:419::-;14674:4;14712:2;14701:9;14697:18;14689:26;;14761:9;14755:4;14751:20;14747:1;14736:9;14732:17;14725:47;14789:131;14915:4;14789:131;:::i;:::-;14781:139;;14508:419;;;:::o;14933:221::-;15073:34;15069:1;15061:6;15057:14;15050:58;15142:4;15137:2;15129:6;15125:15;15118:29;14933:221;:::o;15160:366::-;15302:3;15323:67;15387:2;15382:3;15323:67;:::i;:::-;15316:74;;15399:93;15488:3;15399:93;:::i;:::-;15517:2;15512:3;15508:12;15501:19;;15160:366;;;:::o;15532:419::-;15698:4;15736:2;15725:9;15721:18;15713:26;;15785:9;15779:4;15775:20;15771:1;15760:9;15756:17;15749:47;15813:131;15939:4;15813:131;:::i;:::-;15805:139;;15532:419;;;:::o;15957:224::-;16097:34;16093:1;16085:6;16081:14;16074:58;16166:7;16161:2;16153:6;16149:15;16142:32;15957:224;:::o;16187:366::-;16329:3;16350:67;16414:2;16409:3;16350:67;:::i;:::-;16343:74;;16426:93;16515:3;16426:93;:::i;:::-;16544:2;16539:3;16535:12;16528:19;;16187:366;;;:::o;16559:419::-;16725:4;16763:2;16752:9;16748:18;16740:26;;16812:9;16806:4;16802:20;16798:1;16787:9;16783:17;16776:47;16840:131;16966:4;16840:131;:::i;:::-;16832:139;;16559:419;;;:::o;16984:222::-;17124:34;17120:1;17112:6;17108:14;17101:58;17193:5;17188:2;17180:6;17176:15;17169:30;16984:222;:::o;17212:366::-;17354:3;17375:67;17439:2;17434:3;17375:67;:::i;:::-;17368:74;;17451:93;17540:3;17451:93;:::i;:::-;17569:2;17564:3;17560:12;17553:19;;17212:366;;;:::o;17584:419::-;17750:4;17788:2;17777:9;17773:18;17765:26;;17837:9;17831:4;17827:20;17823:1;17812:9;17808:17;17801:47;17865:131;17991:4;17865:131;:::i;:::-;17857:139;;17584:419;;;:::o;18009:172::-;18149:24;18145:1;18137:6;18133:14;18126:48;18009:172;:::o;18187:366::-;18329:3;18350:67;18414:2;18409:3;18350:67;:::i;:::-;18343:74;;18426:93;18515:3;18426:93;:::i;:::-;18544:2;18539:3;18535:12;18528:19;;18187:366;;;:::o;18559:419::-;18725:4;18763:2;18752:9;18748:18;18740:26;;18812:9;18806:4;18802:20;18798:1;18787:9;18783:17;18776:47;18840:131;18966:4;18840:131;:::i;:::-;18832:139;;18559:419;;;:::o;18984:297::-;19124:34;19120:1;19112:6;19108:14;19101:58;19193:34;19188:2;19180:6;19176:15;19169:59;19262:11;19257:2;19249:6;19245:15;19238:36;18984:297;:::o;19287:366::-;19429:3;19450:67;19514:2;19509:3;19450:67;:::i;:::-;19443:74;;19526:93;19615:3;19526:93;:::i;:::-;19644:2;19639:3;19635:12;19628:19;;19287:366;;;:::o;19659:419::-;19825:4;19863:2;19852:9;19848:18;19840:26;;19912:9;19906:4;19902:20;19898:1;19887:9;19883:17;19876:47;19940:131;20066:4;19940:131;:::i;:::-;19932:139;;19659:419;;;:::o;20084:240::-;20224:34;20220:1;20212:6;20208:14;20201:58;20293:23;20288:2;20280:6;20276:15;20269:48;20084:240;:::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:169::-;21267:21;21263:1;21255:6;21251:14;21244:45;21127:169;:::o;21302:366::-;21444:3;21465:67;21529:2;21524:3;21465:67;:::i;:::-;21458:74;;21541:93;21630:3;21541:93;:::i;:::-;21659:2;21654:3;21650:12;21643:19;;21302:366;;;:::o;21674:419::-;21840:4;21878:2;21867:9;21863:18;21855:26;;21927:9;21921:4;21917:20;21913:1;21902:9;21898:17;21891:47;21955:131;22081:4;21955:131;:::i;:::-;21947:139;;21674:419;;;:::o;22099:241::-;22239:34;22235:1;22227:6;22223:14;22216:58;22308:24;22303:2;22295:6;22291:15;22284:49;22099:241;:::o;22346:366::-;22488:3;22509:67;22573:2;22568:3;22509:67;:::i;:::-;22502:74;;22585:93;22674:3;22585:93;:::i;:::-;22703:2;22698:3;22694:12;22687:19;;22346:366;;;:::o;22718:419::-;22884:4;22922:2;22911:9;22907:18;22899:26;;22971:9;22965:4;22961:20;22957:1;22946:9;22942:17;22935:47;22999:131;23125:4;22999:131;:::i;:::-;22991:139;;22718:419;;;:::o;23143:348::-;23183:7;23206:20;23224:1;23206:20;:::i;:::-;23201:25;;23240:20;23258:1;23240:20;:::i;:::-;23235:25;;23428:1;23360:66;23356:74;23353:1;23350:81;23345:1;23338:9;23331:17;23327:105;23324:131;;;23435:18;;:::i;:::-;23324:131;23483:1;23480;23476:9;23465:20;;23143:348;;;;:::o;23497:180::-;23545:77;23542:1;23535:88;23642:4;23639:1;23632:15;23666:4;23663:1;23656:15;23683:185;23723:1;23740:20;23758:1;23740:20;:::i;:::-;23735:25;;23774:20;23792:1;23774:20;:::i;:::-;23769:25;;23813:1;23803:35;;23818:18;;:::i;:::-;23803:35;23860:1;23857;23853:9;23848:14;;23683:185;;;;:::o;23874:191::-;23914:4;23934:20;23952:1;23934:20;:::i;:::-;23929:25;;23968:20;23986:1;23968:20;:::i;:::-;23963:25;;24007:1;24004;24001:8;23998:34;;;24012:18;;:::i;:::-;23998:34;24057:1;24054;24050:9;24042:17;;23874:191;;;;:::o;24071:225::-;24211:34;24207:1;24199:6;24195:14;24188:58;24280:8;24275:2;24267:6;24263:15;24256:33;24071:225;:::o;24302:366::-;24444:3;24465:67;24529:2;24524:3;24465:67;:::i;:::-;24458:74;;24541:93;24630:3;24541:93;:::i;:::-;24659:2;24654:3;24650:12;24643:19;;24302:366;;;:::o;24674:419::-;24840:4;24878:2;24867:9;24863:18;24855:26;;24927:9;24921:4;24917:20;24913:1;24902:9;24898:17;24891:47;24955:131;25081:4;24955:131;:::i;:::-;24947:139;;24674:419;;;:::o;25099:147::-;25200:11;25237:3;25222:18;;25099:147;;;;:::o;25252:114::-;;:::o;25372:398::-;25531:3;25552:83;25633:1;25628:3;25552:83;:::i;:::-;25545:90;;25644:93;25733:3;25644:93;:::i;:::-;25762:1;25757:3;25753:11;25746:18;;25372:398;;;:::o;25776:379::-;25960:3;25982:147;26125:3;25982:147;:::i;:::-;25975:154;;26146:3;26139:10;;25776:379;;;:::o;26161:180::-;26209:77;26206:1;26199:88;26306:4;26303:1;26296:15;26330:4;26327:1;26320:15;26347:180;26395:77;26392:1;26385:88;26492:4;26489:1;26482:15;26516:4;26513:1;26506:15;26533:143;26590:5;26621:6;26615:13;26606:22;;26637:33;26664:5;26637:33;:::i;:::-;26533:143;;;;:::o;26682:351::-;26752:6;26801:2;26789:9;26780:7;26776:23;26772:32;26769:119;;;26807:79;;:::i;:::-;26769:119;26927:1;26952:64;27008:7;26999:6;26988:9;26984:22;26952:64;:::i;:::-;26942:74;;26898:128;26682:351;;;;:::o;27039:85::-;27084:7;27113:5;27102:16;;27039:85;;;:::o;27130:158::-;27188:9;27221:61;27239:42;27248:32;27274:5;27248:32;:::i;:::-;27239:42;:::i;:::-;27221:61;:::i;:::-;27208:74;;27130:158;;;:::o;27294:147::-;27389:45;27428:5;27389:45;:::i;:::-;27384:3;27377:58;27294:147;;:::o;27447:114::-;27514:6;27548:5;27542:12;27532:22;;27447:114;;;:::o;27567:184::-;27666:11;27700:6;27695:3;27688:19;27740:4;27735:3;27731:14;27716:29;;27567:184;;;;:::o;27757:132::-;27824:4;27847:3;27839:11;;27877:4;27872:3;27868:14;27860:22;;27757:132;;;:::o;27895:108::-;27972:24;27990:5;27972:24;:::i;:::-;27967:3;27960:37;27895:108;;:::o;28009:179::-;28078:10;28099:46;28141:3;28133:6;28099:46;:::i;:::-;28177:4;28172:3;28168:14;28154:28;;28009:179;;;;:::o;28194:113::-;28264:4;28296;28291:3;28287:14;28279:22;;28194:113;;;:::o;28343:732::-;28462:3;28491:54;28539:5;28491:54;:::i;:::-;28561:86;28640:6;28635:3;28561:86;:::i;:::-;28554:93;;28671:56;28721:5;28671:56;:::i;:::-;28750:7;28781:1;28766:284;28791:6;28788:1;28785:13;28766:284;;;28867:6;28861:13;28894:63;28953:3;28938:13;28894:63;:::i;:::-;28887:70;;28980:60;29033:6;28980:60;:::i;:::-;28970:70;;28826:224;28813:1;28810;28806:9;28801:14;;28766:284;;;28770:14;29066:3;29059:10;;28467:608;;;28343:732;;;;:::o;29081:831::-;29344:4;29382:3;29371:9;29367:19;29359:27;;29396:71;29464:1;29453:9;29449:17;29440:6;29396:71;:::i;:::-;29477:80;29553:2;29542:9;29538:18;29529:6;29477:80;:::i;:::-;29604:9;29598:4;29594:20;29589:2;29578:9;29574:18;29567:48;29632:108;29735:4;29726:6;29632:108;:::i;:::-;29624:116;;29750:72;29818:2;29807:9;29803:18;29794:6;29750:72;:::i;:::-;29832:73;29900:3;29889:9;29885:19;29876:6;29832:73;:::i;:::-;29081:831;;;;;;;;:::o

Swarm Source

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