ETH Price: $3,385.90 (-1.43%)
Gas: 3 Gwei

Token

Legends Of The Metaverse (LOTM)
 

Overview

Max Total Supply

1,095 LOTM

Holders

537

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
393938.eth
Balance
2 LOTM
0x8113C447daBDDD03BC693996e5325CB84c8Edc78
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:
LOTM

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 14 of 18: LOTM.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./ERC721Enumerable.sol";
import "./ERC721Burnable.sol";
import "./Ownable.sol";
import "./SafeMath.sol";
import "./Counters.sol";
import "./ERC721Pausable.sol";

contract LOTM is ERC721Enumerable, Ownable, ERC721Burnable, ERC721Pausable {
    using SafeMath for uint256;
    using Counters for Counters.Counter;
    Counters.Counter private _tokenIdTracker;

    uint256 public constant MAX_NFT = 5555;
    uint256 public constant PRICE = 5 * 10**16;
    uint256 public constant MAX_BY_MINT = 2;
	
    address public creatorAddress;
    string public baseTokenURI;
	
    event CreateLegends(uint256 indexed id);
	
    constructor(string memory baseURI, address payable creator) ERC721("Legends Of The Metaverse", "LOTM") {
        setBaseURI(baseURI);
		creatorAddress = creator;
        pause(true);
    }
	
    modifier saleIsOpen {
        require(_totalSupply() <= MAX_NFT, "Sale end");
        if (_msgSender() != owner() && !isWhiteListed[_msgSender()]) {
            require(!paused(), "Pausable: paused");
        }
        _;
    }
	
    function _totalSupply() internal view returns (uint) {
        return _tokenIdTracker.current();
    }
	
    function totalMint() public view returns (uint256) {
        return _totalSupply();
    }
	
    function mint(address _to, uint256 _count) public payable saleIsOpen {
        uint256 total = _totalSupply();
		uint256 tokenCount = balanceOf(_to);
        require(total + _count <= MAX_NFT, "Max limit");
        require(total <= MAX_NFT, "Sale end");
        require(_count <= MAX_BY_MINT, "Exceeds number");
		require(tokenCount + _count <= MAX_BY_MINT, "Max limit per address");
        require(msg.value >= price(_count), "Value below price");
        for (uint256 i = 0; i < _count; i++) {
            _mintAnElement(_to);
        }
    }

	function __mint(address _to, uint256 _count) public saleIsOpen onlyOwner{
        uint256 total = _totalSupply();
        require(total <= MAX_NFT, "Sale end");
        for (uint256 i = 0; i < _count; i++) {
            _mintAnElement(_to);
        }
    }
	
    function _mintAnElement(address _to) private {
        uint id = _totalSupply();
        _tokenIdTracker.increment();
        _safeMint(_to, id);
        emit CreateLegends(id);
    }
	
    function price(uint256 _count) public pure returns (uint256) {
        return PRICE.mul(_count);
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenURI;
    }

    function setCreatorAddress(address payable creator) public onlyOwner {
        creatorAddress = creator;
    }
	
	function setBaseURI(string memory baseURI) public onlyOwner {
        baseTokenURI = baseURI;
    }

    function walletOfOwner(address _owner) external view returns (uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);
        uint256[] memory tokensId = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }

    function pause(bool val) public onlyOwner {
        if (val == true) {
            _pause();
            return;
        }
        _unpause();
    }

    function withdrawAll() public onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0);
        _widthdraw(creatorAddress, address(this).balance);
    }

    function _widthdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{value: _amount}("");
        require(success, "Transfer failed.");
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override(ERC721, ERC721Enumerable, ERC721Pausable) {
        super._beforeTokenTransfer(from, to, tokenId);
    }

    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC721Enumerable) returns (bool) {
        return super.supportsInterface(interfaceId);
    }

    
}

File 1 of 18: Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 2 of 18: Context.sol
// SPDX-License-Identifier: MIT

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

File 3 of 18: Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 4 of 18: ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 5 of 18: ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` 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 tokenId
    ) internal virtual {}
}

File 6 of 18: ERC721Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./Context.sol";

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

File 7 of 18: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

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

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 8 of 18: ERC721Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./Pausable.sol";
import "./Ownable.sol";

/**
 * @dev ERC721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC721Pausable is ERC721, Ownable, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
	 
	event AddToWhiteList(address _address);
    event RemovedFromWhiteList(address _address);
	event WhiteListMultipleAddress(address[] accounts);
    event RemoveWhiteListedMultipleAddress(address[] accounts);
	mapping (address => bool) public isWhiteListed;
	
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);
        if (_msgSender() != owner() && !isWhiteListed[_msgSender()]) {
            require(!paused(), "ERC721Pausable: token transfer while paused");
        }
    }
	
	function getWhiteListStatus(address _address) public view returns (bool) {
        return isWhiteListed[_address];
	}
	
	function whiteListAddress(address _address) public onlyOwner{
	   isWhiteListed[_address] = true;
	   emit AddToWhiteList(_address);
    }
	
	function removeWhiteListedAddress (address _address) public onlyOwner{
	   isWhiteListed[_address] = false;
	   emit RemovedFromWhiteList(_address);
	}
	
	function whiteListMultipleAddress(address[] calldata accounts) public onlyOwner {
        for(uint256 i = 0; i < accounts.length; i++){
			isWhiteListed[accounts[i]] = true;
        }
        emit WhiteListMultipleAddress(accounts);
    }
	
	function removeWhiteListedMultipleAddress(address[] calldata accounts) public onlyOwner {
        for(uint256 i = 0; i < accounts.length; i++){
			isWhiteListed[accounts[i]] = false;
        }
		emit RemoveWhiteListedMultipleAddress(accounts);
    }
}

File 9 of 18: IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 10 of 18: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

File 11 of 18: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 12 of 18: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 13 of 18: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 15 of 18: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 16 of 18: Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 17 of 18: SafeMath.sol
// SPDX-License-Identifier: MIT

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 no longer needed starting with Solidity 0.8. 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;
        }
    }
}

File 18 of 18: Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"address payable","name":"creator","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_address","type":"address"}],"name":"AddToWhiteList","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"CreateLegends","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"RemoveWhiteListedMultipleAddress","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_address","type":"address"}],"name":"RemovedFromWhiteList","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"WhiteListMultipleAddress","type":"event"},{"inputs":[],"name":"MAX_BY_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"__mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"creatorAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"getWhiteListStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isWhiteListed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeWhiteListedAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"removeWhiteListedMultipleAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"creator","type":"address"}],"name":"setCreatorAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"whiteListAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"whiteListMultipleAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162005fb438038062005fb48339818101604052810190620000379190620006a7565b6040518060400160405280601881526020017f4c6567656e6473204f6620546865204d657461766572736500000000000000008152506040518060400160405280600481526020017f4c4f544d000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000bb9291906200056e565b508060019080519060200190620000d49291906200056e565b505050620000f7620000eb6200017e60201b60201c565b6200018660201b60201c565b6000600a60146101000a81548160ff02191690831515021790555062000123826200024c60201b60201c565b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620001766001620002f760201b60201c565b5050620009ff565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200025c6200017e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000282620003be60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002db576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002d29062000839565b60405180910390fd5b80600e9080519060200190620002f39291906200056e565b5050565b620003076200017e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200032d620003be60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000386576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200037d9062000839565b60405180910390fd5b600115158115151415620003aa57620003a4620003e860201b60201c565b620003bb565b620003ba620004a060201b60201c565b5b50565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620003f86200055760201b60201c565b156200043b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004329062000817565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620004876200017e60201b60201c565b604051620004969190620007d8565b60405180910390a1565b620004b06200055760201b60201c565b620004f2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004e990620007f5565b60405180910390fd5b6000600a60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6200053e6200017e60201b60201c565b6040516200054d9190620007d8565b60405180910390a1565b6000600a60149054906101000a900460ff16905090565b8280546200057c9062000951565b90600052602060002090601f016020900481019282620005a05760008555620005ec565b82601f10620005bb57805160ff1916838001178555620005ec565b82800160010185558215620005ec579182015b82811115620005eb578251825591602001919060010190620005ce565b5b509050620005fb9190620005ff565b5090565b5b808211156200061a57600081600090555060010162000600565b5090565b6000620006356200062f846200088f565b6200085b565b9050828152602081018484840111156200064e57600080fd5b6200065b8482856200091b565b509392505050565b6000815190506200067481620009e5565b92915050565b600082601f8301126200068c57600080fd5b81516200069e8482602086016200061e565b91505092915050565b60008060408385031215620006bb57600080fd5b600083015167ffffffffffffffff811115620006d657600080fd5b620006e4858286016200067a565b9250506020620006f78582860162000663565b9150509250929050565b6200070c81620008d3565b82525050565b600062000721601483620008c2565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b600062000763601083620008c2565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b6000620007a5602083620008c2565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000602082019050620007ef600083018462000701565b92915050565b60006020820190508181036000830152620008108162000712565b9050919050565b60006020820190508181036000830152620008328162000754565b9050919050565b60006020820190508181036000830152620008548162000796565b9050919050565b6000604051905081810181811067ffffffffffffffff82111715620008855762000884620009b6565b5b8060405250919050565b600067ffffffffffffffff821115620008ad57620008ac620009b6565b5b601f19601f8301169050602081019050919050565b600082825260208201905092915050565b6000620008e082620008fb565b9050919050565b6000620008f482620008fb565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b838110156200093b5780820151818401526020810190506200091e565b838111156200094b576000848401525b50505050565b600060028204905060018216806200096a57607f821691505b6020821081141562000981576200098062000987565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620009f081620008e7565b8114620009fc57600080fd5b50565b6155a58062000a0f6000396000f3fe6080604052600436106102465760003560e01c8063669b8f201161013957806395d89b41116100b6578063caceb61b1161007a578063caceb61b146108a3578063cf52a7b2146108cc578063d547cfb7146108f5578063e927fc5c14610920578063e985e9c51461094b578063f2fde38b1461098857610246565b806395d89b41146107c0578063a22cb465146107eb578063b88d4fde14610814578063c433793d1461083d578063c87b56dd1461086657610246565b8063853828b6116100fd578063853828b6146106ff5780638ad5de28146107165780638d859f3e146107415780638da5cb5b1461076c5780639127cc691461079757610246565b8063669b8f20146106065780636f9170f6146106435780636fdaddf11461068057806370a08231146106ab578063715018a6146106e857610246565b80633dc8ded7116101c75780634f6ccce71161018b5780634f6ccce71461050d57806355f804b31461054a57806359a7715a146105735780635c975abb1461059e5780636352211e146105c957610246565b80633dc8ded71461043957806340c10f191461046257806342842e0e1461047e57806342966c68146104a7578063438b6300146104d057610246565b8063095ea7b31161020e578063095ea7b31461034257806318160ddd1461036b57806323b872dd1461039657806326a49e37146103bf5780632f745c59146103fc57610246565b806301ffc9a71461024b57806302329a2914610288578063059de0fc146102b157806306fdde03146102da578063081812fc14610305575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613f82565b6109b1565b60405161027f9190614c77565b60405180910390f35b34801561029457600080fd5b506102af60048036038101906102aa9190613f59565b6109c3565b005b3480156102bd57600080fd5b506102d860048036038101906102d39190613f14565b610a65565b005b3480156102e657600080fd5b506102ef610be5565b6040516102fc9190614c92565b60405180910390f35b34801561031157600080fd5b5061032c60048036038101906103279190614015565b610c77565b6040516103399190614bca565b60405180910390f35b34801561034e57600080fd5b5061036960048036038101906103649190613ed8565b610cfc565b005b34801561037757600080fd5b50610380610e14565b60405161038d9190615034565b60405180910390f35b3480156103a257600080fd5b506103bd60048036038101906103b89190613dd2565b610e21565b005b3480156103cb57600080fd5b506103e660048036038101906103e19190614015565b610e81565b6040516103f39190615034565b60405180910390f35b34801561040857600080fd5b50610423600480360381019061041e9190613ed8565b610ea4565b6040516104309190615034565b60405180910390f35b34801561044557600080fd5b50610460600480360381019061045b9190613ed8565b610f49565b005b61047c60048036038101906104779190613ed8565b611178565b005b34801561048a57600080fd5b506104a560048036038101906104a09190613dd2565b611467565b005b3480156104b357600080fd5b506104ce60048036038101906104c99190614015565b611487565b005b3480156104dc57600080fd5b506104f760048036038101906104f29190613d44565b6114e3565b6040516105049190614c55565b60405180910390f35b34801561051957600080fd5b50610534600480360381019061052f9190614015565b6115dd565b6040516105419190615034565b60405180910390f35b34801561055657600080fd5b50610571600480360381019061056c9190613fd4565b611674565b005b34801561057f57600080fd5b5061058861170a565b6040516105959190615034565b60405180910390f35b3480156105aa57600080fd5b506105b3611719565b6040516105c09190614c77565b60405180910390f35b3480156105d557600080fd5b506105f060048036038101906105eb9190614015565b611730565b6040516105fd9190614bca565b60405180910390f35b34801561061257600080fd5b5061062d60048036038101906106289190613d44565b6117e2565b60405161063a9190614c77565b60405180910390f35b34801561064f57600080fd5b5061066a60048036038101906106659190613d44565b611838565b6040516106779190614c77565b60405180910390f35b34801561068c57600080fd5b50610695611858565b6040516106a29190615034565b60405180910390f35b3480156106b757600080fd5b506106d260048036038101906106cd9190613d44565b61185e565b6040516106df9190615034565b60405180910390f35b3480156106f457600080fd5b506106fd611916565b005b34801561070b57600080fd5b5061071461199e565b005b34801561072257600080fd5b5061072b611a5b565b6040516107389190615034565b60405180910390f35b34801561074d57600080fd5b50610756611a60565b6040516107639190615034565b60405180910390f35b34801561077857600080fd5b50610781611a6b565b60405161078e9190614bca565b60405180910390f35b3480156107a357600080fd5b506107be60048036038101906107b99190613d6d565b611a95565b005b3480156107cc57600080fd5b506107d5611b55565b6040516107e29190614c92565b60405180910390f35b3480156107f757600080fd5b50610812600480360381019061080d9190613e9c565b611be7565b005b34801561082057600080fd5b5061083b60048036038101906108369190613e21565b611d68565b005b34801561084957600080fd5b50610864600480360381019061085f9190613d44565b611dca565b005b34801561087257600080fd5b5061088d60048036038101906108889190614015565b611ed8565b60405161089a9190614c92565b60405180910390f35b3480156108af57600080fd5b506108ca60048036038101906108c59190613f14565b611f7f565b005b3480156108d857600080fd5b506108f360048036038101906108ee9190613d44565b6120ff565b005b34801561090157600080fd5b5061090a61220d565b6040516109179190614c92565b60405180910390f35b34801561092c57600080fd5b5061093561229b565b6040516109429190614bca565b60405180910390f35b34801561095757600080fd5b50610972600480360381019061096d9190613d96565b6122c1565b60405161097f9190614c77565b60405180910390f35b34801561099457600080fd5b506109af60048036038101906109aa9190613d44565b612355565b005b60006109bc8261244d565b9050919050565b6109cb6124c7565b73ffffffffffffffffffffffffffffffffffffffff166109e9611a6b565b73ffffffffffffffffffffffffffffffffffffffff1614610a3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3690614ef4565b60405180910390fd5b600115158115151415610a5957610a546124cf565b610a62565b610a61612572565b5b50565b610a6d6124c7565b73ffffffffffffffffffffffffffffffffffffffff16610a8b611a6b565b73ffffffffffffffffffffffffffffffffffffffff1614610ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad890614ef4565b60405180910390fd5b60005b82829050811015610ba7576000600b6000858585818110610b2e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610b439190613d44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610b9f906153b5565b915050610ae4565b507f28351383e4c13138d98d7ce6bf61f173832a8d8c4dd2a8cd290774a865ffbe328282604051610bd9929190614c31565b60405180910390a15050565b606060008054610bf490615383565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2090615383565b8015610c6d5780601f10610c4257610100808354040283529160200191610c6d565b820191906000526020600020905b815481529060010190602001808311610c5057829003601f168201915b5050505050905090565b6000610c8282612614565b610cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb890614ed4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d0782611730565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6f90614f94565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d976124c7565b73ffffffffffffffffffffffffffffffffffffffff161480610dc65750610dc581610dc06124c7565b6122c1565b5b610e05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfc90614e34565b60405180910390fd5b610e0f8383612680565b505050565b6000600880549050905090565b610e32610e2c6124c7565b82612739565b610e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6890614fd4565b60405180910390fd5b610e7c838383612817565b505050565b6000610e9d8266b1a2bc2ec50000612a7390919063ffffffff16565b9050919050565b6000610eaf8361185e565b8210610ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee790614d14565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6115b3610f54612a89565b1115610f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8c90614eb4565b60405180910390fd5b610f9d611a6b565b73ffffffffffffffffffffffffffffffffffffffff16610fbb6124c7565b73ffffffffffffffffffffffffffffffffffffffff16141580156110305750600b6000610fe66124c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561107e5761103d611719565b1561107d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107490614e14565b60405180910390fd5b5b6110866124c7565b73ffffffffffffffffffffffffffffffffffffffff166110a4611a6b565b73ffffffffffffffffffffffffffffffffffffffff16146110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f190614ef4565b60405180910390fd5b6000611104612a89565b90506115b381111561114b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114290614eb4565b60405180910390fd5b60005b828110156111725761115f84612a9a565b808061116a906153b5565b91505061114e565b50505050565b6115b3611183612a89565b11156111c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bb90614eb4565b60405180910390fd5b6111cc611a6b565b73ffffffffffffffffffffffffffffffffffffffff166111ea6124c7565b73ffffffffffffffffffffffffffffffffffffffff161415801561125f5750600b60006112156124c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156112ad5761126c611719565b156112ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a390614e14565b60405180910390fd5b5b60006112b7612a89565b905060006112c48461185e565b90506115b383836112d591906151a6565b1115611316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130d90614dd4565b60405180910390fd5b6115b382111561135b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135290614eb4565b60405180910390fd5b600283111561139f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139690614cf4565b60405180910390fd5b600283826113ad91906151a6565b11156113ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e590614f74565b60405180910390fd5b6113f783610e81565b341015611439576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143090614f54565b60405180910390fd5b60005b838110156114605761144d85612a9a565b8080611458906153b5565b91505061143c565b5050505050565b61148283838360405180602001604052806000815250611d68565b505050565b6114986114926124c7565b82612739565b6114d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ce90615014565b60405180910390fd5b6114e081612aeb565b50565b606060006114f08361185e565b905060008167ffffffffffffffff811115611534577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156115625781602001602082028036833780820191505090505b50905060005b828110156115d25761157a8582610ea4565b8282815181106115b3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806115ca906153b5565b915050611568565b508092505050919050565b60006115e7610e14565b8210611628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161f90614ff4565b60405180910390fd5b60088281548110611662577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b61167c6124c7565b73ffffffffffffffffffffffffffffffffffffffff1661169a611a6b565b73ffffffffffffffffffffffffffffffffffffffff16146116f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e790614ef4565b60405180910390fd5b80600e9080519060200190611706929190613b09565b5050565b6000611714612a89565b905090565b6000600a60149054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d090614e74565b60405180910390fd5b80915050919050565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600b6020528060005260406000206000915054906101000a900460ff1681565b6115b381565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c690614e54565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61191e6124c7565b73ffffffffffffffffffffffffffffffffffffffff1661193c611a6b565b73ffffffffffffffffffffffffffffffffffffffff1614611992576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198990614ef4565b60405180910390fd5b61199c6000612bfc565b565b6119a66124c7565b73ffffffffffffffffffffffffffffffffffffffff166119c4611a6b565b73ffffffffffffffffffffffffffffffffffffffff1614611a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1190614ef4565b60405180910390fd5b600047905060008111611a2c57600080fd5b611a58600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1647612cc2565b50565b600281565b66b1a2bc2ec5000081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a9d6124c7565b73ffffffffffffffffffffffffffffffffffffffff16611abb611a6b565b73ffffffffffffffffffffffffffffffffffffffff1614611b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0890614ef4565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060018054611b6490615383565b80601f0160208091040260200160405190810160405280929190818152602001828054611b9090615383565b8015611bdd5780601f10611bb257610100808354040283529160200191611bdd565b820191906000526020600020905b815481529060010190602001808311611bc057829003601f168201915b5050505050905090565b611bef6124c7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5490614db4565b60405180910390fd5b8060056000611c6a6124c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d176124c7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d5c9190614c77565b60405180910390a35050565b611d79611d736124c7565b83612739565b611db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611daf90614fd4565b60405180910390fd5b611dc484848484612d73565b50505050565b611dd26124c7565b73ffffffffffffffffffffffffffffffffffffffff16611df0611a6b565b73ffffffffffffffffffffffffffffffffffffffff1614611e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3d90614ef4565b60405180910390fd5b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f9354cd337eebad48c93d70f7321b188732c3061fa5c48fe32b8e6f9480c52fcc81604051611ecd9190614bca565b60405180910390a150565b6060611ee382612614565b611f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1990614f34565b60405180910390fd5b6000611f2c612dcf565b90506000815111611f4c5760405180602001604052806000815250611f77565b80611f5684612e61565b604051602001611f67929190614b91565b6040516020818303038152906040525b915050919050565b611f876124c7565b73ffffffffffffffffffffffffffffffffffffffff16611fa5611a6b565b73ffffffffffffffffffffffffffffffffffffffff1614611ffb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff290614ef4565b60405180910390fd5b60005b828290508110156120c1576001600b6000858585818110612048577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061205d9190613d44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806120b9906153b5565b915050611ffe565b507ffc031e12a6809f53d08acff9a98051c4774f44ea3885aadcb4be62ecd3544dff82826040516120f3929190614c31565b60405180910390a15050565b6121076124c7565b73ffffffffffffffffffffffffffffffffffffffff16612125611a6b565b73ffffffffffffffffffffffffffffffffffffffff161461217b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217290614ef4565b60405180910390fd5b6001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f16220188fd357ae3d9cf432f984d1ea5c73787b829a3e72a4b807e8c0ebf5b0c816040516122029190614bca565b60405180910390a150565b600e805461221a90615383565b80601f016020809104026020016040519081016040528092919081815260200182805461224690615383565b80156122935780601f1061226857610100808354040283529160200191612293565b820191906000526020600020905b81548152906001019060200180831161227657829003601f168201915b505050505081565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61235d6124c7565b73ffffffffffffffffffffffffffffffffffffffff1661237b611a6b565b73ffffffffffffffffffffffffffffffffffffffff16146123d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c890614ef4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612441576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243890614d54565b60405180910390fd5b61244a81612bfc565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806124c057506124bf8261300e565b5b9050919050565b600033905090565b6124d7611719565b15612517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250e90614e14565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861255b6124c7565b6040516125689190614bca565b60405180910390a1565b61257a611719565b6125b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b090614cd4565b60405180910390fd5b6000600a60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6125fd6124c7565b60405161260a9190614bca565b60405180910390a1565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166126f383611730565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061274482612614565b612783576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277a90614df4565b60405180910390fd5b600061278e83611730565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806127fd57508373ffffffffffffffffffffffffffffffffffffffff166127e584610c77565b73ffffffffffffffffffffffffffffffffffffffff16145b8061280e575061280d81856122c1565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661283782611730565b73ffffffffffffffffffffffffffffffffffffffff161461288d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288490614f14565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f490614d94565b60405180910390fd5b6129088383836130f0565b612913600082612680565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129639190615287565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129ba91906151a6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008183612a81919061522d565b905092915050565b6000612a95600c613100565b905090565b6000612aa4612a89565b9050612ab0600c61310e565b612aba8282613124565b807f1cc33b40fc92a50725bf9e83051b7ecbd67782398dd270114070d4a546e02c1860405160405180910390a25050565b6000612af682611730565b9050612b04816000846130f0565b612b0f600083612680565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b5f9190615287565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612ce890614bb5565b60006040518083038185875af1925050503d8060008114612d25576040519150601f19603f3d011682016040523d82523d6000602084013e612d2a565b606091505b5050905080612d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6590614fb4565b60405180910390fd5b505050565b612d7e848484612817565b612d8a84848484613142565b612dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc090614d34565b60405180910390fd5b50505050565b6060600e8054612dde90615383565b80601f0160208091040260200160405190810160405280929190818152602001828054612e0a90615383565b8015612e575780601f10612e2c57610100808354040283529160200191612e57565b820191906000526020600020905b815481529060010190602001808311612e3a57829003601f168201915b5050505050905090565b60606000821415612ea9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613009565b600082905060005b60008214612edb578080612ec4906153b5565b915050600a82612ed491906151fc565b9150612eb1565b60008167ffffffffffffffff811115612f1d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612f4f5781602001600182028036833780820191505090505b5090505b6000851461300257600182612f689190615287565b9150600a85612f7791906153fe565b6030612f8391906151a6565b60f81b818381518110612fbf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ffb91906151fc565b9450612f53565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806130d957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806130e957506130e8826132d9565b5b9050919050565b6130fb838383613343565b505050565b600081600001549050919050565b6001816000016000828254019250508190555050565b61313e82826040518060200160405280600081525061343c565b5050565b60006131638473ffffffffffffffffffffffffffffffffffffffff16613497565b156132cc578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261318c6124c7565b8786866040518563ffffffff1660e01b81526004016131ae9493929190614be5565b602060405180830381600087803b1580156131c857600080fd5b505af19250505080156131f957506040513d601f19601f820116820180604052508101906131f69190613fab565b60015b61327c573d8060008114613229576040519150601f19603f3d011682016040523d82523d6000602084013e61322e565b606091505b50600081511415613274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161326b90614d34565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506132d1565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61334e8383836134aa565b613356611a6b565b73ffffffffffffffffffffffffffffffffffffffff166133746124c7565b73ffffffffffffffffffffffffffffffffffffffff16141580156133e95750600b600061339f6124c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613437576133f6611719565b15613436576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161342d90614cb4565b60405180910390fd5b5b505050565b61344683836135be565b6134536000848484613142565b613492576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161348990614d34565b60405180910390fd5b505050565b600080823b905060008111915050919050565b6134b583838361378c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156134f8576134f381613791565b613537565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146135365761353583826137da565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561357a5761357581613947565b6135b9565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146135b8576135b78282613a8a565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561362e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161362590614e94565b60405180910390fd5b61363781612614565b15613677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161366e90614d74565b60405180910390fd5b613683600083836130f0565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546136d391906151a6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016137e78461185e565b6137f19190615287565b90506000600760008481526020019081526020016000205490508181146138d6576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061395b9190615287565b90506000600960008481526020019081526020016000205490506000600883815481106139b1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106139f9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613a6e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613a958361185e565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054613b1590615383565b90600052602060002090601f016020900481019282613b375760008555613b7e565b82601f10613b5057805160ff1916838001178555613b7e565b82800160010185558215613b7e579182015b82811115613b7d578251825591602001919060010190613b62565b5b509050613b8b9190613b8f565b5090565b5b80821115613ba8576000816000905550600101613b90565b5090565b6000613bbf613bba84615080565b61504f565b905082815260208101848484011115613bd757600080fd5b613be2848285615341565b509392505050565b6000613bfd613bf8846150b0565b61504f565b905082815260208101848484011115613c1557600080fd5b613c20848285615341565b509392505050565b600081359050613c37816154fc565b92915050565b600081359050613c4c81615513565b92915050565b60008083601f840112613c6457600080fd5b8235905067ffffffffffffffff811115613c7d57600080fd5b602083019150836020820283011115613c9557600080fd5b9250929050565b600081359050613cab8161552a565b92915050565b600081359050613cc081615541565b92915050565b600081519050613cd581615541565b92915050565b600082601f830112613cec57600080fd5b8135613cfc848260208601613bac565b91505092915050565b600082601f830112613d1657600080fd5b8135613d26848260208601613bea565b91505092915050565b600081359050613d3e81615558565b92915050565b600060208284031215613d5657600080fd5b6000613d6484828501613c28565b91505092915050565b600060208284031215613d7f57600080fd5b6000613d8d84828501613c3d565b91505092915050565b60008060408385031215613da957600080fd5b6000613db785828601613c28565b9250506020613dc885828601613c28565b9150509250929050565b600080600060608486031215613de757600080fd5b6000613df586828701613c28565b9350506020613e0686828701613c28565b9250506040613e1786828701613d2f565b9150509250925092565b60008060008060808587031215613e3757600080fd5b6000613e4587828801613c28565b9450506020613e5687828801613c28565b9350506040613e6787828801613d2f565b925050606085013567ffffffffffffffff811115613e8457600080fd5b613e9087828801613cdb565b91505092959194509250565b60008060408385031215613eaf57600080fd5b6000613ebd85828601613c28565b9250506020613ece85828601613c9c565b9150509250929050565b60008060408385031215613eeb57600080fd5b6000613ef985828601613c28565b9250506020613f0a85828601613d2f565b9150509250929050565b60008060208385031215613f2757600080fd5b600083013567ffffffffffffffff811115613f4157600080fd5b613f4d85828601613c52565b92509250509250929050565b600060208284031215613f6b57600080fd5b6000613f7984828501613c9c565b91505092915050565b600060208284031215613f9457600080fd5b6000613fa284828501613cb1565b91505092915050565b600060208284031215613fbd57600080fd5b6000613fcb84828501613cc6565b91505092915050565b600060208284031215613fe657600080fd5b600082013567ffffffffffffffff81111561400057600080fd5b61400c84828501613d05565b91505092915050565b60006020828403121561402757600080fd5b600061403584828501613d2f565b91505092915050565b600061404a838361406e565b60208301905092915050565b60006140628383614b73565b60208301905092915050565b614077816152bb565b82525050565b614086816152bb565b82525050565b60006140988385615135565b93506140a3826150e0565b8060005b858110156140dc576140b9828461518f565b6140c3888261403e565b97506140ce8361511b565b9250506001810190506140a7565b5085925050509392505050565b60006140f4826150fa565b6140fe8185615146565b9350614109836150ea565b8060005b8381101561413a5781516141218882614056565b975061412c83615128565b92505060018101905061410d565b5085935050505092915050565b614150816152df565b82525050565b600061416182615105565b61416b8185615157565b935061417b818560208601615350565b614184816154eb565b840191505092915050565b600061419a82615110565b6141a48185615173565b93506141b4818560208601615350565b6141bd816154eb565b840191505092915050565b60006141d382615110565b6141dd8185615184565b93506141ed818560208601615350565b80840191505092915050565b6000614206602b83615173565b91507f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008301527f68696c65207061757365640000000000000000000000000000000000000000006020830152604082019050919050565b600061426c601483615173565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b60006142ac600e83615173565b91507f45786365656473206e756d6265720000000000000000000000000000000000006000830152602082019050919050565b60006142ec602b83615173565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000614352603283615173565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006143b8602683615173565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061441e601c83615173565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061445e602483615173565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006144c4601983615173565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614504600983615173565b91507f4d6178206c696d697400000000000000000000000000000000000000000000006000830152602082019050919050565b6000614544602c83615173565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006145aa601083615173565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b60006145ea603883615173565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614650602a83615173565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006146b6602983615173565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061471c602083615173565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b600061475c600883615173565b91507f53616c6520656e640000000000000000000000000000000000000000000000006000830152602082019050919050565b600061479c602c83615173565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614802602083615173565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614842602983615173565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006148a8602f83615173565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061490e601183615173565b91507f56616c75652062656c6f772070726963650000000000000000000000000000006000830152602082019050919050565b600061494e601583615173565b91507f4d6178206c696d697420706572206164647265737300000000000000000000006000830152602082019050919050565b600061498e602183615173565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006149f4600083615168565b9150600082019050919050565b6000614a0e601083615173565b91507f5472616e73666572206661696c65642e000000000000000000000000000000006000830152602082019050919050565b6000614a4e603183615173565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614ab4602c83615173565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000614b1a603083615173565b91507f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f766564000000000000000000000000000000006020830152604082019050919050565b614b7c81615337565b82525050565b614b8b81615337565b82525050565b6000614b9d82856141c8565b9150614ba982846141c8565b91508190509392505050565b6000614bc0826149e7565b9150819050919050565b6000602082019050614bdf600083018461407d565b92915050565b6000608082019050614bfa600083018761407d565b614c07602083018661407d565b614c146040830185614b82565b8181036060830152614c268184614156565b905095945050505050565b60006020820190508181036000830152614c4c81848661408c565b90509392505050565b60006020820190508181036000830152614c6f81846140e9565b905092915050565b6000602082019050614c8c6000830184614147565b92915050565b60006020820190508181036000830152614cac818461418f565b905092915050565b60006020820190508181036000830152614ccd816141f9565b9050919050565b60006020820190508181036000830152614ced8161425f565b9050919050565b60006020820190508181036000830152614d0d8161429f565b9050919050565b60006020820190508181036000830152614d2d816142df565b9050919050565b60006020820190508181036000830152614d4d81614345565b9050919050565b60006020820190508181036000830152614d6d816143ab565b9050919050565b60006020820190508181036000830152614d8d81614411565b9050919050565b60006020820190508181036000830152614dad81614451565b9050919050565b60006020820190508181036000830152614dcd816144b7565b9050919050565b60006020820190508181036000830152614ded816144f7565b9050919050565b60006020820190508181036000830152614e0d81614537565b9050919050565b60006020820190508181036000830152614e2d8161459d565b9050919050565b60006020820190508181036000830152614e4d816145dd565b9050919050565b60006020820190508181036000830152614e6d81614643565b9050919050565b60006020820190508181036000830152614e8d816146a9565b9050919050565b60006020820190508181036000830152614ead8161470f565b9050919050565b60006020820190508181036000830152614ecd8161474f565b9050919050565b60006020820190508181036000830152614eed8161478f565b9050919050565b60006020820190508181036000830152614f0d816147f5565b9050919050565b60006020820190508181036000830152614f2d81614835565b9050919050565b60006020820190508181036000830152614f4d8161489b565b9050919050565b60006020820190508181036000830152614f6d81614901565b9050919050565b60006020820190508181036000830152614f8d81614941565b9050919050565b60006020820190508181036000830152614fad81614981565b9050919050565b60006020820190508181036000830152614fcd81614a01565b9050919050565b60006020820190508181036000830152614fed81614a41565b9050919050565b6000602082019050818103600083015261500d81614aa7565b9050919050565b6000602082019050818103600083015261502d81614b0d565b9050919050565b60006020820190506150496000830184614b82565b92915050565b6000604051905081810181811067ffffffffffffffff82111715615076576150756154bc565b5b8060405250919050565b600067ffffffffffffffff82111561509b5761509a6154bc565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156150cb576150ca6154bc565b5b601f19601f8301169050602081019050919050565b6000819050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061519e6020840184613c28565b905092915050565b60006151b182615337565b91506151bc83615337565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156151f1576151f061542f565b5b828201905092915050565b600061520782615337565b915061521283615337565b9250826152225761522161545e565b5b828204905092915050565b600061523882615337565b915061524383615337565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561527c5761527b61542f565b5b828202905092915050565b600061529282615337565b915061529d83615337565b9250828210156152b0576152af61542f565b5b828203905092915050565b60006152c682615317565b9050919050565b60006152d882615317565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561536e578082015181840152602081019050615353565b8381111561537d576000848401525b50505050565b6000600282049050600182168061539b57607f821691505b602082108114156153af576153ae61548d565b5b50919050565b60006153c082615337565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156153f3576153f261542f565b5b600182019050919050565b600061540982615337565b915061541483615337565b9250826154245761542361545e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b615505816152bb565b811461551057600080fd5b50565b61551c816152cd565b811461552757600080fd5b50565b615533816152df565b811461553e57600080fd5b50565b61554a816152eb565b811461555557600080fd5b50565b61556181615337565b811461556c57600080fd5b5056fea2646970667358221220b80cc51aa2cd857e938845735e1b6d6137e0f388d0827a4d4c1bf9166d729aa664736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000eb0c44c8f4d8b1f5ea773c50d79055350a70dc2000000000000000000000000000000000000000000000000000000000000002d68747470733a2f2f7365637572652e6c6567656e64736f667468656d65746176657273652e636f6d2f6170692f00000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102465760003560e01c8063669b8f201161013957806395d89b41116100b6578063caceb61b1161007a578063caceb61b146108a3578063cf52a7b2146108cc578063d547cfb7146108f5578063e927fc5c14610920578063e985e9c51461094b578063f2fde38b1461098857610246565b806395d89b41146107c0578063a22cb465146107eb578063b88d4fde14610814578063c433793d1461083d578063c87b56dd1461086657610246565b8063853828b6116100fd578063853828b6146106ff5780638ad5de28146107165780638d859f3e146107415780638da5cb5b1461076c5780639127cc691461079757610246565b8063669b8f20146106065780636f9170f6146106435780636fdaddf11461068057806370a08231146106ab578063715018a6146106e857610246565b80633dc8ded7116101c75780634f6ccce71161018b5780634f6ccce71461050d57806355f804b31461054a57806359a7715a146105735780635c975abb1461059e5780636352211e146105c957610246565b80633dc8ded71461043957806340c10f191461046257806342842e0e1461047e57806342966c68146104a7578063438b6300146104d057610246565b8063095ea7b31161020e578063095ea7b31461034257806318160ddd1461036b57806323b872dd1461039657806326a49e37146103bf5780632f745c59146103fc57610246565b806301ffc9a71461024b57806302329a2914610288578063059de0fc146102b157806306fdde03146102da578063081812fc14610305575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613f82565b6109b1565b60405161027f9190614c77565b60405180910390f35b34801561029457600080fd5b506102af60048036038101906102aa9190613f59565b6109c3565b005b3480156102bd57600080fd5b506102d860048036038101906102d39190613f14565b610a65565b005b3480156102e657600080fd5b506102ef610be5565b6040516102fc9190614c92565b60405180910390f35b34801561031157600080fd5b5061032c60048036038101906103279190614015565b610c77565b6040516103399190614bca565b60405180910390f35b34801561034e57600080fd5b5061036960048036038101906103649190613ed8565b610cfc565b005b34801561037757600080fd5b50610380610e14565b60405161038d9190615034565b60405180910390f35b3480156103a257600080fd5b506103bd60048036038101906103b89190613dd2565b610e21565b005b3480156103cb57600080fd5b506103e660048036038101906103e19190614015565b610e81565b6040516103f39190615034565b60405180910390f35b34801561040857600080fd5b50610423600480360381019061041e9190613ed8565b610ea4565b6040516104309190615034565b60405180910390f35b34801561044557600080fd5b50610460600480360381019061045b9190613ed8565b610f49565b005b61047c60048036038101906104779190613ed8565b611178565b005b34801561048a57600080fd5b506104a560048036038101906104a09190613dd2565b611467565b005b3480156104b357600080fd5b506104ce60048036038101906104c99190614015565b611487565b005b3480156104dc57600080fd5b506104f760048036038101906104f29190613d44565b6114e3565b6040516105049190614c55565b60405180910390f35b34801561051957600080fd5b50610534600480360381019061052f9190614015565b6115dd565b6040516105419190615034565b60405180910390f35b34801561055657600080fd5b50610571600480360381019061056c9190613fd4565b611674565b005b34801561057f57600080fd5b5061058861170a565b6040516105959190615034565b60405180910390f35b3480156105aa57600080fd5b506105b3611719565b6040516105c09190614c77565b60405180910390f35b3480156105d557600080fd5b506105f060048036038101906105eb9190614015565b611730565b6040516105fd9190614bca565b60405180910390f35b34801561061257600080fd5b5061062d60048036038101906106289190613d44565b6117e2565b60405161063a9190614c77565b60405180910390f35b34801561064f57600080fd5b5061066a60048036038101906106659190613d44565b611838565b6040516106779190614c77565b60405180910390f35b34801561068c57600080fd5b50610695611858565b6040516106a29190615034565b60405180910390f35b3480156106b757600080fd5b506106d260048036038101906106cd9190613d44565b61185e565b6040516106df9190615034565b60405180910390f35b3480156106f457600080fd5b506106fd611916565b005b34801561070b57600080fd5b5061071461199e565b005b34801561072257600080fd5b5061072b611a5b565b6040516107389190615034565b60405180910390f35b34801561074d57600080fd5b50610756611a60565b6040516107639190615034565b60405180910390f35b34801561077857600080fd5b50610781611a6b565b60405161078e9190614bca565b60405180910390f35b3480156107a357600080fd5b506107be60048036038101906107b99190613d6d565b611a95565b005b3480156107cc57600080fd5b506107d5611b55565b6040516107e29190614c92565b60405180910390f35b3480156107f757600080fd5b50610812600480360381019061080d9190613e9c565b611be7565b005b34801561082057600080fd5b5061083b60048036038101906108369190613e21565b611d68565b005b34801561084957600080fd5b50610864600480360381019061085f9190613d44565b611dca565b005b34801561087257600080fd5b5061088d60048036038101906108889190614015565b611ed8565b60405161089a9190614c92565b60405180910390f35b3480156108af57600080fd5b506108ca60048036038101906108c59190613f14565b611f7f565b005b3480156108d857600080fd5b506108f360048036038101906108ee9190613d44565b6120ff565b005b34801561090157600080fd5b5061090a61220d565b6040516109179190614c92565b60405180910390f35b34801561092c57600080fd5b5061093561229b565b6040516109429190614bca565b60405180910390f35b34801561095757600080fd5b50610972600480360381019061096d9190613d96565b6122c1565b60405161097f9190614c77565b60405180910390f35b34801561099457600080fd5b506109af60048036038101906109aa9190613d44565b612355565b005b60006109bc8261244d565b9050919050565b6109cb6124c7565b73ffffffffffffffffffffffffffffffffffffffff166109e9611a6b565b73ffffffffffffffffffffffffffffffffffffffff1614610a3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3690614ef4565b60405180910390fd5b600115158115151415610a5957610a546124cf565b610a62565b610a61612572565b5b50565b610a6d6124c7565b73ffffffffffffffffffffffffffffffffffffffff16610a8b611a6b565b73ffffffffffffffffffffffffffffffffffffffff1614610ae1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad890614ef4565b60405180910390fd5b60005b82829050811015610ba7576000600b6000858585818110610b2e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610b439190613d44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610b9f906153b5565b915050610ae4565b507f28351383e4c13138d98d7ce6bf61f173832a8d8c4dd2a8cd290774a865ffbe328282604051610bd9929190614c31565b60405180910390a15050565b606060008054610bf490615383565b80601f0160208091040260200160405190810160405280929190818152602001828054610c2090615383565b8015610c6d5780601f10610c4257610100808354040283529160200191610c6d565b820191906000526020600020905b815481529060010190602001808311610c5057829003601f168201915b5050505050905090565b6000610c8282612614565b610cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb890614ed4565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d0782611730565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6f90614f94565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d976124c7565b73ffffffffffffffffffffffffffffffffffffffff161480610dc65750610dc581610dc06124c7565b6122c1565b5b610e05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfc90614e34565b60405180910390fd5b610e0f8383612680565b505050565b6000600880549050905090565b610e32610e2c6124c7565b82612739565b610e71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6890614fd4565b60405180910390fd5b610e7c838383612817565b505050565b6000610e9d8266b1a2bc2ec50000612a7390919063ffffffff16565b9050919050565b6000610eaf8361185e565b8210610ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee790614d14565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6115b3610f54612a89565b1115610f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8c90614eb4565b60405180910390fd5b610f9d611a6b565b73ffffffffffffffffffffffffffffffffffffffff16610fbb6124c7565b73ffffffffffffffffffffffffffffffffffffffff16141580156110305750600b6000610fe66124c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561107e5761103d611719565b1561107d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107490614e14565b60405180910390fd5b5b6110866124c7565b73ffffffffffffffffffffffffffffffffffffffff166110a4611a6b565b73ffffffffffffffffffffffffffffffffffffffff16146110fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f190614ef4565b60405180910390fd5b6000611104612a89565b90506115b381111561114b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161114290614eb4565b60405180910390fd5b60005b828110156111725761115f84612a9a565b808061116a906153b5565b91505061114e565b50505050565b6115b3611183612a89565b11156111c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bb90614eb4565b60405180910390fd5b6111cc611a6b565b73ffffffffffffffffffffffffffffffffffffffff166111ea6124c7565b73ffffffffffffffffffffffffffffffffffffffff161415801561125f5750600b60006112156124c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156112ad5761126c611719565b156112ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a390614e14565b60405180910390fd5b5b60006112b7612a89565b905060006112c48461185e565b90506115b383836112d591906151a6565b1115611316576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130d90614dd4565b60405180910390fd5b6115b382111561135b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135290614eb4565b60405180910390fd5b600283111561139f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139690614cf4565b60405180910390fd5b600283826113ad91906151a6565b11156113ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e590614f74565b60405180910390fd5b6113f783610e81565b341015611439576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143090614f54565b60405180910390fd5b60005b838110156114605761144d85612a9a565b8080611458906153b5565b91505061143c565b5050505050565b61148283838360405180602001604052806000815250611d68565b505050565b6114986114926124c7565b82612739565b6114d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ce90615014565b60405180910390fd5b6114e081612aeb565b50565b606060006114f08361185e565b905060008167ffffffffffffffff811115611534577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156115625781602001602082028036833780820191505090505b50905060005b828110156115d25761157a8582610ea4565b8282815181106115b3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806115ca906153b5565b915050611568565b508092505050919050565b60006115e7610e14565b8210611628576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161f90614ff4565b60405180910390fd5b60088281548110611662577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b61167c6124c7565b73ffffffffffffffffffffffffffffffffffffffff1661169a611a6b565b73ffffffffffffffffffffffffffffffffffffffff16146116f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e790614ef4565b60405180910390fd5b80600e9080519060200190611706929190613b09565b5050565b6000611714612a89565b905090565b6000600a60149054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156117d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d090614e74565b60405180910390fd5b80915050919050565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600b6020528060005260406000206000915054906101000a900460ff1681565b6115b381565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c690614e54565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61191e6124c7565b73ffffffffffffffffffffffffffffffffffffffff1661193c611a6b565b73ffffffffffffffffffffffffffffffffffffffff1614611992576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198990614ef4565b60405180910390fd5b61199c6000612bfc565b565b6119a66124c7565b73ffffffffffffffffffffffffffffffffffffffff166119c4611a6b565b73ffffffffffffffffffffffffffffffffffffffff1614611a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1190614ef4565b60405180910390fd5b600047905060008111611a2c57600080fd5b611a58600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1647612cc2565b50565b600281565b66b1a2bc2ec5000081565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a9d6124c7565b73ffffffffffffffffffffffffffffffffffffffff16611abb611a6b565b73ffffffffffffffffffffffffffffffffffffffff1614611b11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0890614ef4565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060018054611b6490615383565b80601f0160208091040260200160405190810160405280929190818152602001828054611b9090615383565b8015611bdd5780601f10611bb257610100808354040283529160200191611bdd565b820191906000526020600020905b815481529060010190602001808311611bc057829003601f168201915b5050505050905090565b611bef6124c7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5490614db4565b60405180910390fd5b8060056000611c6a6124c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d176124c7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d5c9190614c77565b60405180910390a35050565b611d79611d736124c7565b83612739565b611db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611daf90614fd4565b60405180910390fd5b611dc484848484612d73565b50505050565b611dd26124c7565b73ffffffffffffffffffffffffffffffffffffffff16611df0611a6b565b73ffffffffffffffffffffffffffffffffffffffff1614611e46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3d90614ef4565b60405180910390fd5b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f9354cd337eebad48c93d70f7321b188732c3061fa5c48fe32b8e6f9480c52fcc81604051611ecd9190614bca565b60405180910390a150565b6060611ee382612614565b611f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1990614f34565b60405180910390fd5b6000611f2c612dcf565b90506000815111611f4c5760405180602001604052806000815250611f77565b80611f5684612e61565b604051602001611f67929190614b91565b6040516020818303038152906040525b915050919050565b611f876124c7565b73ffffffffffffffffffffffffffffffffffffffff16611fa5611a6b565b73ffffffffffffffffffffffffffffffffffffffff1614611ffb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ff290614ef4565b60405180910390fd5b60005b828290508110156120c1576001600b6000858585818110612048577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061205d9190613d44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806120b9906153b5565b915050611ffe565b507ffc031e12a6809f53d08acff9a98051c4774f44ea3885aadcb4be62ecd3544dff82826040516120f3929190614c31565b60405180910390a15050565b6121076124c7565b73ffffffffffffffffffffffffffffffffffffffff16612125611a6b565b73ffffffffffffffffffffffffffffffffffffffff161461217b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217290614ef4565b60405180910390fd5b6001600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f16220188fd357ae3d9cf432f984d1ea5c73787b829a3e72a4b807e8c0ebf5b0c816040516122029190614bca565b60405180910390a150565b600e805461221a90615383565b80601f016020809104026020016040519081016040528092919081815260200182805461224690615383565b80156122935780601f1061226857610100808354040283529160200191612293565b820191906000526020600020905b81548152906001019060200180831161227657829003601f168201915b505050505081565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61235d6124c7565b73ffffffffffffffffffffffffffffffffffffffff1661237b611a6b565b73ffffffffffffffffffffffffffffffffffffffff16146123d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c890614ef4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612441576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243890614d54565b60405180910390fd5b61244a81612bfc565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806124c057506124bf8261300e565b5b9050919050565b600033905090565b6124d7611719565b15612517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250e90614e14565b60405180910390fd5b6001600a60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861255b6124c7565b6040516125689190614bca565b60405180910390a1565b61257a611719565b6125b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b090614cd4565b60405180910390fd5b6000600a60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6125fd6124c7565b60405161260a9190614bca565b60405180910390a1565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166126f383611730565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061274482612614565b612783576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161277a90614df4565b60405180910390fd5b600061278e83611730565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806127fd57508373ffffffffffffffffffffffffffffffffffffffff166127e584610c77565b73ffffffffffffffffffffffffffffffffffffffff16145b8061280e575061280d81856122c1565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661283782611730565b73ffffffffffffffffffffffffffffffffffffffff161461288d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288490614f14565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f490614d94565b60405180910390fd5b6129088383836130f0565b612913600082612680565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129639190615287565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129ba91906151a6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b60008183612a81919061522d565b905092915050565b6000612a95600c613100565b905090565b6000612aa4612a89565b9050612ab0600c61310e565b612aba8282613124565b807f1cc33b40fc92a50725bf9e83051b7ecbd67782398dd270114070d4a546e02c1860405160405180910390a25050565b6000612af682611730565b9050612b04816000846130f0565b612b0f600083612680565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b5f9190615287565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612ce890614bb5565b60006040518083038185875af1925050503d8060008114612d25576040519150601f19603f3d011682016040523d82523d6000602084013e612d2a565b606091505b5050905080612d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d6590614fb4565b60405180910390fd5b505050565b612d7e848484612817565b612d8a84848484613142565b612dc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc090614d34565b60405180910390fd5b50505050565b6060600e8054612dde90615383565b80601f0160208091040260200160405190810160405280929190818152602001828054612e0a90615383565b8015612e575780601f10612e2c57610100808354040283529160200191612e57565b820191906000526020600020905b815481529060010190602001808311612e3a57829003601f168201915b5050505050905090565b60606000821415612ea9576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613009565b600082905060005b60008214612edb578080612ec4906153b5565b915050600a82612ed491906151fc565b9150612eb1565b60008167ffffffffffffffff811115612f1d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612f4f5781602001600182028036833780820191505090505b5090505b6000851461300257600182612f689190615287565b9150600a85612f7791906153fe565b6030612f8391906151a6565b60f81b818381518110612fbf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ffb91906151fc565b9450612f53565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806130d957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806130e957506130e8826132d9565b5b9050919050565b6130fb838383613343565b505050565b600081600001549050919050565b6001816000016000828254019250508190555050565b61313e82826040518060200160405280600081525061343c565b5050565b60006131638473ffffffffffffffffffffffffffffffffffffffff16613497565b156132cc578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261318c6124c7565b8786866040518563ffffffff1660e01b81526004016131ae9493929190614be5565b602060405180830381600087803b1580156131c857600080fd5b505af19250505080156131f957506040513d601f19601f820116820180604052508101906131f69190613fab565b60015b61327c573d8060008114613229576040519150601f19603f3d011682016040523d82523d6000602084013e61322e565b606091505b50600081511415613274576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161326b90614d34565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506132d1565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61334e8383836134aa565b613356611a6b565b73ffffffffffffffffffffffffffffffffffffffff166133746124c7565b73ffffffffffffffffffffffffffffffffffffffff16141580156133e95750600b600061339f6124c7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15613437576133f6611719565b15613436576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161342d90614cb4565b60405180910390fd5b5b505050565b61344683836135be565b6134536000848484613142565b613492576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161348990614d34565b60405180910390fd5b505050565b600080823b905060008111915050919050565b6134b583838361378c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156134f8576134f381613791565b613537565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146135365761353583826137da565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561357a5761357581613947565b6135b9565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146135b8576135b78282613a8a565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561362e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161362590614e94565b60405180910390fd5b61363781612614565b15613677576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161366e90614d74565b60405180910390fd5b613683600083836130f0565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546136d391906151a6565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016137e78461185e565b6137f19190615287565b90506000600760008481526020019081526020016000205490508181146138d6576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061395b9190615287565b90506000600960008481526020019081526020016000205490506000600883815481106139b1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106139f9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613a6e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613a958361185e565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b828054613b1590615383565b90600052602060002090601f016020900481019282613b375760008555613b7e565b82601f10613b5057805160ff1916838001178555613b7e565b82800160010185558215613b7e579182015b82811115613b7d578251825591602001919060010190613b62565b5b509050613b8b9190613b8f565b5090565b5b80821115613ba8576000816000905550600101613b90565b5090565b6000613bbf613bba84615080565b61504f565b905082815260208101848484011115613bd757600080fd5b613be2848285615341565b509392505050565b6000613bfd613bf8846150b0565b61504f565b905082815260208101848484011115613c1557600080fd5b613c20848285615341565b509392505050565b600081359050613c37816154fc565b92915050565b600081359050613c4c81615513565b92915050565b60008083601f840112613c6457600080fd5b8235905067ffffffffffffffff811115613c7d57600080fd5b602083019150836020820283011115613c9557600080fd5b9250929050565b600081359050613cab8161552a565b92915050565b600081359050613cc081615541565b92915050565b600081519050613cd581615541565b92915050565b600082601f830112613cec57600080fd5b8135613cfc848260208601613bac565b91505092915050565b600082601f830112613d1657600080fd5b8135613d26848260208601613bea565b91505092915050565b600081359050613d3e81615558565b92915050565b600060208284031215613d5657600080fd5b6000613d6484828501613c28565b91505092915050565b600060208284031215613d7f57600080fd5b6000613d8d84828501613c3d565b91505092915050565b60008060408385031215613da957600080fd5b6000613db785828601613c28565b9250506020613dc885828601613c28565b9150509250929050565b600080600060608486031215613de757600080fd5b6000613df586828701613c28565b9350506020613e0686828701613c28565b9250506040613e1786828701613d2f565b9150509250925092565b60008060008060808587031215613e3757600080fd5b6000613e4587828801613c28565b9450506020613e5687828801613c28565b9350506040613e6787828801613d2f565b925050606085013567ffffffffffffffff811115613e8457600080fd5b613e9087828801613cdb565b91505092959194509250565b60008060408385031215613eaf57600080fd5b6000613ebd85828601613c28565b9250506020613ece85828601613c9c565b9150509250929050565b60008060408385031215613eeb57600080fd5b6000613ef985828601613c28565b9250506020613f0a85828601613d2f565b9150509250929050565b60008060208385031215613f2757600080fd5b600083013567ffffffffffffffff811115613f4157600080fd5b613f4d85828601613c52565b92509250509250929050565b600060208284031215613f6b57600080fd5b6000613f7984828501613c9c565b91505092915050565b600060208284031215613f9457600080fd5b6000613fa284828501613cb1565b91505092915050565b600060208284031215613fbd57600080fd5b6000613fcb84828501613cc6565b91505092915050565b600060208284031215613fe657600080fd5b600082013567ffffffffffffffff81111561400057600080fd5b61400c84828501613d05565b91505092915050565b60006020828403121561402757600080fd5b600061403584828501613d2f565b91505092915050565b600061404a838361406e565b60208301905092915050565b60006140628383614b73565b60208301905092915050565b614077816152bb565b82525050565b614086816152bb565b82525050565b60006140988385615135565b93506140a3826150e0565b8060005b858110156140dc576140b9828461518f565b6140c3888261403e565b97506140ce8361511b565b9250506001810190506140a7565b5085925050509392505050565b60006140f4826150fa565b6140fe8185615146565b9350614109836150ea565b8060005b8381101561413a5781516141218882614056565b975061412c83615128565b92505060018101905061410d565b5085935050505092915050565b614150816152df565b82525050565b600061416182615105565b61416b8185615157565b935061417b818560208601615350565b614184816154eb565b840191505092915050565b600061419a82615110565b6141a48185615173565b93506141b4818560208601615350565b6141bd816154eb565b840191505092915050565b60006141d382615110565b6141dd8185615184565b93506141ed818560208601615350565b80840191505092915050565b6000614206602b83615173565b91507f4552433732315061757361626c653a20746f6b656e207472616e73666572207760008301527f68696c65207061757365640000000000000000000000000000000000000000006020830152604082019050919050565b600061426c601483615173565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b60006142ac600e83615173565b91507f45786365656473206e756d6265720000000000000000000000000000000000006000830152602082019050919050565b60006142ec602b83615173565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000614352603283615173565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b60006143b8602683615173565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061441e601c83615173565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061445e602483615173565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006144c4601983615173565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614504600983615173565b91507f4d6178206c696d697400000000000000000000000000000000000000000000006000830152602082019050919050565b6000614544602c83615173565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006145aa601083615173565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b60006145ea603883615173565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b6000614650602a83615173565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b60006146b6602983615173565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061471c602083615173565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b600061475c600883615173565b91507f53616c6520656e640000000000000000000000000000000000000000000000006000830152602082019050919050565b600061479c602c83615173565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614802602083615173565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000614842602983615173565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006148a8602f83615173565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061490e601183615173565b91507f56616c75652062656c6f772070726963650000000000000000000000000000006000830152602082019050919050565b600061494e601583615173565b91507f4d6178206c696d697420706572206164647265737300000000000000000000006000830152602082019050919050565b600061498e602183615173565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006149f4600083615168565b9150600082019050919050565b6000614a0e601083615173565b91507f5472616e73666572206661696c65642e000000000000000000000000000000006000830152602082019050919050565b6000614a4e603183615173565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614ab4602c83615173565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b6000614b1a603083615173565b91507f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f766564000000000000000000000000000000006020830152604082019050919050565b614b7c81615337565b82525050565b614b8b81615337565b82525050565b6000614b9d82856141c8565b9150614ba982846141c8565b91508190509392505050565b6000614bc0826149e7565b9150819050919050565b6000602082019050614bdf600083018461407d565b92915050565b6000608082019050614bfa600083018761407d565b614c07602083018661407d565b614c146040830185614b82565b8181036060830152614c268184614156565b905095945050505050565b60006020820190508181036000830152614c4c81848661408c565b90509392505050565b60006020820190508181036000830152614c6f81846140e9565b905092915050565b6000602082019050614c8c6000830184614147565b92915050565b60006020820190508181036000830152614cac818461418f565b905092915050565b60006020820190508181036000830152614ccd816141f9565b9050919050565b60006020820190508181036000830152614ced8161425f565b9050919050565b60006020820190508181036000830152614d0d8161429f565b9050919050565b60006020820190508181036000830152614d2d816142df565b9050919050565b60006020820190508181036000830152614d4d81614345565b9050919050565b60006020820190508181036000830152614d6d816143ab565b9050919050565b60006020820190508181036000830152614d8d81614411565b9050919050565b60006020820190508181036000830152614dad81614451565b9050919050565b60006020820190508181036000830152614dcd816144b7565b9050919050565b60006020820190508181036000830152614ded816144f7565b9050919050565b60006020820190508181036000830152614e0d81614537565b9050919050565b60006020820190508181036000830152614e2d8161459d565b9050919050565b60006020820190508181036000830152614e4d816145dd565b9050919050565b60006020820190508181036000830152614e6d81614643565b9050919050565b60006020820190508181036000830152614e8d816146a9565b9050919050565b60006020820190508181036000830152614ead8161470f565b9050919050565b60006020820190508181036000830152614ecd8161474f565b9050919050565b60006020820190508181036000830152614eed8161478f565b9050919050565b60006020820190508181036000830152614f0d816147f5565b9050919050565b60006020820190508181036000830152614f2d81614835565b9050919050565b60006020820190508181036000830152614f4d8161489b565b9050919050565b60006020820190508181036000830152614f6d81614901565b9050919050565b60006020820190508181036000830152614f8d81614941565b9050919050565b60006020820190508181036000830152614fad81614981565b9050919050565b60006020820190508181036000830152614fcd81614a01565b9050919050565b60006020820190508181036000830152614fed81614a41565b9050919050565b6000602082019050818103600083015261500d81614aa7565b9050919050565b6000602082019050818103600083015261502d81614b0d565b9050919050565b60006020820190506150496000830184614b82565b92915050565b6000604051905081810181811067ffffffffffffffff82111715615076576150756154bc565b5b8060405250919050565b600067ffffffffffffffff82111561509b5761509a6154bc565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156150cb576150ca6154bc565b5b601f19601f8301169050602081019050919050565b6000819050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061519e6020840184613c28565b905092915050565b60006151b182615337565b91506151bc83615337565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156151f1576151f061542f565b5b828201905092915050565b600061520782615337565b915061521283615337565b9250826152225761522161545e565b5b828204905092915050565b600061523882615337565b915061524383615337565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561527c5761527b61542f565b5b828202905092915050565b600061529282615337565b915061529d83615337565b9250828210156152b0576152af61542f565b5b828203905092915050565b60006152c682615317565b9050919050565b60006152d882615317565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561536e578082015181840152602081019050615353565b8381111561537d576000848401525b50505050565b6000600282049050600182168061539b57607f821691505b602082108114156153af576153ae61548d565b5b50919050565b60006153c082615337565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156153f3576153f261542f565b5b600182019050919050565b600061540982615337565b915061541483615337565b9250826154245761542361545e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b615505816152bb565b811461551057600080fd5b50565b61551c816152cd565b811461552757600080fd5b50565b615533816152df565b811461553e57600080fd5b50565b61554a816152eb565b811461555557600080fd5b50565b61556181615337565b811461556c57600080fd5b5056fea2646970667358221220b80cc51aa2cd857e938845735e1b6d6137e0f388d0827a4d4c1bf9166d729aa664736f6c63430008000033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000eb0c44c8f4d8b1f5ea773c50d79055350a70dc2000000000000000000000000000000000000000000000000000000000000002d68747470733a2f2f7365637572652e6c6567656e64736f667468656d65746176657273652e636f6d2f6170692f00000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://secure.legendsofthemetaverse.com/api/
Arg [1] : creator (address): 0x0EB0c44C8F4D8b1f5EA773C50D79055350a70dC2

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000eb0c44c8f4d8b1f5ea773c50d79055350a70dc2
Arg [2] : 000000000000000000000000000000000000000000000000000000000000002d
Arg [3] : 68747470733a2f2f7365637572652e6c6567656e64736f667468656d65746176
Arg [4] : 657273652e636f6d2f6170692f00000000000000000000000000000000000000


Deployed Bytecode Sourcemap

250:3836:13:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3901:177;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3133:148;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1887:249:7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2349:98:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3860:217;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3398:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1534:111:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4724:330:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2341:102:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1210:253:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1888:256:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1340:545;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5120:179:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;437:241:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2785:342:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1717:230:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2680:99:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1244:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1034:84:15;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2052:235:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1227:117:7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;818:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;451:38:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1790:205:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1598:92:14;;;;;;;;;;;;;:::i;:::-;;3287:185:13;;;;;;;;;;;;;:::i;:::-;;543:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;495:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;966:85:14;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2566:110:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2511:102:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4144:290;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5365:320;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1490:151:7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2679:329:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1645:238:7;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1348:138;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;625:26:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;590:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4500:162:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1839:189:14;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3901:177:13;4012:4;4035:36;4059:11;4035:23;:36::i;:::-;4028:43;;3901:177;;;:::o;3133:148::-;1189:12:14;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3196:4:13::1;3189:11;;:3;:11;;;3185:70;;;3216:8;:6;:8::i;:::-;3238:7;;3185:70;3264:10;:8;:10::i;:::-;1248:1:14;3133:148:13::0;:::o;1887:249:7:-;1189:12:14;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1989:9:7::1;1985:94;2008:8;;:15;;2004:1;:19;1985:94;;;2063:5;2034:13;:26;2048:8;;2057:1;2048:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2034:26;;;;;;;;;;;;;;;;:34;;;;;;;;;;;;;;;;;;2025:3;;;;;:::i;:::-;;;;1985:94;;;;2087:42;2120:8;;2087:42;;;;;;;:::i;:::-;;;;;;;;1887:249:::0;;:::o;2349:98:4:-;2403:13;2435:5;2428:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2349:98;:::o;3860:217::-;3936:7;3963:16;3971:7;3963;:16::i;:::-;3955:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4046:15;:24;4062:7;4046:24;;;;;;;;;;;;;;;;;;;;;4039:31;;3860:217;;;:::o;3398:401::-;3478:13;3494:23;3509:7;3494:14;:23::i;:::-;3478:39;;3541:5;3535:11;;:2;:11;;;;3527:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3632:5;3616:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3641:37;3658:5;3665:12;:10;:12::i;:::-;3641:16;:37::i;:::-;3616:62;3595:165;;;;;;;;;;;;:::i;:::-;;;;;;;;;3771:21;3780:2;3784:7;3771:8;:21::i;:::-;3398:401;;;:::o;1534:111:6:-;1595:7;1621:10;:17;;;;1614:24;;1534:111;:::o;4724:330:4:-;4913:41;4932:12;:10;:12::i;:::-;4946:7;4913:18;:41::i;:::-;4905:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5019:28;5029:4;5035:2;5039:7;5019:9;:28::i;:::-;4724:330;;;:::o;2341:102:13:-;2393:7;2419:17;2429:6;527:10;2419:9;;:17;;;;:::i;:::-;2412:24;;2341:102;;;:::o;1210:253:6:-;1307:7;1342:23;1359:5;1342:16;:23::i;:::-;1334:5;:31;1326:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;1430:12;:19;1443:5;1430:19;;;;;;;;;;;;;;;:26;1450:5;1430:26;;;;;;;;;;;;1423:33;;1210:253;;;;:::o;1888:256:13:-;485:4;939:14;:12;:14::i;:::-;:25;;931:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;1007:7;:5;:7::i;:::-;991:23;;:12;:10;:12::i;:::-;:23;;;;:55;;;;;1019:13;:27;1033:12;:10;:12::i;:::-;1019:27;;;;;;;;;;;;;;;;;;;;;;;;;1018:28;991:55;987:124;;;1071:8;:6;:8::i;:::-;1070:9;1062:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;987:124;1189:12:14::1;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1970:13:13::2;1986:14;:12;:14::i;:::-;1970:30;;485:4;2018:5;:16;;2010:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;2062:9;2057:81;2081:6;2077:1;:10;2057:81;;;2108:19;2123:3;2108:14;:19::i;:::-;2089:3;;;;;:::i;:::-;;;;2057:81;;;;1248:1:14;1888:256:13::0;;:::o;1340:545::-;485:4;939:14;:12;:14::i;:::-;:25;;931:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;1007:7;:5;:7::i;:::-;991:23;;:12;:10;:12::i;:::-;:23;;;;:55;;;;;1019:13;:27;1033:12;:10;:12::i;:::-;1019:27;;;;;;;;;;;;;;;;;;;;;;;;;1018:28;991:55;987:124;;;1071:8;:6;:8::i;:::-;1070:9;1062:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;987:124;1419:13:::1;1435:14;:12;:14::i;:::-;1419:30;;1453:18;1474:14;1484:3;1474:9;:14::i;:::-;1453:35;;485:4;1514:6;1506:5;:14;;;;:::i;:::-;:25;;1498:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;485:4;1563:5;:16;;1555:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;581:1;1610:6;:21;;1602:48;;;;;;;;;;;;:::i;:::-;;;;;;;;;581:1;1675:6;1662:10;:19;;;;:::i;:::-;:34;;1654:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1753:13;1759:6;1753:5;:13::i;:::-;1740:9;:26;;1732:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;1803:9;1798:81;1822:6;1818:1;:10;1798:81;;;1849:19;1864:3;1849:14;:19::i;:::-;1830:3;;;;;:::i;:::-;;;;1798:81;;;;1120:1;;1340:545:::0;;:::o;5120:179:4:-;5253:39;5270:4;5276:2;5280:7;5253:39;;;;;;;;;;;;:16;:39::i;:::-;5120:179;;;:::o;437:241:5:-;553:41;572:12;:10;:12::i;:::-;586:7;553:18;:41::i;:::-;545:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;657:14;663:7;657:5;:14::i;:::-;437:241;:::o;2785:342:13:-;2847:16;2875:18;2896:17;2906:6;2896:9;:17::i;:::-;2875:38;;2923:25;2965:10;2951:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2923:53;;2991:9;2986:110;3010:10;3006:1;:14;2986:110;;;3055:30;3075:6;3083:1;3055:19;:30::i;:::-;3041:8;3050:1;3041:11;;;;;;;;;;;;;;;;;;;;;:44;;;;;3022:3;;;;;:::i;:::-;;;;2986:110;;;;3112:8;3105:15;;;;2785:342;;;:::o;1717:230:6:-;1792:7;1827:30;:28;:30::i;:::-;1819:5;:38;1811:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;1923:10;1934:5;1923:17;;;;;;;;;;;;;;;;;;;;;;;;1916:24;;1717:230;;;:::o;2680:99:13:-;1189:12:14;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2765:7:13::1;2750:12;:22;;;;;;;;;;;;:::i;:::-;;2680:99:::0;:::o;1244:89::-;1286:7;1312:14;:12;:14::i;:::-;1305:21;;1244:89;:::o;1034:84:15:-;1081:4;1104:7;;;;;;;;;;;1097:14;;1034:84;:::o;2052:235:4:-;2124:7;2143:13;2159:7;:16;2167:7;2159:16;;;;;;;;;;;;;;;;;;;;;2143:32;;2210:1;2193:19;;:5;:19;;;;2185:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2275:5;2268:12;;;2052:235;;;:::o;1227:117:7:-;1294:4;1317:13;:23;1331:8;1317:23;;;;;;;;;;;;;;;;;;;;;;;;;1310:30;;1227:117;;;:::o;818:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;451:38:13:-;485:4;451:38;:::o;1790:205:4:-;1862:7;1906:1;1889:19;;:5;:19;;;;1881:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;1972:9;:16;1982:5;1972:16;;;;;;;;;;;;;;;;1965:23;;1790:205;;;:::o;1598:92:14:-;1189:12;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1662:21:::1;1680:1;1662:9;:21::i;:::-;1598:92::o:0;3287:185:13:-;1189:12:14;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3337:15:13::1;3355:21;3337:39;;3404:1;3394:7;:11;3386:20;;;::::0;::::1;;3416:49;3427:14;;;;;;;;;;;3443:21;3416:10;:49::i;:::-;1248:1:14;3287:185:13:o:0;543:39::-;581:1;543:39;:::o;495:42::-;527:10;495:42;:::o;966:85:14:-;1012:7;1038:6;;;;;;;;;;;1031:13;;966:85;:::o;2566:110:13:-;1189:12:14;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2662:7:13::1;2645:14;;:24;;;;;;;;;;;;;;;;;;2566:110:::0;:::o;2511:102:4:-;2567:13;2599:7;2592:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2511:102;:::o;4144:290::-;4258:12;:10;:12::i;:::-;4246:24;;:8;:24;;;;4238:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;4356:8;4311:18;:32;4330:12;:10;:12::i;:::-;4311:32;;;;;;;;;;;;;;;:42;4344:8;4311:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;4408:8;4379:48;;4394:12;:10;:12::i;:::-;4379:48;;;4418:8;4379:48;;;;;;:::i;:::-;;;;;;;;4144:290;;:::o;5365:320::-;5534:41;5553:12;:10;:12::i;:::-;5567:7;5534:18;:41::i;:::-;5526:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5639:39;5653:4;5659:2;5663:7;5672:5;5639:13;:39::i;:::-;5365:320;;;;:::o;1490:151:7:-;1189:12:14;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1591:5:7::1;1565:13;:23;1579:8;1565:23;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;1607:30;1628:8;1607:30;;;;;;:::i;:::-;;;;;;;;1490:151:::0;:::o;2679:329:4:-;2752:13;2785:16;2793:7;2785;:16::i;:::-;2777:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;2864:21;2888:10;:8;:10::i;:::-;2864:34;;2939:1;2921:7;2915:21;:25;:86;;;;;;;;;;;;;;;;;2967:7;2976:18;:7;:16;:18::i;:::-;2950:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2915:86;2908:93;;;2679:329;;;:::o;1645:238:7:-;1189:12:14;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1739:9:7::1;1735:93;1758:8;;:15;;1754:1;:19;1735:93;;;1813:4;1784:13;:26;1798:8;;1807:1;1798:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1784:26;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;1775:3;;;;;:::i;:::-;;;;1735:93;;;;1842:34;1867:8;;1842:34;;;;;;;:::i;:::-;;;;;;;;1645:238:::0;;:::o;1348:138::-;1189:12:14;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1440:4:7::1;1414:13;:23;1428:8;1414:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;1455:24;1470:8;1455:24;;;;;;:::i;:::-;;;;;;;;1348:138:::0;:::o;625:26:13:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;590:29::-;;;;;;;;;;;;;:::o;4500:162:4:-;4597:4;4620:18;:25;4639:5;4620:25;;;;;;;;;;;;;;;:35;4646:8;4620:35;;;;;;;;;;;;;;;;;;;;;;;;;4613:42;;4500:162;;;;:::o;1839:189:14:-;1189:12;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1947:1:::1;1927:22;;:8;:22;;;;1919:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2002:19;2012:8;2002:9;:19::i;:::-;1839:189:::0;:::o;909:222:6:-;1011:4;1049:35;1034:50;;;:11;:50;;;;:90;;;;1088:36;1112:11;1088:23;:36::i;:::-;1034:90;1027:97;;909:222;;;:::o;586:96:1:-;639:7;665:10;658:17;;586:96;:::o;1799:115:15:-;1348:8;:6;:8::i;:::-;1347:9;1339:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;1868:4:::1;1858:7;;:14;;;;;;;;;;;;;;;;;;1887:20;1894:12;:10;:12::i;:::-;1887:20;;;;;;:::i;:::-;;;;;;;;1799:115::o:0;2046:117::-;1613:8;:6;:8::i;:::-;1605:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;2114:5:::1;2104:7;;:15;;;;;;;;;;;;;;;;;;2134:22;2143:12;:10;:12::i;:::-;2134:22;;;;;;:::i;:::-;;;;;;;;2046:117::o:0;7157:125:4:-;7222:4;7273:1;7245:30;;:7;:16;7253:7;7245:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7238:37;;7157:125;;;:::o;11008:171::-;11109:2;11082:15;:24;11098:7;11082:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11164:7;11160:2;11126:46;;11135:23;11150:7;11135:14;:23::i;:::-;11126:46;;;;;;;;;;;;11008:171;;:::o;7440:344::-;7533:4;7557:16;7565:7;7557;:16::i;:::-;7549:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7632:13;7648:23;7663:7;7648:14;:23::i;:::-;7632:39;;7700:5;7689:16;;:7;:16;;;:51;;;;7733:7;7709:31;;:20;7721:7;7709:11;:20::i;:::-;:31;;;7689:51;:87;;;;7744:32;7761:5;7768:7;7744:16;:32::i;:::-;7689:87;7681:96;;;7440:344;;;;:::o;10337:560::-;10491:4;10464:31;;:23;10479:7;10464:14;:23::i;:::-;:31;;;10456:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10573:1;10559:16;;:2;:16;;;;10551:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10627:39;10648:4;10654:2;10658:7;10627:20;:39::i;:::-;10728:29;10745:1;10749:7;10728:8;:29::i;:::-;10787:1;10768:9;:15;10778:4;10768:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;10815:1;10798:9;:13;10808:2;10798:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;10845:2;10826:7;:16;10834:7;10826:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;10882:7;10878:2;10863:27;;10872:4;10863:27;;;;;;;;;;;;10337:560;;;:::o;3382:96:16:-;3440:7;3470:1;3466;:5;;;;:::i;:::-;3459:12;;3382:96;;;;:::o;1135:102:13:-;1182:4;1205:25;:15;:23;:25::i;:::-;1198:32;;1135:102;:::o;2151:183::-;2206:7;2216:14;:12;:14::i;:::-;2206:24;;2240:27;:15;:25;:27::i;:::-;2277:18;2287:3;2292:2;2277:9;:18::i;:::-;2324:2;2310:17;;;;;;;;;;2151:183;;:::o;9665:348:4:-;9724:13;9740:23;9755:7;9740:14;:23::i;:::-;9724:39;;9774:48;9795:5;9810:1;9814:7;9774:20;:48::i;:::-;9860:29;9877:1;9881:7;9860:8;:29::i;:::-;9920:1;9900:9;:16;9910:5;9900:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;9938:7;:16;9946:7;9938:16;;;;;;;;;;;;9931:23;;;;;;;;;;;9998:7;9994:1;9970:36;;9979:5;9970:36;;;;;;;;;;;;9665:348;;:::o;2034:169:14:-;2089:16;2108:6;;;;;;;;;;;2089:25;;2133:8;2124:6;;:17;;;;;;;;;;;;;;;;;;2187:8;2156:40;;2177:8;2156:40;;;;;;;;;;;;2034:169;;:::o;3478:178:13:-;3552:12;3570:8;:13;;3591:7;3570:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3551:52;;;3621:7;3613:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;3478:178;;;:::o;6547:307:4:-;6698:28;6708:4;6714:2;6718:7;6698:9;:28::i;:::-;6744:48;6767:4;6773:2;6777:7;6786:5;6744:22;:48::i;:::-;6736:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;6547:307;;;;:::o;2449:111:13:-;2509:13;2541:12;2534:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2449:111;:::o;275:703:17:-;331:13;557:1;548:5;:10;544:51;;;574:10;;;;;;;;;;;;;;;;;;;;;544:51;604:12;619:5;604:20;;634:14;658:75;673:1;665:4;:9;658:75;;690:8;;;;;:::i;:::-;;;;720:2;712:10;;;;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;742:39;;791:150;807:1;798:5;:10;791:150;;834:1;824:11;;;;;:::i;:::-;;;900:2;892:5;:10;;;;:::i;:::-;879:2;:24;;;;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;928:2;919:11;;;;;:::i;:::-;;;791:150;;;964:6;950:21;;;;;275:703;;;;:::o;1431:300:4:-;1533:4;1583:25;1568:40;;;:11;:40;;;;:104;;;;1639:33;1624:48;;;:11;:48;;;;1568:104;:156;;;;1688:36;1712:11;1688:23;:36::i;:::-;1568:156;1549:175;;1431:300;;;:::o;3662:233:13:-;3843:45;3870:4;3876:2;3880:7;3843:26;:45::i;:::-;3662:233;;;:::o;773:112:2:-;838:7;864;:14;;;857:21;;773:112;;;:::o;891:123::-;996:1;978:7;:14;;;:19;;;;;;;;;;;891:123;:::o;8114:108:4:-;8189:26;8199:2;8203:7;8189:26;;;;;;;;;;;;:9;:26::i;:::-;8114:108;;:::o;11732:782::-;11882:4;11902:15;:2;:13;;;:15::i;:::-;11898:610;;;11953:2;11937:36;;;11974:12;:10;:12::i;:::-;11988:4;11994:7;12003:5;11937:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;11933:523;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12197:1;12180:6;:13;:18;12176:266;;;12222:60;;;;;;;;;;:::i;:::-;;;;;;;;12176:266;12394:6;12388:13;12379:6;12375:2;12371:15;12364:38;11933:523;12069:45;;;12059:55;;;:6;:55;;;;12052:62;;;;;11898:610;12493:4;12486:11;;11732:782;;;;;;;:::o;763:155:3:-;848:4;886:25;871:40;;;:11;:40;;;;864:47;;763:155;;;:::o;872:351:7:-;1011:45;1038:4;1044:2;1048:7;1011:26;:45::i;:::-;1086:7;:5;:7::i;:::-;1070:23;;:12;:10;:12::i;:::-;:23;;;;:55;;;;;1098:13;:27;1112:12;:10;:12::i;:::-;1098:27;;;;;;;;;;;;;;;;;;;;;;;;;1097:28;1070:55;1066:151;;;1150:8;:6;:8::i;:::-;1149:9;1141:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;1066:151;872:351;;;:::o;8443:311:4:-;8568:18;8574:2;8578:7;8568:5;:18::i;:::-;8617:54;8648:1;8652:2;8656:7;8665:5;8617:22;:54::i;:::-;8596:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;8443:311;;;:::o;718:377:0:-;778:4;981:12;1046:7;1034:20;1026:28;;1087:1;1080:4;:8;1073:15;;;718:377;;;:::o;2543:572:6:-;2682:45;2709:4;2715:2;2719:7;2682:26;:45::i;:::-;2758:1;2742:18;;:4;:18;;;2738:183;;;2776:40;2808:7;2776:31;:40::i;:::-;2738:183;;;2845:2;2837:10;;:4;:10;;;2833:88;;2863:47;2896:4;2902:7;2863:32;:47::i;:::-;2833:88;2738:183;2948:1;2934:16;;:2;:16;;;2930:179;;;2966:45;3003:7;2966:36;:45::i;:::-;2930:179;;;3038:4;3032:10;;:2;:10;;;3028:81;;3058:40;3086:2;3090:7;3058:27;:40::i;:::-;3028:81;2930:179;2543:572;;;:::o;9076:372:4:-;9169:1;9155:16;;:2;:16;;;;9147:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;9227:16;9235:7;9227;:16::i;:::-;9226:17;9218:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9287:45;9316:1;9320:2;9324:7;9287:20;:45::i;:::-;9360:1;9343:9;:13;9353:2;9343:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;9390:2;9371:7;:16;9379:7;9371:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9433:7;9429:2;9408:33;;9425:1;9408:33;;;;;;;;;;;;9076:372;;:::o;13070:122::-;;;;:::o;3821:161:6:-;3924:10;:17;;;;3897:15;:24;3913:7;3897:24;;;;;;;;;;;:44;;;;3951:10;3967:7;3951:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3821:161;:::o;4599:970::-;4861:22;4911:1;4886:22;4903:4;4886:16;:22::i;:::-;:26;;;;:::i;:::-;4861:51;;4922:18;4943:17;:26;4961:7;4943:26;;;;;;;;;;;;4922:47;;5087:14;5073:10;:28;5069:323;;5117:19;5139:12;:18;5152:4;5139:18;;;;;;;;;;;;;;;:34;5158:14;5139:34;;;;;;;;;;;;5117:56;;5221:11;5188:12;:18;5201:4;5188:18;;;;;;;;;;;;;;;:30;5207:10;5188:30;;;;;;;;;;;:44;;;;5337:10;5304:17;:30;5322:11;5304:30;;;;;;;;;;;:43;;;;5069:323;;5485:17;:26;5503:7;5485:26;;;;;;;;;;;5478:33;;;5528:12;:18;5541:4;5528:18;;;;;;;;;;;;;;;:34;5547:14;5528:34;;;;;;;;;;;5521:41;;;4599:970;;;;:::o;5857:1061::-;6106:22;6151:1;6131:10;:17;;;;:21;;;;:::i;:::-;6106:46;;6162:18;6183:15;:24;6199:7;6183:24;;;;;;;;;;;;6162:45;;6529:19;6551:10;6562:14;6551:26;;;;;;;;;;;;;;;;;;;;;;;;6529:48;;6613:11;6588:10;6599;6588:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;6723:10;6692:15;:28;6708:11;6692:28;;;;;;;;;;;:41;;;;6861:15;:24;6877:7;6861:24;;;;;;;;;;;6854:31;;;6895:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5857:1061;;;;:::o;3409:217::-;3493:14;3510:20;3527:2;3510:16;:20::i;:::-;3493:37;;3567:7;3540:12;:16;3553:2;3540:16;;;;;;;;;;;;;;;:24;3557:6;3540:24;;;;;;;;;;;:34;;;;3613:6;3584:17;:26;3602:7;3584:26;;;;;;;;;;;:35;;;;3409:217;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:18:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:155::-;;942:6;929:20;920:29;;958:41;993:5;958:41;:::i;:::-;910:95;;;;:::o;1028:367::-;;;1161:3;1154:4;1146:6;1142:17;1138:27;1128:2;;1179:1;1176;1169:12;1128:2;1215:6;1202:20;1192:30;;1245:18;1237:6;1234:30;1231:2;;;1277:1;1274;1267:12;1231:2;1314:4;1306:6;1302:17;1290:29;;1368:3;1360:4;1352:6;1348:17;1338:8;1334:32;1331:41;1328:2;;;1385:1;1382;1375:12;1328:2;1118:277;;;;;:::o;1401:133::-;;1482:6;1469:20;1460:29;;1498:30;1522:5;1498:30;:::i;:::-;1450:84;;;;:::o;1540:137::-;;1623:6;1610:20;1601:29;;1639:32;1665:5;1639:32;:::i;:::-;1591:86;;;;:::o;1683:141::-;;1770:6;1764:13;1755:22;;1786:32;1812:5;1786:32;:::i;:::-;1745:79;;;;:::o;1843:271::-;;1947:3;1940:4;1932:6;1928:17;1924:27;1914:2;;1965:1;1962;1955:12;1914:2;2005:6;1992:20;2030:78;2104:3;2096:6;2089:4;2081:6;2077:17;2030:78;:::i;:::-;2021:87;;1904:210;;;;;:::o;2134:273::-;;2239:3;2232:4;2224:6;2220:17;2216:27;2206:2;;2257:1;2254;2247:12;2206:2;2297:6;2284:20;2322:79;2397:3;2389:6;2382:4;2374:6;2370:17;2322:79;:::i;:::-;2313:88;;2196:211;;;;;:::o;2413:139::-;;2497:6;2484:20;2475:29;;2513:33;2540:5;2513:33;:::i;:::-;2465:87;;;;:::o;2558:262::-;;2666:2;2654:9;2645:7;2641:23;2637:32;2634:2;;;2682:1;2679;2672:12;2634:2;2725:1;2750:53;2795:7;2786:6;2775:9;2771:22;2750:53;:::i;:::-;2740:63;;2696:117;2624:196;;;;:::o;2826:278::-;;2942:2;2930:9;2921:7;2917:23;2913:32;2910:2;;;2958:1;2955;2948:12;2910:2;3001:1;3026:61;3079:7;3070:6;3059:9;3055:22;3026:61;:::i;:::-;3016:71;;2972:125;2900:204;;;;:::o;3110:407::-;;;3235:2;3223:9;3214:7;3210:23;3206:32;3203:2;;;3251:1;3248;3241:12;3203:2;3294:1;3319:53;3364:7;3355:6;3344:9;3340:22;3319:53;:::i;:::-;3309:63;;3265:117;3421:2;3447:53;3492:7;3483:6;3472:9;3468:22;3447:53;:::i;:::-;3437:63;;3392:118;3193:324;;;;;:::o;3523:552::-;;;;3665:2;3653:9;3644:7;3640:23;3636:32;3633:2;;;3681:1;3678;3671:12;3633:2;3724:1;3749:53;3794:7;3785:6;3774:9;3770:22;3749:53;:::i;:::-;3739:63;;3695:117;3851:2;3877:53;3922:7;3913:6;3902:9;3898:22;3877:53;:::i;:::-;3867:63;;3822:118;3979:2;4005:53;4050:7;4041:6;4030:9;4026:22;4005:53;:::i;:::-;3995:63;;3950:118;3623:452;;;;;:::o;4081:809::-;;;;;4249:3;4237:9;4228:7;4224:23;4220:33;4217:2;;;4266:1;4263;4256:12;4217:2;4309:1;4334:53;4379:7;4370:6;4359:9;4355:22;4334:53;:::i;:::-;4324:63;;4280:117;4436:2;4462:53;4507:7;4498:6;4487:9;4483:22;4462:53;:::i;:::-;4452:63;;4407:118;4564:2;4590:53;4635:7;4626:6;4615:9;4611:22;4590:53;:::i;:::-;4580:63;;4535:118;4720:2;4709:9;4705:18;4692:32;4751:18;4743:6;4740:30;4737:2;;;4783:1;4780;4773:12;4737:2;4811:62;4865:7;4856:6;4845:9;4841:22;4811:62;:::i;:::-;4801:72;;4663:220;4207:683;;;;;;;:::o;4896:401::-;;;5018:2;5006:9;4997:7;4993:23;4989:32;4986:2;;;5034:1;5031;5024:12;4986:2;5077:1;5102:53;5147:7;5138:6;5127:9;5123:22;5102:53;:::i;:::-;5092:63;;5048:117;5204:2;5230:50;5272:7;5263:6;5252:9;5248:22;5230:50;:::i;:::-;5220:60;;5175:115;4976:321;;;;;:::o;5303:407::-;;;5428:2;5416:9;5407:7;5403:23;5399:32;5396:2;;;5444:1;5441;5434:12;5396:2;5487:1;5512:53;5557:7;5548:6;5537:9;5533:22;5512:53;:::i;:::-;5502:63;;5458:117;5614:2;5640:53;5685:7;5676:6;5665:9;5661:22;5640:53;:::i;:::-;5630:63;;5585:118;5386:324;;;;;:::o;5716:425::-;;;5859:2;5847:9;5838:7;5834:23;5830:32;5827:2;;;5875:1;5872;5865:12;5827:2;5946:1;5935:9;5931:17;5918:31;5976:18;5968:6;5965:30;5962:2;;;6008:1;6005;5998:12;5962:2;6044:80;6116:7;6107:6;6096:9;6092:22;6044:80;:::i;:::-;6026:98;;;;5889:245;5817:324;;;;;:::o;6147:256::-;;6252:2;6240:9;6231:7;6227:23;6223:32;6220:2;;;6268:1;6265;6258:12;6220:2;6311:1;6336:50;6378:7;6369:6;6358:9;6354:22;6336:50;:::i;:::-;6326:60;;6282:114;6210:193;;;;:::o;6409:260::-;;6516:2;6504:9;6495:7;6491:23;6487:32;6484:2;;;6532:1;6529;6522:12;6484:2;6575:1;6600:52;6644:7;6635:6;6624:9;6620:22;6600:52;:::i;:::-;6590:62;;6546:116;6474:195;;;;:::o;6675:282::-;;6793:2;6781:9;6772:7;6768:23;6764:32;6761:2;;;6809:1;6806;6799:12;6761:2;6852:1;6877:63;6932:7;6923:6;6912:9;6908:22;6877:63;:::i;:::-;6867:73;;6823:127;6751:206;;;;:::o;6963:375::-;;7081:2;7069:9;7060:7;7056:23;7052:32;7049:2;;;7097:1;7094;7087:12;7049:2;7168:1;7157:9;7153:17;7140:31;7198:18;7190:6;7187:30;7184:2;;;7230:1;7227;7220:12;7184:2;7258:63;7313:7;7304:6;7293:9;7289:22;7258:63;:::i;:::-;7248:73;;7111:220;7039:299;;;;:::o;7344:262::-;;7452:2;7440:9;7431:7;7427:23;7423:32;7420:2;;;7468:1;7465;7458:12;7420:2;7511:1;7536:53;7581:7;7572:6;7561:9;7557:22;7536:53;:::i;:::-;7526:63;;7482:117;7410:196;;;;:::o;7612:179::-;;7702:46;7744:3;7736:6;7702:46;:::i;:::-;7780:4;7775:3;7771:14;7757:28;;7692:99;;;;:::o;7797:179::-;;7887:46;7929:3;7921:6;7887:46;:::i;:::-;7965:4;7960:3;7956:14;7942:28;;7877:99;;;;:::o;7982:108::-;8059:24;8077:5;8059:24;:::i;:::-;8054:3;8047:37;8037:53;;:::o;8096:118::-;8183:24;8201:5;8183:24;:::i;:::-;8178:3;8171:37;8161:53;;:::o;8250:699::-;;8402:86;8481:6;8476:3;8402:86;:::i;:::-;8395:93;;8512:58;8564:5;8512:58;:::i;:::-;8593:7;8624:1;8609:315;8634:6;8631:1;8628:13;8609:315;;;8704:42;8739:6;8730:7;8704:42;:::i;:::-;8766:63;8825:3;8810:13;8766:63;:::i;:::-;8759:70;;8852:62;8907:6;8852:62;:::i;:::-;8842:72;;8669:255;8656:1;8653;8649:9;8644:14;;8609:315;;;8613:14;8940:3;8933:10;;8384:565;;;;;;;:::o;8985:732::-;;9133:54;9181:5;9133:54;:::i;:::-;9203:86;9282:6;9277:3;9203:86;:::i;:::-;9196:93;;9313:56;9363:5;9313:56;:::i;:::-;9392:7;9423:1;9408:284;9433:6;9430:1;9427:13;9408:284;;;9509:6;9503:13;9536:63;9595:3;9580:13;9536:63;:::i;:::-;9529:70;;9622:60;9675:6;9622:60;:::i;:::-;9612:70;;9468:224;9455:1;9452;9448:9;9443:14;;9408:284;;;9412:14;9708:3;9701:10;;9109:608;;;;;;;:::o;9723:109::-;9804:21;9819:5;9804:21;:::i;:::-;9799:3;9792:34;9782:50;;:::o;9838:360::-;;9952:38;9984:5;9952:38;:::i;:::-;10006:70;10069:6;10064:3;10006:70;:::i;:::-;9999:77;;10085:52;10130:6;10125:3;10118:4;10111:5;10107:16;10085:52;:::i;:::-;10162:29;10184:6;10162:29;:::i;:::-;10157:3;10153:39;10146:46;;9928:270;;;;;:::o;10204:364::-;;10320:39;10353:5;10320:39;:::i;:::-;10375:71;10439:6;10434:3;10375:71;:::i;:::-;10368:78;;10455:52;10500:6;10495:3;10488:4;10481:5;10477:16;10455:52;:::i;:::-;10532:29;10554:6;10532:29;:::i;:::-;10527:3;10523:39;10516:46;;10296:272;;;;;:::o;10574:377::-;;10708:39;10741:5;10708:39;:::i;:::-;10763:89;10845:6;10840:3;10763:89;:::i;:::-;10756:96;;10861:52;10906:6;10901:3;10894:4;10887:5;10883:16;10861:52;:::i;:::-;10938:6;10933:3;10929:16;10922:23;;10684:267;;;;;:::o;10957:375::-;;11120:67;11184:2;11179:3;11120:67;:::i;:::-;11113:74;;11217:34;11213:1;11208:3;11204:11;11197:55;11283:13;11278:2;11273:3;11269:12;11262:35;11323:2;11318:3;11314:12;11307:19;;11103:229;;;:::o;11338:318::-;;11501:67;11565:2;11560:3;11501:67;:::i;:::-;11494:74;;11598:22;11594:1;11589:3;11585:11;11578:43;11647:2;11642:3;11638:12;11631:19;;11484:172;;;:::o;11662:312::-;;11825:67;11889:2;11884:3;11825:67;:::i;:::-;11818:74;;11922:16;11918:1;11913:3;11909:11;11902:37;11965:2;11960:3;11956:12;11949:19;;11808:166;;;:::o;11980:375::-;;12143:67;12207:2;12202:3;12143:67;:::i;:::-;12136:74;;12240:34;12236:1;12231:3;12227:11;12220:55;12306:13;12301:2;12296:3;12292:12;12285:35;12346:2;12341:3;12337:12;12330:19;;12126:229;;;:::o;12361:382::-;;12524:67;12588:2;12583:3;12524:67;:::i;:::-;12517:74;;12621:34;12617:1;12612:3;12608:11;12601:55;12687:20;12682:2;12677:3;12673:12;12666:42;12734:2;12729:3;12725:12;12718:19;;12507:236;;;:::o;12749:370::-;;12912:67;12976:2;12971:3;12912:67;:::i;:::-;12905:74;;13009:34;13005:1;13000:3;12996:11;12989:55;13075:8;13070:2;13065:3;13061:12;13054:30;13110:2;13105:3;13101:12;13094:19;;12895:224;;;:::o;13125:326::-;;13288:67;13352:2;13347:3;13288:67;:::i;:::-;13281:74;;13385:30;13381:1;13376:3;13372:11;13365:51;13442:2;13437:3;13433:12;13426:19;;13271:180;;;:::o;13457:368::-;;13620:67;13684:2;13679:3;13620:67;:::i;:::-;13613:74;;13717:34;13713:1;13708:3;13704:11;13697:55;13783:6;13778:2;13773:3;13769:12;13762:28;13816:2;13811:3;13807:12;13800:19;;13603:222;;;:::o;13831:323::-;;13994:67;14058:2;14053:3;13994:67;:::i;:::-;13987:74;;14091:27;14087:1;14082:3;14078:11;14071:48;14145:2;14140:3;14136:12;14129:19;;13977:177;;;:::o;14160:306::-;;14323:66;14387:1;14382:3;14323:66;:::i;:::-;14316:73;;14419:11;14415:1;14410:3;14406:11;14399:32;14457:2;14452:3;14448:12;14441:19;;14306:160;;;:::o;14472:376::-;;14635:67;14699:2;14694:3;14635:67;:::i;:::-;14628:74;;14732:34;14728:1;14723:3;14719:11;14712:55;14798:14;14793:2;14788:3;14784:12;14777:36;14839:2;14834:3;14830:12;14823:19;;14618:230;;;:::o;14854:314::-;;15017:67;15081:2;15076:3;15017:67;:::i;:::-;15010:74;;15114:18;15110:1;15105:3;15101:11;15094:39;15159:2;15154:3;15150:12;15143:19;;15000:168;;;:::o;15174:388::-;;15337:67;15401:2;15396:3;15337:67;:::i;:::-;15330:74;;15434:34;15430:1;15425:3;15421:11;15414:55;15500:26;15495:2;15490:3;15486:12;15479:48;15553:2;15548:3;15544:12;15537:19;;15320:242;;;:::o;15568:374::-;;15731:67;15795:2;15790:3;15731:67;:::i;:::-;15724:74;;15828:34;15824:1;15819:3;15815:11;15808:55;15894:12;15889:2;15884:3;15880:12;15873:34;15933:2;15928:3;15924:12;15917:19;;15714:228;;;:::o;15948:373::-;;16111:67;16175:2;16170:3;16111:67;:::i;:::-;16104:74;;16208:34;16204:1;16199:3;16195:11;16188:55;16274:11;16269:2;16264:3;16260:12;16253:33;16312:2;16307:3;16303:12;16296:19;;16094:227;;;:::o;16327:330::-;;16490:67;16554:2;16549:3;16490:67;:::i;:::-;16483:74;;16587:34;16583:1;16578:3;16574:11;16567:55;16648:2;16643:3;16639:12;16632:19;;16473:184;;;:::o;16663:305::-;;16826:66;16890:1;16885:3;16826:66;:::i;:::-;16819:73;;16922:10;16918:1;16913:3;16909:11;16902:31;16959:2;16954:3;16950:12;16943:19;;16809:159;;;:::o;16974:376::-;;17137:67;17201:2;17196:3;17137:67;:::i;:::-;17130:74;;17234:34;17230:1;17225:3;17221:11;17214:55;17300:14;17295:2;17290:3;17286:12;17279:36;17341:2;17336:3;17332:12;17325:19;;17120:230;;;:::o;17356:330::-;;17519:67;17583:2;17578:3;17519:67;:::i;:::-;17512:74;;17616:34;17612:1;17607:3;17603:11;17596:55;17677:2;17672:3;17668:12;17661:19;;17502:184;;;:::o;17692:373::-;;17855:67;17919:2;17914:3;17855:67;:::i;:::-;17848:74;;17952:34;17948:1;17943:3;17939:11;17932:55;18018:11;18013:2;18008:3;18004:12;17997:33;18056:2;18051:3;18047:12;18040:19;;17838:227;;;:::o;18071:379::-;;18234:67;18298:2;18293:3;18234:67;:::i;:::-;18227:74;;18331:34;18327:1;18322:3;18318:11;18311:55;18397:17;18392:2;18387:3;18383:12;18376:39;18441:2;18436:3;18432:12;18425:19;;18217:233;;;:::o;18456:315::-;;18619:67;18683:2;18678:3;18619:67;:::i;:::-;18612:74;;18716:19;18712:1;18707:3;18703:11;18696:40;18762:2;18757:3;18753:12;18746:19;;18602:169;;;:::o;18777:319::-;;18940:67;19004:2;18999:3;18940:67;:::i;:::-;18933:74;;19037:23;19033:1;19028:3;19024:11;19017:44;19087:2;19082:3;19078:12;19071:19;;18923:173;;;:::o;19102:365::-;;19265:67;19329:2;19324:3;19265:67;:::i;:::-;19258:74;;19362:34;19358:1;19353:3;19349:11;19342:55;19428:3;19423:2;19418:3;19414:12;19407:25;19458:2;19453:3;19449:12;19442:19;;19248:219;;;:::o;19473:297::-;;19653:83;19734:1;19729:3;19653:83;:::i;:::-;19646:90;;19762:1;19757:3;19753:11;19746:18;;19636:134;;;:::o;19776:314::-;;19939:67;20003:2;19998:3;19939:67;:::i;:::-;19932:74;;20036:18;20032:1;20027:3;20023:11;20016:39;20081:2;20076:3;20072:12;20065:19;;19922:168;;;:::o;20096:381::-;;20259:67;20323:2;20318:3;20259:67;:::i;:::-;20252:74;;20356:34;20352:1;20347:3;20343:11;20336:55;20422:19;20417:2;20412:3;20408:12;20401:41;20468:2;20463:3;20459:12;20452:19;;20242:235;;;:::o;20483:376::-;;20646:67;20710:2;20705:3;20646:67;:::i;:::-;20639:74;;20743:34;20739:1;20734:3;20730:11;20723:55;20809:14;20804:2;20799:3;20795:12;20788:36;20850:2;20845:3;20841:12;20834:19;;20629:230;;;:::o;20865:380::-;;21028:67;21092:2;21087:3;21028:67;:::i;:::-;21021:74;;21125:34;21121:1;21116:3;21112:11;21105:55;21191:18;21186:2;21181:3;21177:12;21170:40;21236:2;21231:3;21227:12;21220:19;;21011:234;;;:::o;21251:108::-;21328:24;21346:5;21328:24;:::i;:::-;21323:3;21316:37;21306:53;;:::o;21365:118::-;21452:24;21470:5;21452:24;:::i;:::-;21447:3;21440:37;21430:53;;:::o;21489:435::-;;21691:95;21782:3;21773:6;21691:95;:::i;:::-;21684:102;;21803:95;21894:3;21885:6;21803:95;:::i;:::-;21796:102;;21915:3;21908:10;;21673:251;;;;;:::o;21930:379::-;;22136:147;22279:3;22136:147;:::i;:::-;22129:154;;22300:3;22293:10;;22118:191;;;:::o;22315:222::-;;22446:2;22435:9;22431:18;22423:26;;22459:71;22527:1;22516:9;22512:17;22503:6;22459:71;:::i;:::-;22413:124;;;;:::o;22543:640::-;;22776:3;22765:9;22761:19;22753:27;;22790:71;22858:1;22847:9;22843:17;22834:6;22790:71;:::i;:::-;22871:72;22939:2;22928:9;22924:18;22915:6;22871:72;:::i;:::-;22953;23021:2;23010:9;23006:18;22997:6;22953:72;:::i;:::-;23072:9;23066:4;23062:20;23057:2;23046:9;23042:18;23035:48;23100:76;23171:4;23162:6;23100:76;:::i;:::-;23092:84;;22743:440;;;;;;;:::o;23189:393::-;;23380:2;23369:9;23365:18;23357:26;;23429:9;23423:4;23419:20;23415:1;23404:9;23400:17;23393:47;23457:118;23570:4;23561:6;23553;23457:118;:::i;:::-;23449:126;;23347:235;;;;;:::o;23588:373::-;;23769:2;23758:9;23754:18;23746:26;;23818:9;23812:4;23808:20;23804:1;23793:9;23789:17;23782:47;23846:108;23949:4;23940:6;23846:108;:::i;:::-;23838:116;;23736:225;;;;:::o;23967:210::-;;24092:2;24081:9;24077:18;24069:26;;24105:65;24167:1;24156:9;24152:17;24143:6;24105:65;:::i;:::-;24059:118;;;;:::o;24183:313::-;;24334:2;24323:9;24319:18;24311:26;;24383:9;24377:4;24373:20;24369:1;24358:9;24354:17;24347:47;24411:78;24484:4;24475:6;24411:78;:::i;:::-;24403:86;;24301:195;;;;:::o;24502:419::-;;24706:2;24695:9;24691:18;24683:26;;24755:9;24749:4;24745:20;24741:1;24730:9;24726:17;24719:47;24783:131;24909:4;24783:131;:::i;:::-;24775:139;;24673:248;;;:::o;24927:419::-;;25131:2;25120:9;25116:18;25108:26;;25180:9;25174:4;25170:20;25166:1;25155:9;25151:17;25144:47;25208:131;25334:4;25208:131;:::i;:::-;25200:139;;25098:248;;;:::o;25352:419::-;;25556:2;25545:9;25541:18;25533:26;;25605:9;25599:4;25595:20;25591:1;25580:9;25576:17;25569:47;25633:131;25759:4;25633:131;:::i;:::-;25625:139;;25523:248;;;:::o;25777:419::-;;25981:2;25970:9;25966:18;25958:26;;26030:9;26024:4;26020:20;26016:1;26005:9;26001:17;25994:47;26058:131;26184:4;26058:131;:::i;:::-;26050:139;;25948:248;;;:::o;26202:419::-;;26406:2;26395:9;26391:18;26383:26;;26455:9;26449:4;26445:20;26441:1;26430:9;26426:17;26419:47;26483:131;26609:4;26483:131;:::i;:::-;26475:139;;26373:248;;;:::o;26627:419::-;;26831:2;26820:9;26816:18;26808:26;;26880:9;26874:4;26870:20;26866:1;26855:9;26851:17;26844:47;26908:131;27034:4;26908:131;:::i;:::-;26900:139;;26798:248;;;:::o;27052:419::-;;27256:2;27245:9;27241:18;27233:26;;27305:9;27299:4;27295:20;27291:1;27280:9;27276:17;27269:47;27333:131;27459:4;27333:131;:::i;:::-;27325:139;;27223:248;;;:::o;27477:419::-;;27681:2;27670:9;27666:18;27658:26;;27730:9;27724:4;27720:20;27716:1;27705:9;27701:17;27694:47;27758:131;27884:4;27758:131;:::i;:::-;27750:139;;27648:248;;;:::o;27902:419::-;;28106:2;28095:9;28091:18;28083:26;;28155:9;28149:4;28145:20;28141:1;28130:9;28126:17;28119:47;28183:131;28309:4;28183:131;:::i;:::-;28175:139;;28073:248;;;:::o;28327:419::-;;28531:2;28520:9;28516:18;28508:26;;28580:9;28574:4;28570:20;28566:1;28555:9;28551:17;28544:47;28608:131;28734:4;28608:131;:::i;:::-;28600:139;;28498:248;;;:::o;28752:419::-;;28956:2;28945:9;28941:18;28933:26;;29005:9;28999:4;28995:20;28991:1;28980:9;28976:17;28969:47;29033:131;29159:4;29033:131;:::i;:::-;29025:139;;28923:248;;;:::o;29177:419::-;;29381:2;29370:9;29366:18;29358:26;;29430:9;29424:4;29420:20;29416:1;29405:9;29401:17;29394:47;29458:131;29584:4;29458:131;:::i;:::-;29450:139;;29348:248;;;:::o;29602:419::-;;29806:2;29795:9;29791:18;29783:26;;29855:9;29849:4;29845:20;29841:1;29830:9;29826:17;29819:47;29883:131;30009:4;29883:131;:::i;:::-;29875:139;;29773:248;;;:::o;30027:419::-;;30231:2;30220:9;30216:18;30208:26;;30280:9;30274:4;30270:20;30266:1;30255:9;30251:17;30244:47;30308:131;30434:4;30308:131;:::i;:::-;30300:139;;30198:248;;;:::o;30452:419::-;;30656:2;30645:9;30641:18;30633:26;;30705:9;30699:4;30695:20;30691:1;30680:9;30676:17;30669:47;30733:131;30859:4;30733:131;:::i;:::-;30725:139;;30623:248;;;:::o;30877:419::-;;31081:2;31070:9;31066:18;31058:26;;31130:9;31124:4;31120:20;31116:1;31105:9;31101:17;31094:47;31158:131;31284:4;31158:131;:::i;:::-;31150:139;;31048:248;;;:::o;31302:419::-;;31506:2;31495:9;31491:18;31483:26;;31555:9;31549:4;31545:20;31541:1;31530:9;31526:17;31519:47;31583:131;31709:4;31583:131;:::i;:::-;31575:139;;31473:248;;;:::o;31727:419::-;;31931:2;31920:9;31916:18;31908:26;;31980:9;31974:4;31970:20;31966:1;31955:9;31951:17;31944:47;32008:131;32134:4;32008:131;:::i;:::-;32000:139;;31898:248;;;:::o;32152:419::-;;32356:2;32345:9;32341:18;32333:26;;32405:9;32399:4;32395:20;32391:1;32380:9;32376:17;32369:47;32433:131;32559:4;32433:131;:::i;:::-;32425:139;;32323:248;;;:::o;32577:419::-;;32781:2;32770:9;32766:18;32758:26;;32830:9;32824:4;32820:20;32816:1;32805:9;32801:17;32794:47;32858:131;32984:4;32858:131;:::i;:::-;32850:139;;32748:248;;;:::o;33002:419::-;;33206:2;33195:9;33191:18;33183:26;;33255:9;33249:4;33245:20;33241:1;33230:9;33226:17;33219:47;33283:131;33409:4;33283:131;:::i;:::-;33275:139;;33173:248;;;:::o;33427:419::-;;33631:2;33620:9;33616:18;33608:26;;33680:9;33674:4;33670:20;33666:1;33655:9;33651:17;33644:47;33708:131;33834:4;33708:131;:::i;:::-;33700:139;;33598:248;;;:::o;33852:419::-;;34056:2;34045:9;34041:18;34033:26;;34105:9;34099:4;34095:20;34091:1;34080:9;34076:17;34069:47;34133:131;34259:4;34133:131;:::i;:::-;34125:139;;34023:248;;;:::o;34277:419::-;;34481:2;34470:9;34466:18;34458:26;;34530:9;34524:4;34520:20;34516:1;34505:9;34501:17;34494:47;34558:131;34684:4;34558:131;:::i;:::-;34550:139;;34448:248;;;:::o;34702:419::-;;34906:2;34895:9;34891:18;34883:26;;34955:9;34949:4;34945:20;34941:1;34930:9;34926:17;34919:47;34983:131;35109:4;34983:131;:::i;:::-;34975:139;;34873:248;;;:::o;35127:419::-;;35331:2;35320:9;35316:18;35308:26;;35380:9;35374:4;35370:20;35366:1;35355:9;35351:17;35344:47;35408:131;35534:4;35408:131;:::i;:::-;35400:139;;35298:248;;;:::o;35552:419::-;;35756:2;35745:9;35741:18;35733:26;;35805:9;35799:4;35795:20;35791:1;35780:9;35776:17;35769:47;35833:131;35959:4;35833:131;:::i;:::-;35825:139;;35723:248;;;:::o;35977:419::-;;36181:2;36170:9;36166:18;36158:26;;36230:9;36224:4;36220:20;36216:1;36205:9;36201:17;36194:47;36258:131;36384:4;36258:131;:::i;:::-;36250:139;;36148:248;;;:::o;36402:222::-;;36533:2;36522:9;36518:18;36510:26;;36546:71;36614:1;36603:9;36599:17;36590:6;36546:71;:::i;:::-;36500:124;;;;:::o;36630:283::-;;36696:2;36690:9;36680:19;;36738:4;36730:6;36726:17;36845:6;36833:10;36830:22;36809:18;36797:10;36794:34;36791:62;36788:2;;;36856:18;;:::i;:::-;36788:2;36896:10;36892:2;36885:22;36670:243;;;;:::o;36919:331::-;;37070:18;37062:6;37059:30;37056:2;;;37092:18;;:::i;:::-;37056:2;37177:4;37173:9;37166:4;37158:6;37154:17;37150:33;37142:41;;37238:4;37232;37228:15;37220:23;;36985:265;;;:::o;37256:332::-;;37408:18;37400:6;37397:30;37394:2;;;37430:18;;:::i;:::-;37394:2;37515:4;37511:9;37504:4;37496:6;37492:17;37488:33;37480:41;;37576:4;37570;37566:15;37558:23;;37323:265;;;:::o;37594:102::-;;37686:3;37678:11;;37668:28;;;:::o;37702:132::-;;37792:3;37784:11;;37822:4;37817:3;37813:14;37805:22;;37774:60;;;:::o;37840:114::-;;37941:5;37935:12;37925:22;;37914:40;;;:::o;37960:98::-;;38045:5;38039:12;38029:22;;38018:40;;;:::o;38064:99::-;;38150:5;38144:12;38134:22;;38123:40;;;:::o;38169:115::-;;38273:4;38268:3;38264:14;38256:22;;38246:38;;;:::o;38290:113::-;;38392:4;38387:3;38383:14;38375:22;;38365:38;;;:::o;38409:184::-;;38542:6;38537:3;38530:19;38582:4;38577:3;38573:14;38558:29;;38520:73;;;;:::o;38599:184::-;;38732:6;38727:3;38720:19;38772:4;38767:3;38763:14;38748:29;;38710:73;;;;:::o;38789:168::-;;38906:6;38901:3;38894:19;38946:4;38941:3;38937:14;38922:29;;38884:73;;;;:::o;38963:147::-;;39101:3;39086:18;;39076:34;;;;:::o;39116:169::-;;39234:6;39229:3;39222:19;39274:4;39269:3;39265:14;39250:29;;39212:73;;;;:::o;39291:148::-;;39430:3;39415:18;;39405:34;;;;:::o;39445:122::-;;39522:39;39557:2;39552:3;39548:12;39543:3;39522:39;:::i;:::-;39513:48;;39503:64;;;;:::o;39573:305::-;;39632:20;39650:1;39632:20;:::i;:::-;39627:25;;39666:20;39684:1;39666:20;:::i;:::-;39661:25;;39820:1;39752:66;39748:74;39745:1;39742:81;39739:2;;;39826:18;;:::i;:::-;39739:2;39870:1;39867;39863:9;39856:16;;39617:261;;;;:::o;39884:185::-;;39941:20;39959:1;39941:20;:::i;:::-;39936:25;;39975:20;39993:1;39975:20;:::i;:::-;39970:25;;40014:1;40004:2;;40019:18;;:::i;:::-;40004:2;40061:1;40058;40054:9;40049:14;;39926:143;;;;:::o;40075:348::-;;40138:20;40156:1;40138:20;:::i;:::-;40133:25;;40172:20;40190:1;40172:20;:::i;:::-;40167:25;;40360:1;40292:66;40288:74;40285:1;40282:81;40277:1;40270:9;40263:17;40259:105;40256:2;;;40367:18;;:::i;:::-;40256:2;40415:1;40412;40408:9;40397:20;;40123:300;;;;:::o;40429:191::-;;40489:20;40507:1;40489:20;:::i;:::-;40484:25;;40523:20;40541:1;40523:20;:::i;:::-;40518:25;;40562:1;40559;40556:8;40553:2;;;40567:18;;:::i;:::-;40553:2;40612:1;40609;40605:9;40597:17;;40474:146;;;;:::o;40626:96::-;;40692:24;40710:5;40692:24;:::i;:::-;40681:35;;40671:51;;;:::o;40728:104::-;;40802:24;40820:5;40802:24;:::i;:::-;40791:35;;40781:51;;;:::o;40838:90::-;;40915:5;40908:13;40901:21;40890:32;;40880:48;;;:::o;40934:149::-;;41010:66;41003:5;40999:78;40988:89;;40978:105;;;:::o;41089:126::-;;41166:42;41159:5;41155:54;41144:65;;41134:81;;;:::o;41221:77::-;;41287:5;41276:16;;41266:32;;;:::o;41304:154::-;41388:6;41383:3;41378;41365:30;41450:1;41441:6;41436:3;41432:16;41425:27;41355:103;;;:::o;41464:307::-;41532:1;41542:113;41556:6;41553:1;41550:13;41542:113;;;41641:1;41636:3;41632:11;41626:18;41622:1;41617:3;41613:11;41606:39;41578:2;41575:1;41571:10;41566:15;;41542:113;;;41673:6;41670:1;41667:13;41664:2;;;41753:1;41744:6;41739:3;41735:16;41728:27;41664:2;41513:258;;;;:::o;41777:320::-;;41858:1;41852:4;41848:12;41838:22;;41905:1;41899:4;41895:12;41926:18;41916:2;;41982:4;41974:6;41970:17;41960:27;;41916:2;42044;42036:6;42033:14;42013:18;42010:38;42007:2;;;42063:18;;:::i;:::-;42007:2;41828:269;;;;:::o;42103:233::-;;42165:24;42183:5;42165:24;:::i;:::-;42156:33;;42211:66;42204:5;42201:77;42198:2;;;42281:18;;:::i;:::-;42198:2;42328:1;42321:5;42317:13;42310:20;;42146:190;;;:::o;42342:176::-;;42391:20;42409:1;42391:20;:::i;:::-;42386:25;;42425:20;42443:1;42425:20;:::i;:::-;42420:25;;42464:1;42454:2;;42469:18;;:::i;:::-;42454:2;42510:1;42507;42503:9;42498:14;;42376:142;;;;:::o;42524:180::-;42572:77;42569:1;42562:88;42669:4;42666:1;42659:15;42693:4;42690:1;42683:15;42710:180;42758:77;42755:1;42748:88;42855:4;42852:1;42845:15;42879:4;42876:1;42869:15;42896:180;42944:77;42941:1;42934:88;43041:4;43038:1;43031:15;43065:4;43062:1;43055:15;43082:180;43130:77;43127:1;43120:88;43227:4;43224:1;43217:15;43251:4;43248:1;43241:15;43268:102;;43360:2;43356:7;43351:2;43344:5;43340:14;43336:28;43326:38;;43316:54;;;:::o;43376:122::-;43449:24;43467:5;43449:24;:::i;:::-;43442:5;43439:35;43429:2;;43488:1;43485;43478:12;43429:2;43419:79;:::o;43504:138::-;43585:32;43611:5;43585:32;:::i;:::-;43578:5;43575:43;43565:2;;43632:1;43629;43622:12;43565:2;43555:87;:::o;43648:116::-;43718:21;43733:5;43718:21;:::i;:::-;43711:5;43708:32;43698:2;;43754:1;43751;43744:12;43698:2;43688:76;:::o;43770:120::-;43842:23;43859:5;43842:23;:::i;:::-;43835:5;43832:34;43822:2;;43880:1;43877;43870:12;43822:2;43812:78;:::o;43896:122::-;43969:24;43987:5;43969:24;:::i;:::-;43962:5;43959:35;43949:2;;44008:1;44005;43998:12;43949:2;43939:79;:::o

Swarm Source

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