ETH Price: $3,097.17 (+0.85%)
Gas: 3 Gwei

Token

Gods (GODS)
 

Overview

Max Total Supply

2,005 GODS

Holders

727

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

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:
Gods

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-25
*/

// Sources flattened with hardhat v2.6.0 https://hardhat.org

// File @openzeppelin/contracts/utils/introspection/[email protected]

// 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 @openzeppelin/contracts/token/ERC721/[email protected]


pragma solidity ^0.8.0;

/**
 * @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 @openzeppelin/contracts/token/ERC721/[email protected]


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 @openzeppelin/contracts/token/ERC721/extensions/[email protected]


pragma solidity ^0.8.0;

/**
 * @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 @openzeppelin/contracts/utils/[email protected]


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 @openzeppelin/contracts/utils/[email protected]


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 @openzeppelin/contracts/utils/[email protected]


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


// File @openzeppelin/contracts/utils/introspection/[email protected]


pragma solidity ^0.8.0;

/**
 * @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 @openzeppelin/contracts/token/ERC721/[email protected]


pragma solidity ^0.8.0;







/**
 * @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 @openzeppelin/contracts/token/ERC721/extensions/[email protected]


pragma solidity ^0.8.0;

/**
 * @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 @openzeppelin/contracts/token/ERC721/extensions/[email protected]


pragma solidity ^0.8.0;


/**
 * @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 @openzeppelin/contracts/access/[email protected]


pragma solidity ^0.8.0;

/**
 * @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 contracts/Gods.sol

pragma solidity ^0.8.0;


contract Gods is ERC721Enumerable, Ownable {
  using Strings for uint256;

  address public _vault;
  bool public _active = false;
  bool public _presaleActive = false;
  string public _baseTokenURI;
  uint256 public _gifts = 100;
  uint256 public _price = 0.05 ether;


  address public _t1 = 0xE97f9392c6199c29039A8ac9F6873B4ab1865975;
  address public _t2 = 0x1550B90c56367658b16D81EbaC264672EC3c4fD4;
  address public _t3 = 0x5404980C4e40310073f4c959E91bA94c4C47Ca03;
  address public _t4 = 0x2E7A2e45718d936b991F8bF71b8ABD9BD15c97E9;
  address public _t5 = 0xB4fd6168D1aB6Dce105D220ceB1661EBd4606339;

  constructor() ERC721("Gods", "GODS") {}

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

  function setActive(bool active) public onlyOwner {
     _active = active;
  }

  function setPresaleActive(bool presaleActive) public onlyOwner {
     _presaleActive = presaleActive;
  }

  function setVault(address vault) public onlyOwner {
    _vault = vault;
  }

  function setBaseURI(string memory baseURI) public onlyOwner {
    _baseTokenURI = baseURI;
  }

  function setPrice(uint256 price) public onlyOwner {
    _price = price;
  }

  function gift(address _to, uint256 _amount) external onlyOwner {
    require(_amount <= _gifts, "Gift reserve exceeded with provided amount.");

    uint256 supply = totalSupply();

    for(uint256 i; i < _amount; i++){
      _safeMint( _to, supply + i );
    }

    _gifts -= _amount;
  }

  function mint(uint256 _amount) public payable {
    uint256 supply = totalSupply();

    require( _active, "Sale is not active.");
    require( _amount < 21, "Provided amount exceeds mint limit.");
    require( msg.value >= _price * _amount, "Insufficient ether provided.");
    require( supply + _amount <= 5000 - _gifts, "Supply exceeded with provided amount.");

    for(uint256 i; i < _amount; i++){
      _safeMint( msg.sender, supply + i );
    }
  }

  function presaleMint(uint256 _amount) public payable {
    uint256 supply = totalSupply();
    uint256 balance = balanceOf(msg.sender);

    require( _amount + balance < 9, "Provided amount exceeds pre-sale mint limit.");
    require( _presaleActive, "Pre-Sale is not active.");
    require( msg.value >= _price * _amount, "Insufficient ether provided.");
    require( supply + _amount < 2501, "Supply exceeded with provided amount.");

    for(uint256 i; i < _amount; i++){
      _safeMint( msg.sender, supply + i );
    }
 }

  function withdraw() public payable onlyOwner {
    uint256 _p1 = address(this).balance / 5;
    uint256 _p2 = address(this).balance / 5;
    uint256 _p3 = address(this).balance / 4;
    uint256 _p4 = address(this).balance * 7/100;
    uint256 _p5 = address(this).balance - _p1 - _p2 - _p3 - _p4;

    require(payable(_t1).send(_p1));
    require(payable(_t2).send(_p2));
    require(payable(_t3).send(_p3));
    require(payable(_t4).send(_p4));
    require(payable(_t5).send(_p5));
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_active","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_gifts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_t1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_t2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_t3","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_t4","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_t5","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_vault","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"_amount","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":"uint256","name":"_amount","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","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":"bool","name":"active","type":"bool"}],"name":"setActive","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":"bool","name":"presaleActive","type":"bool"}],"name":"setPresaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"vault","type":"address"}],"name":"setVault","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":"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":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526000600b60146101000a81548160ff0219169083151502179055506000600b60156101000a81548160ff0219169083151502179055506064600d5566b1a2bc2ec50000600e5573e97f9392c6199c29039a8ac9f6873b4ab1865975600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550731550b90c56367658b16d81ebac264672ec3c4fd4601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550735404980c4e40310073f4c959e91ba94c4c47ca03601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550732e7a2e45718d936b991f8bf71b8abd9bd15c97e9601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073b4fd6168d1ab6dce105d220ceb1661ebd4606339601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200020057600080fd5b506040518060400160405280600481526020017f476f6473000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f474f44530000000000000000000000000000000000000000000000000000000081525081600090805190602001906200028592919062000395565b5080600190805190602001906200029e92919062000395565b505050620002c1620002b5620002c760201b60201c565b620002cf60201b60201c565b620004aa565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620003a39062000445565b90600052602060002090601f016020900481019282620003c7576000855562000413565b82601f10620003e257805160ff191683800117855562000413565b8280016001018555821562000413579182015b8281111562000412578251825591602001919060010190620003f5565b5b50905062000422919062000426565b5090565b5b808211156200044157600081600090555060010162000427565b5090565b600060028204905060018216806200045e57607f821691505b602082108114156200047557620004746200047b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61496f80620004ba6000396000f3fe6080604052600436106102305760003560e01c80637e0620f91161012e578063b88d4fde116100ab578063de9693191161006f578063de96931914610800578063e985e9c51461082b578063ee40494614610868578063f2fde38b14610893578063fd243da3146108bc57610230565b8063b88d4fde1461072a578063c87b56dd14610753578063c9b298f114610790578063cbce4c97146107ac578063cfc86f7b146107d557610230565b8063a0712d68116100f2578063a0712d6814610666578063a22cb46514610682578063a2fe9c9b146106ab578063acec338a146106d6578063afc91613146106ff57610230565b80637e0620f9146105915780638b8fcdd4146105bc5780638da5cb5b146105e757806391b7f5ed1461061257806395d89b411461063b57610230565b80633f8121a2116101bc5780636352211e116101805780636352211e146104ac5780636817031b146104e95780636b0a11761461051257806370a082311461053d578063715018a61461057a57610230565b80633f8121a2146103c957806342842e0e146103f25780634d615d231461041b5780634f6ccce71461044657806355f804b31461048357610230565b806318160ddd1161020357806318160ddd14610303578063235b6ea11461032e57806323b872dd146103595780632f745c59146103825780633ccfd60b146103bf57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613471565b6108e7565b6040516102699190613a07565b60405180910390f35b34801561027e57600080fd5b50610287610961565b6040516102949190613a22565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf9190613514565b6109f3565b6040516102d191906139a0565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc9190613404565b610a78565b005b34801561030f57600080fd5b50610318610b90565b6040516103259190613d64565b60405180910390f35b34801561033a57600080fd5b50610343610b9d565b6040516103509190613d64565b60405180910390f35b34801561036557600080fd5b50610380600480360381019061037b91906132ee565b610ba3565b005b34801561038e57600080fd5b506103a960048036038101906103a49190613404565b610c03565b6040516103b69190613d64565b60405180910390f35b6103c7610ca8565b005b3480156103d557600080fd5b506103f060048036038101906103eb9190613444565b610f8c565b005b3480156103fe57600080fd5b50610419600480360381019061041491906132ee565b611025565b005b34801561042757600080fd5b50610430611045565b60405161043d9190613a07565b60405180910390f35b34801561045257600080fd5b5061046d60048036038101906104689190613514565b611058565b60405161047a9190613d64565b60405180910390f35b34801561048f57600080fd5b506104aa60048036038101906104a591906134cb565b6110c9565b005b3480156104b857600080fd5b506104d360048036038101906104ce9190613514565b61115f565b6040516104e091906139a0565b60405180910390f35b3480156104f557600080fd5b50610510600480360381019061050b9190613281565b611211565b005b34801561051e57600080fd5b506105276112d1565b6040516105349190613a07565b60405180910390f35b34801561054957600080fd5b50610564600480360381019061055f9190613281565b6112e4565b6040516105719190613d64565b60405180910390f35b34801561058657600080fd5b5061058f61139c565b005b34801561059d57600080fd5b506105a6611424565b6040516105b391906139a0565b60405180910390f35b3480156105c857600080fd5b506105d161144a565b6040516105de91906139a0565b60405180910390f35b3480156105f357600080fd5b506105fc611470565b60405161060991906139a0565b60405180910390f35b34801561061e57600080fd5b5061063960048036038101906106349190613514565b61149a565b005b34801561064757600080fd5b50610650611520565b60405161065d9190613a22565b60405180910390f35b610680600480360381019061067b9190613514565b6115b2565b005b34801561068e57600080fd5b506106a960048036038101906106a491906133c4565b611735565b005b3480156106b757600080fd5b506106c06118b6565b6040516106cd91906139a0565b60405180910390f35b3480156106e257600080fd5b506106fd60048036038101906106f89190613444565b6118dc565b005b34801561070b57600080fd5b50610714611975565b60405161072191906139a0565b60405180910390f35b34801561073657600080fd5b50610751600480360381019061074c9190613341565b61199b565b005b34801561075f57600080fd5b5061077a60048036038101906107759190613514565b6119fd565b6040516107879190613a22565b60405180910390f35b6107aa60048036038101906107a59190613514565b611aa4565b005b3480156107b857600080fd5b506107d360048036038101906107ce9190613404565b611c32565b005b3480156107e157600080fd5b506107ea611d51565b6040516107f79190613a22565b60405180910390f35b34801561080c57600080fd5b50610815611ddf565b60405161082291906139a0565b60405180910390f35b34801561083757600080fd5b50610852600480360381019061084d91906132ae565b611e05565b60405161085f9190613a07565b60405180910390f35b34801561087457600080fd5b5061087d611e99565b60405161088a9190613d64565b60405180910390f35b34801561089f57600080fd5b506108ba60048036038101906108b59190613281565b611e9f565b005b3480156108c857600080fd5b506108d1611f97565b6040516108de91906139a0565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061095a575061095982611fbd565b5b9050919050565b60606000805461097090614014565b80601f016020809104026020016040519081016040528092919081815260200182805461099c90614014565b80156109e95780601f106109be576101008083540402835291602001916109e9565b820191906000526020600020905b8154815290600101906020018083116109cc57829003601f168201915b5050505050905090565b60006109fe8261209f565b610a3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3490613c04565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a838261115f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aeb90613ca4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b1361210b565b73ffffffffffffffffffffffffffffffffffffffff161480610b425750610b4181610b3c61210b565b611e05565b5b610b81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7890613b64565b60405180910390fd5b610b8b8383612113565b505050565b6000600880549050905090565b600e5481565b610bb4610bae61210b565b826121cc565b610bf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bea90613ce4565b60405180910390fd5b610bfe8383836122aa565b505050565b6000610c0e836112e4565b8210610c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4690613a44565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610cb061210b565b73ffffffffffffffffffffffffffffffffffffffff16610cce611470565b73ffffffffffffffffffffffffffffffffffffffff1614610d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1b90613c24565b60405180910390fd5b6000600547610d339190613e9f565b90506000600547610d449190613e9f565b90506000600447610d559190613e9f565b905060006064600747610d689190613ed0565b610d729190613e9f565b905060008183858747610d859190613f2a565b610d8f9190613f2a565b610d999190613f2a565b610da39190613f2a565b9050600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc869081150290604051600060405180830381858888f19350505050610e0557600080fd5b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc859081150290604051600060405180830381858888f19350505050610e6557600080fd5b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f19350505050610ec557600080fd5b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050610f2557600080fd5b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610f8557600080fd5b5050505050565b610f9461210b565b73ffffffffffffffffffffffffffffffffffffffff16610fb2611470565b73ffffffffffffffffffffffffffffffffffffffff1614611008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fff90613c24565b60405180910390fd5b80600b60156101000a81548160ff02191690831515021790555050565b6110408383836040518060200160405280600081525061199b565b505050565b600b60149054906101000a900460ff1681565b6000611062610b90565b82106110a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109a90613d04565b60405180910390fd5b600882815481106110b7576110b66141ad565b5b90600052602060002001549050919050565b6110d161210b565b73ffffffffffffffffffffffffffffffffffffffff166110ef611470565b73ffffffffffffffffffffffffffffffffffffffff1614611145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113c90613c24565b60405180910390fd5b80600c908051906020019061115b929190613095565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611208576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ff90613ba4565b60405180910390fd5b80915050919050565b61121961210b565b73ffffffffffffffffffffffffffffffffffffffff16611237611470565b73ffffffffffffffffffffffffffffffffffffffff161461128d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128490613c24565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b60159054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134c90613b84565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113a461210b565b73ffffffffffffffffffffffffffffffffffffffff166113c2611470565b73ffffffffffffffffffffffffffffffffffffffff1614611418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140f90613c24565b60405180910390fd5b6114226000612506565b565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114a261210b565b73ffffffffffffffffffffffffffffffffffffffff166114c0611470565b73ffffffffffffffffffffffffffffffffffffffff1614611516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150d90613c24565b60405180910390fd5b80600e8190555050565b60606001805461152f90614014565b80601f016020809104026020016040519081016040528092919081815260200182805461155b90614014565b80156115a85780601f1061157d576101008083540402835291602001916115a8565b820191906000526020600020905b81548152906001019060200180831161158b57829003601f168201915b5050505050905090565b60006115bc610b90565b9050600b60149054906101000a900460ff1661160d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160490613c84565b60405180910390fd5b60158210611650576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164790613d44565b60405180910390fd5b81600e5461165e9190613ed0565b3410156116a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169790613bc4565b60405180910390fd5b600d546113886116b09190613f2a565b82826116bc9190613e49565b11156116fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f490613cc4565b60405180910390fd5b60005b828110156117305761171d3382846117189190613e49565b6125cc565b808061172890614077565b915050611700565b505050565b61173d61210b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a290613b04565b60405180910390fd5b80600560006117b861210b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661186561210b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118aa9190613a07565b60405180910390a35050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6118e461210b565b73ffffffffffffffffffffffffffffffffffffffff16611902611470565b73ffffffffffffffffffffffffffffffffffffffff1614611958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194f90613c24565b60405180910390fd5b80600b60146101000a81548160ff02191690831515021790555050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6119ac6119a661210b565b836121cc565b6119eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e290613ce4565b60405180910390fd5b6119f7848484846125ea565b50505050565b6060611a088261209f565b611a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3e90613c64565b60405180910390fd5b6000611a51612646565b90506000815111611a715760405180602001604052806000815250611a9c565b80611a7b846126d8565b604051602001611a8c92919061397c565b6040516020818303038152906040525b915050919050565b6000611aae610b90565b90506000611abb336112e4565b905060098184611acb9190613e49565b10611b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0290613d24565b60405180910390fd5b600b60159054906101000a900460ff16611b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5190613ac4565b60405180910390fd5b82600e54611b689190613ed0565b341015611baa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba190613bc4565b60405180910390fd5b6109c58383611bb99190613e49565b10611bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf090613cc4565b60405180910390fd5b60005b83811015611c2c57611c19338285611c149190613e49565b6125cc565b8080611c2490614077565b915050611bfc565b50505050565b611c3a61210b565b73ffffffffffffffffffffffffffffffffffffffff16611c58611470565b73ffffffffffffffffffffffffffffffffffffffff1614611cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca590613c24565b60405180910390fd5b600d54811115611cf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cea90613b44565b60405180910390fd5b6000611cfd610b90565b905060005b82811015611d3257611d1f848284611d1a9190613e49565b6125cc565b8080611d2a90614077565b915050611d02565b5081600d6000828254611d459190613f2a565b92505081905550505050565b600c8054611d5e90614014565b80601f0160208091040260200160405190810160405280929190818152602001828054611d8a90614014565b8015611dd75780601f10611dac57610100808354040283529160200191611dd7565b820191906000526020600020905b815481529060010190602001808311611dba57829003601f168201915b505050505081565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d5481565b611ea761210b565b73ffffffffffffffffffffffffffffffffffffffff16611ec5611470565b73ffffffffffffffffffffffffffffffffffffffff1614611f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1290613c24565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8290613a84565b60405180910390fd5b611f9481612506565b50565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061208857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612098575061209782612839565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166121868361115f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006121d78261209f565b612216576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220d90613b24565b60405180910390fd5b60006122218361115f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061229057508373ffffffffffffffffffffffffffffffffffffffff16612278846109f3565b73ffffffffffffffffffffffffffffffffffffffff16145b806122a157506122a08185611e05565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122ca8261115f565b73ffffffffffffffffffffffffffffffffffffffff1614612320576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231790613c44565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612390576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238790613ae4565b60405180910390fd5b61239b8383836128a3565b6123a6600082612113565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123f69190613f2a565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461244d9190613e49565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6125e68282604051806020016040528060008152506129b7565b5050565b6125f58484846122aa565b61260184848484612a12565b612640576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263790613a64565b60405180910390fd5b50505050565b6060600c805461265590614014565b80601f016020809104026020016040519081016040528092919081815260200182805461268190614014565b80156126ce5780601f106126a3576101008083540402835291602001916126ce565b820191906000526020600020905b8154815290600101906020018083116126b157829003601f168201915b5050505050905090565b60606000821415612720576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612834565b600082905060005b6000821461275257808061273b90614077565b915050600a8261274b9190613e9f565b9150612728565b60008167ffffffffffffffff81111561276e5761276d6141dc565b5b6040519080825280601f01601f1916602001820160405280156127a05781602001600182028036833780820191505090505b5090505b6000851461282d576001826127b99190613f2a565b9150600a856127c891906140c0565b60306127d49190613e49565b60f81b8183815181106127ea576127e96141ad565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128269190613e9f565b94506127a4565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6128ae838383612ba9565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128f1576128ec81612bae565b612930565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461292f5761292e8382612bf7565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129735761296e81612d64565b6129b2565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146129b1576129b08282612e35565b5b5b505050565b6129c18383612eb4565b6129ce6000848484612a12565b612a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0490613a64565b60405180910390fd5b505050565b6000612a338473ffffffffffffffffffffffffffffffffffffffff16613082565b15612b9c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a5c61210b565b8786866040518563ffffffff1660e01b8152600401612a7e94939291906139bb565b602060405180830381600087803b158015612a9857600080fd5b505af1925050508015612ac957506040513d601f19601f82011682018060405250810190612ac6919061349e565b60015b612b4c573d8060008114612af9576040519150601f19603f3d011682016040523d82523d6000602084013e612afe565b606091505b50600081511415612b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3b90613a64565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ba1565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612c04846112e4565b612c0e9190613f2a565b9050600060076000848152602001908152602001600020549050818114612cf3576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612d789190613f2a565b9050600060096000848152602001908152602001600020549050600060088381548110612da857612da76141ad565b5b906000526020600020015490508060088381548110612dca57612dc96141ad565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612e1957612e1861417e565b5b6001900381819060005260206000200160009055905550505050565b6000612e40836112e4565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1b90613be4565b60405180910390fd5b612f2d8161209f565b15612f6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6490613aa4565b60405180910390fd5b612f79600083836128a3565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fc99190613e49565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546130a190614014565b90600052602060002090601f0160209004810192826130c3576000855561310a565b82601f106130dc57805160ff191683800117855561310a565b8280016001018555821561310a579182015b828111156131095782518255916020019190600101906130ee565b5b509050613117919061311b565b5090565b5b8082111561313457600081600090555060010161311c565b5090565b600061314b61314684613da4565b613d7f565b90508281526020810184848401111561316757613166614210565b5b613172848285613fd2565b509392505050565b600061318d61318884613dd5565b613d7f565b9050828152602081018484840111156131a9576131a8614210565b5b6131b4848285613fd2565b509392505050565b6000813590506131cb816148dd565b92915050565b6000813590506131e0816148f4565b92915050565b6000813590506131f58161490b565b92915050565b60008151905061320a8161490b565b92915050565b600082601f8301126132255761322461420b565b5b8135613235848260208601613138565b91505092915050565b600082601f8301126132535761325261420b565b5b813561326384826020860161317a565b91505092915050565b60008135905061327b81614922565b92915050565b6000602082840312156132975761329661421a565b5b60006132a5848285016131bc565b91505092915050565b600080604083850312156132c5576132c461421a565b5b60006132d3858286016131bc565b92505060206132e4858286016131bc565b9150509250929050565b6000806000606084860312156133075761330661421a565b5b6000613315868287016131bc565b9350506020613326868287016131bc565b92505060406133378682870161326c565b9150509250925092565b6000806000806080858703121561335b5761335a61421a565b5b6000613369878288016131bc565b945050602061337a878288016131bc565b935050604061338b8782880161326c565b925050606085013567ffffffffffffffff8111156133ac576133ab614215565b5b6133b887828801613210565b91505092959194509250565b600080604083850312156133db576133da61421a565b5b60006133e9858286016131bc565b92505060206133fa858286016131d1565b9150509250929050565b6000806040838503121561341b5761341a61421a565b5b6000613429858286016131bc565b925050602061343a8582860161326c565b9150509250929050565b60006020828403121561345a5761345961421a565b5b6000613468848285016131d1565b91505092915050565b6000602082840312156134875761348661421a565b5b6000613495848285016131e6565b91505092915050565b6000602082840312156134b4576134b361421a565b5b60006134c2848285016131fb565b91505092915050565b6000602082840312156134e1576134e061421a565b5b600082013567ffffffffffffffff8111156134ff576134fe614215565b5b61350b8482850161323e565b91505092915050565b60006020828403121561352a5761352961421a565b5b60006135388482850161326c565b91505092915050565b61354a81613f5e565b82525050565b61355981613f70565b82525050565b600061356a82613e06565b6135748185613e1c565b9350613584818560208601613fe1565b61358d8161421f565b840191505092915050565b60006135a382613e11565b6135ad8185613e2d565b93506135bd818560208601613fe1565b6135c68161421f565b840191505092915050565b60006135dc82613e11565b6135e68185613e3e565b93506135f6818560208601613fe1565b80840191505092915050565b600061360f602b83613e2d565b915061361a82614230565b604082019050919050565b6000613632603283613e2d565b915061363d8261427f565b604082019050919050565b6000613655602683613e2d565b9150613660826142ce565b604082019050919050565b6000613678601c83613e2d565b91506136838261431d565b602082019050919050565b600061369b601783613e2d565b91506136a682614346565b602082019050919050565b60006136be602483613e2d565b91506136c98261436f565b604082019050919050565b60006136e1601983613e2d565b91506136ec826143be565b602082019050919050565b6000613704602c83613e2d565b915061370f826143e7565b604082019050919050565b6000613727602b83613e2d565b915061373282614436565b604082019050919050565b600061374a603883613e2d565b915061375582614485565b604082019050919050565b600061376d602a83613e2d565b9150613778826144d4565b604082019050919050565b6000613790602983613e2d565b915061379b82614523565b604082019050919050565b60006137b3601c83613e2d565b91506137be82614572565b602082019050919050565b60006137d6602083613e2d565b91506137e18261459b565b602082019050919050565b60006137f9602c83613e2d565b9150613804826145c4565b604082019050919050565b600061381c602083613e2d565b915061382782614613565b602082019050919050565b600061383f602983613e2d565b915061384a8261463c565b604082019050919050565b6000613862602f83613e2d565b915061386d8261468b565b604082019050919050565b6000613885601383613e2d565b9150613890826146da565b602082019050919050565b60006138a8602183613e2d565b91506138b382614703565b604082019050919050565b60006138cb602583613e2d565b91506138d682614752565b604082019050919050565b60006138ee603183613e2d565b91506138f9826147a1565b604082019050919050565b6000613911602c83613e2d565b915061391c826147f0565b604082019050919050565b6000613934602c83613e2d565b915061393f8261483f565b604082019050919050565b6000613957602383613e2d565b91506139628261488e565b604082019050919050565b61397681613fc8565b82525050565b600061398882856135d1565b915061399482846135d1565b91508190509392505050565b60006020820190506139b56000830184613541565b92915050565b60006080820190506139d06000830187613541565b6139dd6020830186613541565b6139ea604083018561396d565b81810360608301526139fc818461355f565b905095945050505050565b6000602082019050613a1c6000830184613550565b92915050565b60006020820190508181036000830152613a3c8184613598565b905092915050565b60006020820190508181036000830152613a5d81613602565b9050919050565b60006020820190508181036000830152613a7d81613625565b9050919050565b60006020820190508181036000830152613a9d81613648565b9050919050565b60006020820190508181036000830152613abd8161366b565b9050919050565b60006020820190508181036000830152613add8161368e565b9050919050565b60006020820190508181036000830152613afd816136b1565b9050919050565b60006020820190508181036000830152613b1d816136d4565b9050919050565b60006020820190508181036000830152613b3d816136f7565b9050919050565b60006020820190508181036000830152613b5d8161371a565b9050919050565b60006020820190508181036000830152613b7d8161373d565b9050919050565b60006020820190508181036000830152613b9d81613760565b9050919050565b60006020820190508181036000830152613bbd81613783565b9050919050565b60006020820190508181036000830152613bdd816137a6565b9050919050565b60006020820190508181036000830152613bfd816137c9565b9050919050565b60006020820190508181036000830152613c1d816137ec565b9050919050565b60006020820190508181036000830152613c3d8161380f565b9050919050565b60006020820190508181036000830152613c5d81613832565b9050919050565b60006020820190508181036000830152613c7d81613855565b9050919050565b60006020820190508181036000830152613c9d81613878565b9050919050565b60006020820190508181036000830152613cbd8161389b565b9050919050565b60006020820190508181036000830152613cdd816138be565b9050919050565b60006020820190508181036000830152613cfd816138e1565b9050919050565b60006020820190508181036000830152613d1d81613904565b9050919050565b60006020820190508181036000830152613d3d81613927565b9050919050565b60006020820190508181036000830152613d5d8161394a565b9050919050565b6000602082019050613d79600083018461396d565b92915050565b6000613d89613d9a565b9050613d958282614046565b919050565b6000604051905090565b600067ffffffffffffffff821115613dbf57613dbe6141dc565b5b613dc88261421f565b9050602081019050919050565b600067ffffffffffffffff821115613df057613def6141dc565b5b613df98261421f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e5482613fc8565b9150613e5f83613fc8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e9457613e936140f1565b5b828201905092915050565b6000613eaa82613fc8565b9150613eb583613fc8565b925082613ec557613ec4614120565b5b828204905092915050565b6000613edb82613fc8565b9150613ee683613fc8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f1f57613f1e6140f1565b5b828202905092915050565b6000613f3582613fc8565b9150613f4083613fc8565b925082821015613f5357613f526140f1565b5b828203905092915050565b6000613f6982613fa8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613fff578082015181840152602081019050613fe4565b8381111561400e576000848401525b50505050565b6000600282049050600182168061402c57607f821691505b602082108114156140405761403f61414f565b5b50919050565b61404f8261421f565b810181811067ffffffffffffffff8211171561406e5761406d6141dc565b5b80604052505050565b600061408282613fc8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140b5576140b46140f1565b5b600182019050919050565b60006140cb82613fc8565b91506140d683613fc8565b9250826140e6576140e5614120565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5072652d53616c65206973206e6f74206163746976652e000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f47696674207265736572766520657863656564656420776974682070726f766960008201527f64656420616d6f756e742e000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742065746865722070726f76696465642e00000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f53616c65206973206e6f74206163746976652e00000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f537570706c7920657863656564656420776974682070726f766964656420616d60008201527f6f756e742e000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f50726f766964656420616d6f756e742065786365656473207072652d73616c6560008201527f206d696e74206c696d69742e0000000000000000000000000000000000000000602082015250565b7f50726f766964656420616d6f756e742065786365656473206d696e74206c696d60008201527f69742e0000000000000000000000000000000000000000000000000000000000602082015250565b6148e681613f5e565b81146148f157600080fd5b50565b6148fd81613f70565b811461490857600080fd5b50565b61491481613f7c565b811461491f57600080fd5b50565b61492b81613fc8565b811461493657600080fd5b5056fea2646970667358221220f24d0e9e1f7b285c0ae3b05c2fcf1941692ce3d87ba404309084e4716bdba52d64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102305760003560e01c80637e0620f91161012e578063b88d4fde116100ab578063de9693191161006f578063de96931914610800578063e985e9c51461082b578063ee40494614610868578063f2fde38b14610893578063fd243da3146108bc57610230565b8063b88d4fde1461072a578063c87b56dd14610753578063c9b298f114610790578063cbce4c97146107ac578063cfc86f7b146107d557610230565b8063a0712d68116100f2578063a0712d6814610666578063a22cb46514610682578063a2fe9c9b146106ab578063acec338a146106d6578063afc91613146106ff57610230565b80637e0620f9146105915780638b8fcdd4146105bc5780638da5cb5b146105e757806391b7f5ed1461061257806395d89b411461063b57610230565b80633f8121a2116101bc5780636352211e116101805780636352211e146104ac5780636817031b146104e95780636b0a11761461051257806370a082311461053d578063715018a61461057a57610230565b80633f8121a2146103c957806342842e0e146103f25780634d615d231461041b5780634f6ccce71461044657806355f804b31461048357610230565b806318160ddd1161020357806318160ddd14610303578063235b6ea11461032e57806323b872dd146103595780632f745c59146103825780633ccfd60b146103bf57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613471565b6108e7565b6040516102699190613a07565b60405180910390f35b34801561027e57600080fd5b50610287610961565b6040516102949190613a22565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf9190613514565b6109f3565b6040516102d191906139a0565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc9190613404565b610a78565b005b34801561030f57600080fd5b50610318610b90565b6040516103259190613d64565b60405180910390f35b34801561033a57600080fd5b50610343610b9d565b6040516103509190613d64565b60405180910390f35b34801561036557600080fd5b50610380600480360381019061037b91906132ee565b610ba3565b005b34801561038e57600080fd5b506103a960048036038101906103a49190613404565b610c03565b6040516103b69190613d64565b60405180910390f35b6103c7610ca8565b005b3480156103d557600080fd5b506103f060048036038101906103eb9190613444565b610f8c565b005b3480156103fe57600080fd5b50610419600480360381019061041491906132ee565b611025565b005b34801561042757600080fd5b50610430611045565b60405161043d9190613a07565b60405180910390f35b34801561045257600080fd5b5061046d60048036038101906104689190613514565b611058565b60405161047a9190613d64565b60405180910390f35b34801561048f57600080fd5b506104aa60048036038101906104a591906134cb565b6110c9565b005b3480156104b857600080fd5b506104d360048036038101906104ce9190613514565b61115f565b6040516104e091906139a0565b60405180910390f35b3480156104f557600080fd5b50610510600480360381019061050b9190613281565b611211565b005b34801561051e57600080fd5b506105276112d1565b6040516105349190613a07565b60405180910390f35b34801561054957600080fd5b50610564600480360381019061055f9190613281565b6112e4565b6040516105719190613d64565b60405180910390f35b34801561058657600080fd5b5061058f61139c565b005b34801561059d57600080fd5b506105a6611424565b6040516105b391906139a0565b60405180910390f35b3480156105c857600080fd5b506105d161144a565b6040516105de91906139a0565b60405180910390f35b3480156105f357600080fd5b506105fc611470565b60405161060991906139a0565b60405180910390f35b34801561061e57600080fd5b5061063960048036038101906106349190613514565b61149a565b005b34801561064757600080fd5b50610650611520565b60405161065d9190613a22565b60405180910390f35b610680600480360381019061067b9190613514565b6115b2565b005b34801561068e57600080fd5b506106a960048036038101906106a491906133c4565b611735565b005b3480156106b757600080fd5b506106c06118b6565b6040516106cd91906139a0565b60405180910390f35b3480156106e257600080fd5b506106fd60048036038101906106f89190613444565b6118dc565b005b34801561070b57600080fd5b50610714611975565b60405161072191906139a0565b60405180910390f35b34801561073657600080fd5b50610751600480360381019061074c9190613341565b61199b565b005b34801561075f57600080fd5b5061077a60048036038101906107759190613514565b6119fd565b6040516107879190613a22565b60405180910390f35b6107aa60048036038101906107a59190613514565b611aa4565b005b3480156107b857600080fd5b506107d360048036038101906107ce9190613404565b611c32565b005b3480156107e157600080fd5b506107ea611d51565b6040516107f79190613a22565b60405180910390f35b34801561080c57600080fd5b50610815611ddf565b60405161082291906139a0565b60405180910390f35b34801561083757600080fd5b50610852600480360381019061084d91906132ae565b611e05565b60405161085f9190613a07565b60405180910390f35b34801561087457600080fd5b5061087d611e99565b60405161088a9190613d64565b60405180910390f35b34801561089f57600080fd5b506108ba60048036038101906108b59190613281565b611e9f565b005b3480156108c857600080fd5b506108d1611f97565b6040516108de91906139a0565b60405180910390f35b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061095a575061095982611fbd565b5b9050919050565b60606000805461097090614014565b80601f016020809104026020016040519081016040528092919081815260200182805461099c90614014565b80156109e95780601f106109be576101008083540402835291602001916109e9565b820191906000526020600020905b8154815290600101906020018083116109cc57829003601f168201915b5050505050905090565b60006109fe8261209f565b610a3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3490613c04565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a838261115f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aeb90613ca4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b1361210b565b73ffffffffffffffffffffffffffffffffffffffff161480610b425750610b4181610b3c61210b565b611e05565b5b610b81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7890613b64565b60405180910390fd5b610b8b8383612113565b505050565b6000600880549050905090565b600e5481565b610bb4610bae61210b565b826121cc565b610bf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bea90613ce4565b60405180910390fd5b610bfe8383836122aa565b505050565b6000610c0e836112e4565b8210610c4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4690613a44565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610cb061210b565b73ffffffffffffffffffffffffffffffffffffffff16610cce611470565b73ffffffffffffffffffffffffffffffffffffffff1614610d24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1b90613c24565b60405180910390fd5b6000600547610d339190613e9f565b90506000600547610d449190613e9f565b90506000600447610d559190613e9f565b905060006064600747610d689190613ed0565b610d729190613e9f565b905060008183858747610d859190613f2a565b610d8f9190613f2a565b610d999190613f2a565b610da39190613f2a565b9050600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc869081150290604051600060405180830381858888f19350505050610e0557600080fd5b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc859081150290604051600060405180830381858888f19350505050610e6557600080fd5b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f19350505050610ec557600080fd5b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050610f2557600080fd5b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050610f8557600080fd5b5050505050565b610f9461210b565b73ffffffffffffffffffffffffffffffffffffffff16610fb2611470565b73ffffffffffffffffffffffffffffffffffffffff1614611008576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fff90613c24565b60405180910390fd5b80600b60156101000a81548160ff02191690831515021790555050565b6110408383836040518060200160405280600081525061199b565b505050565b600b60149054906101000a900460ff1681565b6000611062610b90565b82106110a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109a90613d04565b60405180910390fd5b600882815481106110b7576110b66141ad565b5b90600052602060002001549050919050565b6110d161210b565b73ffffffffffffffffffffffffffffffffffffffff166110ef611470565b73ffffffffffffffffffffffffffffffffffffffff1614611145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113c90613c24565b60405180910390fd5b80600c908051906020019061115b929190613095565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611208576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ff90613ba4565b60405180910390fd5b80915050919050565b61121961210b565b73ffffffffffffffffffffffffffffffffffffffff16611237611470565b73ffffffffffffffffffffffffffffffffffffffff161461128d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128490613c24565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600b60159054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611355576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134c90613b84565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113a461210b565b73ffffffffffffffffffffffffffffffffffffffff166113c2611470565b73ffffffffffffffffffffffffffffffffffffffff1614611418576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140f90613c24565b60405180910390fd5b6114226000612506565b565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6114a261210b565b73ffffffffffffffffffffffffffffffffffffffff166114c0611470565b73ffffffffffffffffffffffffffffffffffffffff1614611516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150d90613c24565b60405180910390fd5b80600e8190555050565b60606001805461152f90614014565b80601f016020809104026020016040519081016040528092919081815260200182805461155b90614014565b80156115a85780601f1061157d576101008083540402835291602001916115a8565b820191906000526020600020905b81548152906001019060200180831161158b57829003601f168201915b5050505050905090565b60006115bc610b90565b9050600b60149054906101000a900460ff1661160d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160490613c84565b60405180910390fd5b60158210611650576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164790613d44565b60405180910390fd5b81600e5461165e9190613ed0565b3410156116a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169790613bc4565b60405180910390fd5b600d546113886116b09190613f2a565b82826116bc9190613e49565b11156116fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f490613cc4565b60405180910390fd5b60005b828110156117305761171d3382846117189190613e49565b6125cc565b808061172890614077565b915050611700565b505050565b61173d61210b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a290613b04565b60405180910390fd5b80600560006117b861210b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661186561210b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516118aa9190613a07565b60405180910390a35050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6118e461210b565b73ffffffffffffffffffffffffffffffffffffffff16611902611470565b73ffffffffffffffffffffffffffffffffffffffff1614611958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194f90613c24565b60405180910390fd5b80600b60146101000a81548160ff02191690831515021790555050565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6119ac6119a661210b565b836121cc565b6119eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e290613ce4565b60405180910390fd5b6119f7848484846125ea565b50505050565b6060611a088261209f565b611a47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3e90613c64565b60405180910390fd5b6000611a51612646565b90506000815111611a715760405180602001604052806000815250611a9c565b80611a7b846126d8565b604051602001611a8c92919061397c565b6040516020818303038152906040525b915050919050565b6000611aae610b90565b90506000611abb336112e4565b905060098184611acb9190613e49565b10611b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0290613d24565b60405180910390fd5b600b60159054906101000a900460ff16611b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5190613ac4565b60405180910390fd5b82600e54611b689190613ed0565b341015611baa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba190613bc4565b60405180910390fd5b6109c58383611bb99190613e49565b10611bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf090613cc4565b60405180910390fd5b60005b83811015611c2c57611c19338285611c149190613e49565b6125cc565b8080611c2490614077565b915050611bfc565b50505050565b611c3a61210b565b73ffffffffffffffffffffffffffffffffffffffff16611c58611470565b73ffffffffffffffffffffffffffffffffffffffff1614611cae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ca590613c24565b60405180910390fd5b600d54811115611cf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cea90613b44565b60405180910390fd5b6000611cfd610b90565b905060005b82811015611d3257611d1f848284611d1a9190613e49565b6125cc565b8080611d2a90614077565b915050611d02565b5081600d6000828254611d459190613f2a565b92505081905550505050565b600c8054611d5e90614014565b80601f0160208091040260200160405190810160405280929190818152602001828054611d8a90614014565b8015611dd75780601f10611dac57610100808354040283529160200191611dd7565b820191906000526020600020905b815481529060010190602001808311611dba57829003601f168201915b505050505081565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d5481565b611ea761210b565b73ffffffffffffffffffffffffffffffffffffffff16611ec5611470565b73ffffffffffffffffffffffffffffffffffffffff1614611f1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1290613c24565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611f8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8290613a84565b60405180910390fd5b611f9481612506565b50565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061208857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612098575061209782612839565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166121868361115f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006121d78261209f565b612216576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220d90613b24565b60405180910390fd5b60006122218361115f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061229057508373ffffffffffffffffffffffffffffffffffffffff16612278846109f3565b73ffffffffffffffffffffffffffffffffffffffff16145b806122a157506122a08185611e05565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122ca8261115f565b73ffffffffffffffffffffffffffffffffffffffff1614612320576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231790613c44565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612390576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238790613ae4565b60405180910390fd5b61239b8383836128a3565b6123a6600082612113565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123f69190613f2a565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461244d9190613e49565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6125e68282604051806020016040528060008152506129b7565b5050565b6125f58484846122aa565b61260184848484612a12565b612640576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161263790613a64565b60405180910390fd5b50505050565b6060600c805461265590614014565b80601f016020809104026020016040519081016040528092919081815260200182805461268190614014565b80156126ce5780601f106126a3576101008083540402835291602001916126ce565b820191906000526020600020905b8154815290600101906020018083116126b157829003601f168201915b5050505050905090565b60606000821415612720576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612834565b600082905060005b6000821461275257808061273b90614077565b915050600a8261274b9190613e9f565b9150612728565b60008167ffffffffffffffff81111561276e5761276d6141dc565b5b6040519080825280601f01601f1916602001820160405280156127a05781602001600182028036833780820191505090505b5090505b6000851461282d576001826127b99190613f2a565b9150600a856127c891906140c0565b60306127d49190613e49565b60f81b8183815181106127ea576127e96141ad565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128269190613e9f565b94506127a4565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6128ae838383612ba9565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128f1576128ec81612bae565b612930565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461292f5761292e8382612bf7565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129735761296e81612d64565b6129b2565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146129b1576129b08282612e35565b5b5b505050565b6129c18383612eb4565b6129ce6000848484612a12565b612a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0490613a64565b60405180910390fd5b505050565b6000612a338473ffffffffffffffffffffffffffffffffffffffff16613082565b15612b9c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612a5c61210b565b8786866040518563ffffffff1660e01b8152600401612a7e94939291906139bb565b602060405180830381600087803b158015612a9857600080fd5b505af1925050508015612ac957506040513d601f19601f82011682018060405250810190612ac6919061349e565b60015b612b4c573d8060008114612af9576040519150601f19603f3d011682016040523d82523d6000602084013e612afe565b606091505b50600081511415612b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3b90613a64565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ba1565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b60006001612c04846112e4565b612c0e9190613f2a565b9050600060076000848152602001908152602001600020549050818114612cf3576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b60006001600880549050612d789190613f2a565b9050600060096000848152602001908152602001600020549050600060088381548110612da857612da76141ad565b5b906000526020600020015490508060088381548110612dca57612dc96141ad565b5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480612e1957612e1861417e565b5b6001900381819060005260206000200160009055905550505050565b6000612e40836112e4565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f1b90613be4565b60405180910390fd5b612f2d8161209f565b15612f6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6490613aa4565b60405180910390fd5b612f79600083836128a3565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612fc99190613e49565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546130a190614014565b90600052602060002090601f0160209004810192826130c3576000855561310a565b82601f106130dc57805160ff191683800117855561310a565b8280016001018555821561310a579182015b828111156131095782518255916020019190600101906130ee565b5b509050613117919061311b565b5090565b5b8082111561313457600081600090555060010161311c565b5090565b600061314b61314684613da4565b613d7f565b90508281526020810184848401111561316757613166614210565b5b613172848285613fd2565b509392505050565b600061318d61318884613dd5565b613d7f565b9050828152602081018484840111156131a9576131a8614210565b5b6131b4848285613fd2565b509392505050565b6000813590506131cb816148dd565b92915050565b6000813590506131e0816148f4565b92915050565b6000813590506131f58161490b565b92915050565b60008151905061320a8161490b565b92915050565b600082601f8301126132255761322461420b565b5b8135613235848260208601613138565b91505092915050565b600082601f8301126132535761325261420b565b5b813561326384826020860161317a565b91505092915050565b60008135905061327b81614922565b92915050565b6000602082840312156132975761329661421a565b5b60006132a5848285016131bc565b91505092915050565b600080604083850312156132c5576132c461421a565b5b60006132d3858286016131bc565b92505060206132e4858286016131bc565b9150509250929050565b6000806000606084860312156133075761330661421a565b5b6000613315868287016131bc565b9350506020613326868287016131bc565b92505060406133378682870161326c565b9150509250925092565b6000806000806080858703121561335b5761335a61421a565b5b6000613369878288016131bc565b945050602061337a878288016131bc565b935050604061338b8782880161326c565b925050606085013567ffffffffffffffff8111156133ac576133ab614215565b5b6133b887828801613210565b91505092959194509250565b600080604083850312156133db576133da61421a565b5b60006133e9858286016131bc565b92505060206133fa858286016131d1565b9150509250929050565b6000806040838503121561341b5761341a61421a565b5b6000613429858286016131bc565b925050602061343a8582860161326c565b9150509250929050565b60006020828403121561345a5761345961421a565b5b6000613468848285016131d1565b91505092915050565b6000602082840312156134875761348661421a565b5b6000613495848285016131e6565b91505092915050565b6000602082840312156134b4576134b361421a565b5b60006134c2848285016131fb565b91505092915050565b6000602082840312156134e1576134e061421a565b5b600082013567ffffffffffffffff8111156134ff576134fe614215565b5b61350b8482850161323e565b91505092915050565b60006020828403121561352a5761352961421a565b5b60006135388482850161326c565b91505092915050565b61354a81613f5e565b82525050565b61355981613f70565b82525050565b600061356a82613e06565b6135748185613e1c565b9350613584818560208601613fe1565b61358d8161421f565b840191505092915050565b60006135a382613e11565b6135ad8185613e2d565b93506135bd818560208601613fe1565b6135c68161421f565b840191505092915050565b60006135dc82613e11565b6135e68185613e3e565b93506135f6818560208601613fe1565b80840191505092915050565b600061360f602b83613e2d565b915061361a82614230565b604082019050919050565b6000613632603283613e2d565b915061363d8261427f565b604082019050919050565b6000613655602683613e2d565b9150613660826142ce565b604082019050919050565b6000613678601c83613e2d565b91506136838261431d565b602082019050919050565b600061369b601783613e2d565b91506136a682614346565b602082019050919050565b60006136be602483613e2d565b91506136c98261436f565b604082019050919050565b60006136e1601983613e2d565b91506136ec826143be565b602082019050919050565b6000613704602c83613e2d565b915061370f826143e7565b604082019050919050565b6000613727602b83613e2d565b915061373282614436565b604082019050919050565b600061374a603883613e2d565b915061375582614485565b604082019050919050565b600061376d602a83613e2d565b9150613778826144d4565b604082019050919050565b6000613790602983613e2d565b915061379b82614523565b604082019050919050565b60006137b3601c83613e2d565b91506137be82614572565b602082019050919050565b60006137d6602083613e2d565b91506137e18261459b565b602082019050919050565b60006137f9602c83613e2d565b9150613804826145c4565b604082019050919050565b600061381c602083613e2d565b915061382782614613565b602082019050919050565b600061383f602983613e2d565b915061384a8261463c565b604082019050919050565b6000613862602f83613e2d565b915061386d8261468b565b604082019050919050565b6000613885601383613e2d565b9150613890826146da565b602082019050919050565b60006138a8602183613e2d565b91506138b382614703565b604082019050919050565b60006138cb602583613e2d565b91506138d682614752565b604082019050919050565b60006138ee603183613e2d565b91506138f9826147a1565b604082019050919050565b6000613911602c83613e2d565b915061391c826147f0565b604082019050919050565b6000613934602c83613e2d565b915061393f8261483f565b604082019050919050565b6000613957602383613e2d565b91506139628261488e565b604082019050919050565b61397681613fc8565b82525050565b600061398882856135d1565b915061399482846135d1565b91508190509392505050565b60006020820190506139b56000830184613541565b92915050565b60006080820190506139d06000830187613541565b6139dd6020830186613541565b6139ea604083018561396d565b81810360608301526139fc818461355f565b905095945050505050565b6000602082019050613a1c6000830184613550565b92915050565b60006020820190508181036000830152613a3c8184613598565b905092915050565b60006020820190508181036000830152613a5d81613602565b9050919050565b60006020820190508181036000830152613a7d81613625565b9050919050565b60006020820190508181036000830152613a9d81613648565b9050919050565b60006020820190508181036000830152613abd8161366b565b9050919050565b60006020820190508181036000830152613add8161368e565b9050919050565b60006020820190508181036000830152613afd816136b1565b9050919050565b60006020820190508181036000830152613b1d816136d4565b9050919050565b60006020820190508181036000830152613b3d816136f7565b9050919050565b60006020820190508181036000830152613b5d8161371a565b9050919050565b60006020820190508181036000830152613b7d8161373d565b9050919050565b60006020820190508181036000830152613b9d81613760565b9050919050565b60006020820190508181036000830152613bbd81613783565b9050919050565b60006020820190508181036000830152613bdd816137a6565b9050919050565b60006020820190508181036000830152613bfd816137c9565b9050919050565b60006020820190508181036000830152613c1d816137ec565b9050919050565b60006020820190508181036000830152613c3d8161380f565b9050919050565b60006020820190508181036000830152613c5d81613832565b9050919050565b60006020820190508181036000830152613c7d81613855565b9050919050565b60006020820190508181036000830152613c9d81613878565b9050919050565b60006020820190508181036000830152613cbd8161389b565b9050919050565b60006020820190508181036000830152613cdd816138be565b9050919050565b60006020820190508181036000830152613cfd816138e1565b9050919050565b60006020820190508181036000830152613d1d81613904565b9050919050565b60006020820190508181036000830152613d3d81613927565b9050919050565b60006020820190508181036000830152613d5d8161394a565b9050919050565b6000602082019050613d79600083018461396d565b92915050565b6000613d89613d9a565b9050613d958282614046565b919050565b6000604051905090565b600067ffffffffffffffff821115613dbf57613dbe6141dc565b5b613dc88261421f565b9050602081019050919050565b600067ffffffffffffffff821115613df057613def6141dc565b5b613df98261421f565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613e5482613fc8565b9150613e5f83613fc8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613e9457613e936140f1565b5b828201905092915050565b6000613eaa82613fc8565b9150613eb583613fc8565b925082613ec557613ec4614120565b5b828204905092915050565b6000613edb82613fc8565b9150613ee683613fc8565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613f1f57613f1e6140f1565b5b828202905092915050565b6000613f3582613fc8565b9150613f4083613fc8565b925082821015613f5357613f526140f1565b5b828203905092915050565b6000613f6982613fa8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613fff578082015181840152602081019050613fe4565b8381111561400e576000848401525b50505050565b6000600282049050600182168061402c57607f821691505b602082108114156140405761403f61414f565b5b50919050565b61404f8261421f565b810181811067ffffffffffffffff8211171561406e5761406d6141dc565b5b80604052505050565b600061408282613fc8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156140b5576140b46140f1565b5b600182019050919050565b60006140cb82613fc8565b91506140d683613fc8565b9250826140e6576140e5614120565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f5072652d53616c65206973206e6f74206163746976652e000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f47696674207265736572766520657863656564656420776974682070726f766960008201527f64656420616d6f756e742e000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742065746865722070726f76696465642e00000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f53616c65206973206e6f74206163746976652e00000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f537570706c7920657863656564656420776974682070726f766964656420616d60008201527f6f756e742e000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f50726f766964656420616d6f756e742065786365656473207072652d73616c6560008201527f206d696e74206c696d69742e0000000000000000000000000000000000000000602082015250565b7f50726f766964656420616d6f756e742065786365656473206d696e74206c696d60008201527f69742e0000000000000000000000000000000000000000000000000000000000602082015250565b6148e681613f5e565b81146148f157600080fd5b50565b6148fd81613f70565b811461490857600080fd5b50565b61491481613f7c565b811461491f57600080fd5b50565b61492b81613fc8565b811461493657600080fd5b5056fea2646970667358221220f24d0e9e1f7b285c0ae3b05c2fcf1941692ce3d87ba404309084e4716bdba52d64736f6c63430008070033

Deployed Bytecode Sourcemap

43117:3073:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34626:224;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21515:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23074:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22597:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35266:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43358:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23964:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34934:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45690:497;;;:::i;:::-;;43987:107;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24374:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43223:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35456:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44183:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21209:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44100:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43255:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20939:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42427:94;;;;;;;;;;;;;:::i;:::-;;43673:63;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43401;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41776:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44285:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21684:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44673:467;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23367:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43537:63;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43902:79;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43605:63;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24630:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21859:334;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45146:538;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44368:299;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43294:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43469:63;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23733:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43326:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42676:192;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;43197:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34626:224;34728:4;34767:35;34752:50;;;:11;:50;;;;:90;;;;34806:36;34830:11;34806:23;:36::i;:::-;34752:90;34745:97;;34626:224;;;:::o;21515:100::-;21569:13;21602:5;21595:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21515:100;:::o;23074:221::-;23150:7;23178:16;23186:7;23178;:16::i;:::-;23170:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23263:15;:24;23279:7;23263:24;;;;;;;;;;;;;;;;;;;;;23256:31;;23074:221;;;:::o;22597:411::-;22678:13;22694:23;22709:7;22694:14;:23::i;:::-;22678:39;;22742:5;22736:11;;:2;:11;;;;22728:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;22836:5;22820:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;22845:37;22862:5;22869:12;:10;:12::i;:::-;22845:16;:37::i;:::-;22820:62;22798:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;22979:21;22988:2;22992:7;22979:8;:21::i;:::-;22667:341;22597:411;;:::o;35266:113::-;35327:7;35354:10;:17;;;;35347:24;;35266:113;:::o;43358:34::-;;;;:::o;23964:339::-;24159:41;24178:12;:10;:12::i;:::-;24192:7;24159:18;:41::i;:::-;24151:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24267:28;24277:4;24283:2;24287:7;24267:9;:28::i;:::-;23964:339;;;:::o;34934:256::-;35031:7;35067:23;35084:5;35067:16;:23::i;:::-;35059:5;:31;35051:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;35156:12;:19;35169:5;35156:19;;;;;;;;;;;;;;;:26;35176:5;35156:26;;;;;;;;;;;;35149:33;;34934:256;;;;:::o;45690:497::-;42007:12;:10;:12::i;:::-;41996:23;;:7;:5;:7::i;:::-;:23;;;41988:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45742:11:::1;45780:1;45756:21;:25;;;;:::i;:::-;45742:39;;45788:11;45826:1;45802:21;:25;;;;:::i;:::-;45788:39;;45834:11;45872:1;45848:21;:25;;;;:::i;:::-;45834:39;;45880:11;45920:3;45918:1;45894:21;:25;;;;:::i;:::-;:29;;;;:::i;:::-;45880:43;;45930:11;45986:3;45980;45974;45968;45944:21;:27;;;;:::i;:::-;:33;;;;:::i;:::-;:39;;;;:::i;:::-;:45;;;;:::i;:::-;45930:59;;46014:3;;;;;;;;;;;46006:17;;:22;46024:3;46006:22;;;;;;;;;;;;;;;;;;;;;;;45998:31;;;::::0;::::1;;46052:3;;;;;;;;;;;46044:17;;:22;46062:3;46044:22;;;;;;;;;;;;;;;;;;;;;;;46036:31;;;::::0;::::1;;46090:3;;;;;;;;;;;46082:17;;:22;46100:3;46082:22;;;;;;;;;;;;;;;;;;;;;;;46074:31;;;::::0;::::1;;46128:3;;;;;;;;;;;46120:17;;:22;46138:3;46120:22;;;;;;;;;;;;;;;;;;;;;;;46112:31;;;::::0;::::1;;46166:3;;;;;;;;;;;46158:17;;:22;46176:3;46158:22;;;;;;;;;;;;;;;;;;;;;;;46150:31;;;::::0;::::1;;45735:452;;;;;45690:497::o:0;43987:107::-;42007:12;:10;:12::i;:::-;41996:23;;:7;:5;:7::i;:::-;:23;;;41988:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44075:13:::1;44058:14;;:30;;;;;;;;;;;;;;;;;;43987:107:::0;:::o;24374:185::-;24512:39;24529:4;24535:2;24539:7;24512:39;;;;;;;;;;;;:16;:39::i;:::-;24374:185;;;:::o;43223:27::-;;;;;;;;;;;;;:::o;35456:233::-;35531:7;35567:30;:28;:30::i;:::-;35559:5;:38;35551:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;35664:10;35675:5;35664:17;;;;;;;;:::i;:::-;;;;;;;;;;35657:24;;35456:233;;;:::o;44183:96::-;42007:12;:10;:12::i;:::-;41996:23;;:7;:5;:7::i;:::-;:23;;;41988:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44266:7:::1;44250:13;:23;;;;;;;;;;;;:::i;:::-;;44183:96:::0;:::o;21209:239::-;21281:7;21301:13;21317:7;:16;21325:7;21317:16;;;;;;;;;;;;;;;;;;;;;21301:32;;21369:1;21352:19;;:5;:19;;;;21344:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21435:5;21428:12;;;21209:239;;;:::o;44100:77::-;42007:12;:10;:12::i;:::-;41996:23;;:7;:5;:7::i;:::-;:23;;;41988:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44166:5:::1;44157:6;;:14;;;;;;;;;;;;;;;;;;44100:77:::0;:::o;43255:34::-;;;;;;;;;;;;;:::o;20939:208::-;21011:7;21056:1;21039:19;;:5;:19;;;;21031:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21123:9;:16;21133:5;21123:16;;;;;;;;;;;;;;;;21116:23;;20939:208;;;:::o;42427:94::-;42007:12;:10;:12::i;:::-;41996:23;;:7;:5;:7::i;:::-;:23;;;41988:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42492:21:::1;42510:1;42492:9;:21::i;:::-;42427:94::o:0;43673:63::-;;;;;;;;;;;;;:::o;43401:::-;;;;;;;;;;;;;:::o;41776:87::-;41822:7;41849:6;;;;;;;;;;;41842:13;;41776:87;:::o;44285:77::-;42007:12;:10;:12::i;:::-;41996:23;;:7;:5;:7::i;:::-;:23;;;41988:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44351:5:::1;44342:6;:14;;;;44285:77:::0;:::o;21684:104::-;21740:13;21773:7;21766:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21684:104;:::o;44673:467::-;44726:14;44743:13;:11;:13::i;:::-;44726:30;;44774:7;;;;;;;;;;;44765:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;44831:2;44821:7;:12;44812:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;44911:7;44902:6;;:16;;;;:::i;:::-;44889:9;:29;;44880:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;44994:6;;44987:4;:13;;;;:::i;:::-;44976:7;44967:6;:16;;;;:::i;:::-;:33;;44958:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;45055:9;45051:84;45070:7;45066:1;:11;45051:84;;;45092:35;45103:10;45124:1;45115:6;:10;;;;:::i;:::-;45092:9;:35::i;:::-;45079:3;;;;;:::i;:::-;;;;45051:84;;;;44719:421;44673:467;:::o;23367:295::-;23482:12;:10;:12::i;:::-;23470:24;;:8;:24;;;;23462:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23582:8;23537:18;:32;23556:12;:10;:12::i;:::-;23537:32;;;;;;;;;;;;;;;:42;23570:8;23537:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23635:8;23606:48;;23621:12;:10;:12::i;:::-;23606:48;;;23645:8;23606:48;;;;;;:::i;:::-;;;;;;;;23367:295;;:::o;43537:63::-;;;;;;;;;;;;;:::o;43902:79::-;42007:12;:10;:12::i;:::-;41996:23;;:7;:5;:7::i;:::-;:23;;;41988:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43969:6:::1;43959:7;;:16;;;;;;;;;;;;;;;;;;43902:79:::0;:::o;43605:63::-;;;;;;;;;;;;;:::o;24630:328::-;24805:41;24824:12;:10;:12::i;:::-;24838:7;24805:18;:41::i;:::-;24797:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24911:39;24925:4;24931:2;24935:7;24944:5;24911:13;:39::i;:::-;24630:328;;;;:::o;21859:334::-;21932:13;21966:16;21974:7;21966;:16::i;:::-;21958:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;22047:21;22071:10;:8;:10::i;:::-;22047:34;;22123:1;22105:7;22099:21;:25;:86;;;;;;;;;;;;;;;;;22151:7;22160:18;:7;:16;:18::i;:::-;22134:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22099:86;22092:93;;;21859:334;;;:::o;45146:538::-;45206:14;45223:13;:11;:13::i;:::-;45206:30;;45243:15;45261:21;45271:10;45261:9;:21::i;:::-;45243:39;;45320:1;45310:7;45300;:17;;;;:::i;:::-;:21;45291:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;45386:14;;;;;;;;;;;45377:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;45466:7;45457:6;;:16;;;;:::i;:::-;45444:9;:29;;45435:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;45541:4;45531:7;45522:6;:16;;;;:::i;:::-;:23;45513:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;45600:9;45596:84;45615:7;45611:1;:11;45596:84;;;45637:35;45648:10;45669:1;45660:6;:10;;;;:::i;:::-;45637:9;:35::i;:::-;45624:3;;;;;:::i;:::-;;;;45596:84;;;;45199:485;;45146:538;:::o;44368:299::-;42007:12;:10;:12::i;:::-;41996:23;;:7;:5;:7::i;:::-;:23;;;41988:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44457:6:::1;;44446:7;:17;;44438:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;44520:14;44537:13;:11;:13::i;:::-;44520:30;;44563:9;44559:77;44578:7;44574:1;:11;44559:77;;;44600:28;44611:3;44625:1;44616:6;:10;;;;:::i;:::-;44600:9;:28::i;:::-;44587:3;;;;;:::i;:::-;;;;44559:77;;;;44654:7;44644:6;;:17;;;;;;;:::i;:::-;;;;;;;;44431:236;44368:299:::0;;:::o;43294:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;43469:63::-;;;;;;;;;;;;;:::o;23733:164::-;23830:4;23854:18;:25;23873:5;23854:25;;;;;;;;;;;;;;;:35;23880:8;23854:35;;;;;;;;;;;;;;;;;;;;;;;;;23847:42;;23733:164;;;;:::o;43326:27::-;;;;:::o;42676:192::-;42007:12;:10;:12::i;:::-;41996:23;;:7;:5;:7::i;:::-;:23;;;41988:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42785:1:::1;42765:22;;:8;:22;;;;42757:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42841:19;42851:8;42841:9;:19::i;:::-;42676:192:::0;:::o;43197:21::-;;;;;;;;;;;;;:::o;20570:305::-;20672:4;20724:25;20709:40;;;:11;:40;;;;:105;;;;20781:33;20766:48;;;:11;:48;;;;20709:105;:158;;;;20831:36;20855:11;20831:23;:36::i;:::-;20709:158;20689:178;;20570:305;;;:::o;26468:127::-;26533:4;26585:1;26557:30;;:7;:16;26565:7;26557:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26550:37;;26468:127;;;:::o;15978:98::-;16031:7;16058:10;16051:17;;15978:98;:::o;30450:174::-;30552:2;30525:15;:24;30541:7;30525:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30608:7;30604:2;30570:46;;30579:23;30594:7;30579:14;:23::i;:::-;30570:46;;;;;;;;;;;;30450:174;;:::o;26762:348::-;26855:4;26880:16;26888:7;26880;:16::i;:::-;26872:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26956:13;26972:23;26987:7;26972:14;:23::i;:::-;26956:39;;27025:5;27014:16;;:7;:16;;;:51;;;;27058:7;27034:31;;:20;27046:7;27034:11;:20::i;:::-;:31;;;27014:51;:87;;;;27069:32;27086:5;27093:7;27069:16;:32::i;:::-;27014:87;27006:96;;;26762:348;;;;:::o;29754:578::-;29913:4;29886:31;;:23;29901:7;29886:14;:23::i;:::-;:31;;;29878:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;29996:1;29982:16;;:2;:16;;;;29974:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;30052:39;30073:4;30079:2;30083:7;30052:20;:39::i;:::-;30156:29;30173:1;30177:7;30156:8;:29::i;:::-;30217:1;30198:9;:15;30208:4;30198:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30246:1;30229:9;:13;30239:2;30229:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;30277:2;30258:7;:16;30266:7;30258:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;30316:7;30312:2;30297:27;;30306:4;30297:27;;;;;;;;;;;;29754:578;;;:::o;42876:173::-;42932:16;42951:6;;;;;;;;;;;42932:25;;42977:8;42968:6;;:17;;;;;;;;;;;;;;;;;;43032:8;43001:40;;43022:8;43001:40;;;;;;;;;;;;42921:128;42876:173;:::o;27452:110::-;27528:26;27538:2;27542:7;27528:26;;;;;;;;;;;;:9;:26::i;:::-;27452:110;;:::o;25840:315::-;25997:28;26007:4;26013:2;26017:7;25997:9;:28::i;:::-;26044:48;26067:4;26073:2;26077:7;26086:5;26044:22;:48::i;:::-;26036:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25840:315;;;;:::o;43788:108::-;43848:13;43877;43870:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43788:108;:::o;16509:723::-;16565:13;16795:1;16786:5;:10;16782:53;;;16813:10;;;;;;;;;;;;;;;;;;;;;16782:53;16845:12;16860:5;16845:20;;16876:14;16901:78;16916:1;16908:4;:9;16901:78;;16934:8;;;;;:::i;:::-;;;;16965:2;16957:10;;;;;:::i;:::-;;;16901:78;;;16989:19;17021:6;17011:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16989:39;;17039:154;17055:1;17046:5;:10;17039:154;;17083:1;17073:11;;;;;:::i;:::-;;;17150:2;17142:5;:10;;;;:::i;:::-;17129:2;:24;;;;:::i;:::-;17116:39;;17099:6;17106;17099:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;17179:2;17170:11;;;;;:::i;:::-;;;17039:154;;;17217:6;17203:21;;;;;16509:723;;;;:::o;19070:157::-;19155:4;19194:25;19179:40;;;:11;:40;;;;19172:47;;19070:157;;;:::o;36302:589::-;36446:45;36473:4;36479:2;36483:7;36446:26;:45::i;:::-;36524:1;36508:18;;:4;:18;;;36504:187;;;36543:40;36575:7;36543:31;:40::i;:::-;36504:187;;;36613:2;36605:10;;:4;:10;;;36601:90;;36632:47;36665:4;36671:7;36632:32;:47::i;:::-;36601:90;36504:187;36719:1;36705:16;;:2;:16;;;36701:183;;;36738:45;36775:7;36738:36;:45::i;:::-;36701:183;;;36811:4;36805:10;;:2;:10;;;36801:83;;36832:40;36860:2;36864:7;36832:27;:40::i;:::-;36801:83;36701:183;36302:589;;;:::o;27789:321::-;27919:18;27925:2;27929:7;27919:5;:18::i;:::-;27970:54;28001:1;28005:2;28009:7;28018:5;27970:22;:54::i;:::-;27948:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;27789:321;;;:::o;31189:803::-;31344:4;31365:15;:2;:13;;;:15::i;:::-;31361:624;;;31417:2;31401:36;;;31438:12;:10;:12::i;:::-;31452:4;31458:7;31467:5;31401:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31397:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31664:1;31647:6;:13;:18;31643:272;;;31690:60;;;;;;;;;;:::i;:::-;;;;;;;;31643:272;31865:6;31859:13;31850:6;31846:2;31842:15;31835:38;31397:533;31534:45;;;31524:55;;;:6;:55;;;;31517:62;;;;;31361:624;31969:4;31962:11;;31189:803;;;;;;;:::o;32564:126::-;;;;:::o;37614:164::-;37718:10;:17;;;;37691:15;:24;37707:7;37691:24;;;;;;;;;;;:44;;;;37746:10;37762:7;37746:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37614:164;:::o;38405:988::-;38671:22;38721:1;38696:22;38713:4;38696:16;:22::i;:::-;:26;;;;:::i;:::-;38671:51;;38733:18;38754:17;:26;38772:7;38754:26;;;;;;;;;;;;38733:47;;38901:14;38887:10;:28;38883:328;;38932:19;38954:12;:18;38967:4;38954:18;;;;;;;;;;;;;;;:34;38973:14;38954:34;;;;;;;;;;;;38932:56;;39038:11;39005:12;:18;39018:4;39005:18;;;;;;;;;;;;;;;:30;39024:10;39005:30;;;;;;;;;;;:44;;;;39155:10;39122:17;:30;39140:11;39122:30;;;;;;;;;;;:43;;;;38917:294;38883:328;39307:17;:26;39325:7;39307:26;;;;;;;;;;;39300:33;;;39351:12;:18;39364:4;39351:18;;;;;;;;;;;;;;;:34;39370:14;39351:34;;;;;;;;;;;39344:41;;;38486:907;;38405:988;;:::o;39688:1079::-;39941:22;39986:1;39966:10;:17;;;;:21;;;;:::i;:::-;39941:46;;39998:18;40019:15;:24;40035:7;40019:24;;;;;;;;;;;;39998:45;;40370:19;40392:10;40403:14;40392:26;;;;;;;;:::i;:::-;;;;;;;;;;40370:48;;40456:11;40431:10;40442;40431:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;40567:10;40536:15;:28;40552:11;40536:28;;;;;;;;;;;:41;;;;40708:15;:24;40724:7;40708:24;;;;;;;;;;;40701:31;;;40743:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39759:1008;;;39688:1079;:::o;37192:221::-;37277:14;37294:20;37311:2;37294:16;:20::i;:::-;37277:37;;37352:7;37325:12;:16;37338:2;37325:16;;;;;;;;;;;;;;;:24;37342:6;37325:24;;;;;;;;;;;:34;;;;37399:6;37370:17;:26;37388:7;37370:26;;;;;;;;;;;:35;;;;37266:147;37192:221;;:::o;28446:382::-;28540:1;28526:16;;:2;:16;;;;28518:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28599:16;28607:7;28599;:16::i;:::-;28598:17;28590:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28661:45;28690:1;28694:2;28698:7;28661:20;:45::i;:::-;28736:1;28719:9;:13;28729:2;28719:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28767:2;28748:7;:16;28756:7;28748:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28812:7;28808:2;28787:33;;28804:1;28787:33;;;;;;;;;;;;28446:382;;:::o;8234:387::-;8294:4;8502:12;8569:7;8557:20;8549:28;;8612:1;8605:4;:8;8598:15;;;8234:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:329::-;7211:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:119;;;7266:79;;:::i;:::-;7228:119;7386:1;7411:53;7456:7;7447:6;7436:9;7432:22;7411:53;:::i;:::-;7401:63;;7357:117;7152:329;;;;:::o;7487:118::-;7574:24;7592:5;7574:24;:::i;:::-;7569:3;7562:37;7487:118;;:::o;7611:109::-;7692:21;7707:5;7692:21;:::i;:::-;7687:3;7680:34;7611:109;;:::o;7726:360::-;7812:3;7840:38;7872:5;7840:38;:::i;:::-;7894:70;7957:6;7952:3;7894:70;:::i;:::-;7887:77;;7973:52;8018:6;8013:3;8006:4;7999:5;7995:16;7973:52;:::i;:::-;8050:29;8072:6;8050:29;:::i;:::-;8045:3;8041:39;8034:46;;7816:270;7726:360;;;;:::o;8092:364::-;8180:3;8208:39;8241:5;8208:39;:::i;:::-;8263:71;8327:6;8322:3;8263:71;:::i;:::-;8256:78;;8343:52;8388:6;8383:3;8376:4;8369:5;8365:16;8343:52;:::i;:::-;8420:29;8442:6;8420:29;:::i;:::-;8415:3;8411:39;8404:46;;8184:272;8092:364;;;;:::o;8462:377::-;8568:3;8596:39;8629:5;8596:39;:::i;:::-;8651:89;8733:6;8728:3;8651:89;:::i;:::-;8644:96;;8749:52;8794:6;8789:3;8782:4;8775:5;8771:16;8749:52;:::i;:::-;8826:6;8821:3;8817:16;8810:23;;8572:267;8462:377;;;;:::o;8845:366::-;8987:3;9008:67;9072:2;9067:3;9008:67;:::i;:::-;9001:74;;9084:93;9173:3;9084:93;:::i;:::-;9202:2;9197:3;9193:12;9186:19;;8845:366;;;:::o;9217:::-;9359:3;9380:67;9444:2;9439:3;9380:67;:::i;:::-;9373:74;;9456:93;9545:3;9456:93;:::i;:::-;9574:2;9569:3;9565:12;9558:19;;9217:366;;;:::o;9589:::-;9731:3;9752:67;9816:2;9811:3;9752:67;:::i;:::-;9745:74;;9828:93;9917:3;9828:93;:::i;:::-;9946:2;9941:3;9937:12;9930:19;;9589:366;;;:::o;9961:::-;10103:3;10124:67;10188:2;10183:3;10124:67;:::i;:::-;10117:74;;10200:93;10289:3;10200:93;:::i;:::-;10318:2;10313:3;10309:12;10302:19;;9961:366;;;:::o;10333:::-;10475:3;10496:67;10560:2;10555:3;10496:67;:::i;:::-;10489:74;;10572:93;10661:3;10572:93;:::i;:::-;10690:2;10685:3;10681:12;10674:19;;10333:366;;;:::o;10705:::-;10847:3;10868:67;10932:2;10927:3;10868:67;:::i;:::-;10861:74;;10944:93;11033:3;10944:93;:::i;:::-;11062:2;11057:3;11053:12;11046:19;;10705:366;;;:::o;11077:::-;11219:3;11240:67;11304:2;11299:3;11240:67;:::i;:::-;11233:74;;11316:93;11405:3;11316:93;:::i;:::-;11434:2;11429:3;11425:12;11418:19;;11077:366;;;:::o;11449:::-;11591:3;11612:67;11676:2;11671:3;11612:67;:::i;:::-;11605:74;;11688:93;11777:3;11688:93;:::i;:::-;11806:2;11801:3;11797:12;11790:19;;11449:366;;;:::o;11821:::-;11963:3;11984:67;12048:2;12043:3;11984:67;:::i;:::-;11977:74;;12060:93;12149:3;12060:93;:::i;:::-;12178:2;12173:3;12169:12;12162:19;;11821:366;;;:::o;12193:::-;12335:3;12356:67;12420:2;12415:3;12356:67;:::i;:::-;12349:74;;12432:93;12521:3;12432:93;:::i;:::-;12550:2;12545:3;12541:12;12534:19;;12193:366;;;:::o;12565:::-;12707:3;12728:67;12792:2;12787:3;12728:67;:::i;:::-;12721:74;;12804:93;12893:3;12804:93;:::i;:::-;12922:2;12917:3;12913:12;12906:19;;12565:366;;;:::o;12937:::-;13079:3;13100:67;13164:2;13159:3;13100:67;:::i;:::-;13093:74;;13176:93;13265:3;13176:93;:::i;:::-;13294:2;13289:3;13285:12;13278:19;;12937:366;;;:::o;13309:::-;13451:3;13472:67;13536:2;13531:3;13472:67;:::i;:::-;13465:74;;13548:93;13637:3;13548:93;:::i;:::-;13666:2;13661:3;13657:12;13650:19;;13309:366;;;:::o;13681:::-;13823:3;13844:67;13908:2;13903:3;13844:67;:::i;:::-;13837:74;;13920:93;14009:3;13920:93;:::i;:::-;14038:2;14033:3;14029:12;14022:19;;13681:366;;;:::o;14053:::-;14195:3;14216:67;14280:2;14275:3;14216:67;:::i;:::-;14209:74;;14292:93;14381:3;14292:93;:::i;:::-;14410:2;14405:3;14401:12;14394:19;;14053:366;;;:::o;14425:::-;14567:3;14588:67;14652:2;14647:3;14588:67;:::i;:::-;14581:74;;14664:93;14753:3;14664:93;:::i;:::-;14782:2;14777:3;14773:12;14766:19;;14425:366;;;:::o;14797:::-;14939:3;14960:67;15024:2;15019:3;14960:67;:::i;:::-;14953:74;;15036:93;15125:3;15036:93;:::i;:::-;15154:2;15149:3;15145:12;15138:19;;14797:366;;;:::o;15169:::-;15311:3;15332:67;15396:2;15391:3;15332:67;:::i;:::-;15325:74;;15408:93;15497:3;15408:93;:::i;:::-;15526:2;15521:3;15517:12;15510:19;;15169:366;;;:::o;15541:::-;15683:3;15704:67;15768:2;15763:3;15704:67;:::i;:::-;15697:74;;15780:93;15869:3;15780:93;:::i;:::-;15898:2;15893:3;15889:12;15882:19;;15541:366;;;:::o;15913:::-;16055:3;16076:67;16140:2;16135:3;16076:67;:::i;:::-;16069:74;;16152:93;16241:3;16152:93;:::i;:::-;16270:2;16265:3;16261:12;16254:19;;15913:366;;;:::o;16285:::-;16427:3;16448:67;16512:2;16507:3;16448:67;:::i;:::-;16441:74;;16524:93;16613:3;16524:93;:::i;:::-;16642:2;16637:3;16633:12;16626:19;;16285:366;;;:::o;16657:::-;16799:3;16820:67;16884:2;16879:3;16820:67;:::i;:::-;16813:74;;16896:93;16985:3;16896:93;:::i;:::-;17014:2;17009:3;17005:12;16998:19;;16657:366;;;:::o;17029:::-;17171:3;17192:67;17256:2;17251:3;17192:67;:::i;:::-;17185:74;;17268:93;17357:3;17268:93;:::i;:::-;17386:2;17381:3;17377:12;17370:19;;17029:366;;;:::o;17401:::-;17543:3;17564:67;17628:2;17623:3;17564:67;:::i;:::-;17557:74;;17640:93;17729:3;17640:93;:::i;:::-;17758:2;17753:3;17749:12;17742:19;;17401:366;;;:::o;17773:::-;17915:3;17936:67;18000:2;17995:3;17936:67;:::i;:::-;17929:74;;18012:93;18101:3;18012:93;:::i;:::-;18130:2;18125:3;18121:12;18114:19;;17773:366;;;:::o;18145:118::-;18232:24;18250:5;18232:24;:::i;:::-;18227:3;18220:37;18145:118;;:::o;18269:435::-;18449:3;18471:95;18562:3;18553:6;18471:95;:::i;:::-;18464:102;;18583:95;18674:3;18665:6;18583:95;:::i;:::-;18576:102;;18695:3;18688:10;;18269:435;;;;;:::o;18710:222::-;18803:4;18841:2;18830:9;18826:18;18818:26;;18854:71;18922:1;18911:9;18907:17;18898:6;18854:71;:::i;:::-;18710:222;;;;:::o;18938:640::-;19133:4;19171:3;19160:9;19156:19;19148:27;;19185:71;19253:1;19242:9;19238:17;19229:6;19185:71;:::i;:::-;19266:72;19334:2;19323:9;19319:18;19310:6;19266:72;:::i;:::-;19348;19416:2;19405:9;19401:18;19392:6;19348:72;:::i;:::-;19467:9;19461:4;19457:20;19452:2;19441:9;19437:18;19430:48;19495:76;19566:4;19557:6;19495:76;:::i;:::-;19487:84;;18938:640;;;;;;;:::o;19584:210::-;19671:4;19709:2;19698:9;19694:18;19686:26;;19722:65;19784:1;19773:9;19769:17;19760:6;19722:65;:::i;:::-;19584:210;;;;:::o;19800:313::-;19913:4;19951:2;19940:9;19936:18;19928:26;;20000:9;19994:4;19990:20;19986:1;19975:9;19971:17;19964:47;20028:78;20101:4;20092:6;20028:78;:::i;:::-;20020:86;;19800:313;;;;:::o;20119:419::-;20285:4;20323:2;20312:9;20308:18;20300:26;;20372:9;20366:4;20362:20;20358:1;20347:9;20343:17;20336:47;20400:131;20526:4;20400:131;:::i;:::-;20392:139;;20119:419;;;:::o;20544:::-;20710:4;20748:2;20737:9;20733:18;20725:26;;20797:9;20791:4;20787:20;20783:1;20772:9;20768:17;20761:47;20825:131;20951:4;20825:131;:::i;:::-;20817:139;;20544:419;;;:::o;20969:::-;21135:4;21173:2;21162:9;21158:18;21150:26;;21222:9;21216:4;21212:20;21208:1;21197:9;21193:17;21186:47;21250:131;21376:4;21250:131;:::i;:::-;21242:139;;20969:419;;;:::o;21394:::-;21560:4;21598:2;21587:9;21583:18;21575:26;;21647:9;21641:4;21637:20;21633:1;21622:9;21618:17;21611:47;21675:131;21801:4;21675:131;:::i;:::-;21667:139;;21394:419;;;:::o;21819:::-;21985:4;22023:2;22012:9;22008:18;22000:26;;22072:9;22066:4;22062:20;22058:1;22047:9;22043:17;22036:47;22100:131;22226:4;22100:131;:::i;:::-;22092:139;;21819:419;;;:::o;22244:::-;22410:4;22448:2;22437:9;22433:18;22425:26;;22497:9;22491:4;22487:20;22483:1;22472:9;22468:17;22461:47;22525:131;22651:4;22525:131;:::i;:::-;22517:139;;22244:419;;;:::o;22669:::-;22835:4;22873:2;22862:9;22858:18;22850:26;;22922:9;22916:4;22912:20;22908:1;22897:9;22893:17;22886:47;22950:131;23076:4;22950:131;:::i;:::-;22942:139;;22669:419;;;:::o;23094:::-;23260:4;23298:2;23287:9;23283:18;23275:26;;23347:9;23341:4;23337:20;23333:1;23322:9;23318:17;23311:47;23375:131;23501:4;23375:131;:::i;:::-;23367:139;;23094:419;;;:::o;23519:::-;23685:4;23723:2;23712:9;23708:18;23700:26;;23772:9;23766:4;23762:20;23758:1;23747:9;23743:17;23736:47;23800:131;23926:4;23800:131;:::i;:::-;23792:139;;23519:419;;;:::o;23944:::-;24110:4;24148:2;24137:9;24133:18;24125:26;;24197:9;24191:4;24187:20;24183:1;24172:9;24168:17;24161:47;24225:131;24351:4;24225:131;:::i;:::-;24217:139;;23944:419;;;:::o;24369:::-;24535:4;24573:2;24562:9;24558:18;24550:26;;24622:9;24616:4;24612:20;24608:1;24597:9;24593:17;24586:47;24650:131;24776:4;24650:131;:::i;:::-;24642:139;;24369:419;;;:::o;24794:::-;24960:4;24998:2;24987:9;24983:18;24975:26;;25047:9;25041:4;25037:20;25033:1;25022:9;25018:17;25011:47;25075:131;25201:4;25075:131;:::i;:::-;25067:139;;24794:419;;;:::o;25219:::-;25385:4;25423:2;25412:9;25408:18;25400:26;;25472:9;25466:4;25462:20;25458:1;25447:9;25443:17;25436:47;25500:131;25626:4;25500:131;:::i;:::-;25492:139;;25219:419;;;:::o;25644:::-;25810:4;25848:2;25837:9;25833:18;25825:26;;25897:9;25891:4;25887:20;25883:1;25872:9;25868:17;25861:47;25925:131;26051:4;25925:131;:::i;:::-;25917:139;;25644:419;;;:::o;26069:::-;26235:4;26273:2;26262:9;26258:18;26250:26;;26322:9;26316:4;26312:20;26308:1;26297:9;26293:17;26286:47;26350:131;26476:4;26350:131;:::i;:::-;26342:139;;26069:419;;;:::o;26494:::-;26660:4;26698:2;26687:9;26683:18;26675:26;;26747:9;26741:4;26737:20;26733:1;26722:9;26718:17;26711:47;26775:131;26901:4;26775:131;:::i;:::-;26767:139;;26494:419;;;:::o;26919:::-;27085:4;27123:2;27112:9;27108:18;27100:26;;27172:9;27166:4;27162:20;27158:1;27147:9;27143:17;27136:47;27200:131;27326:4;27200:131;:::i;:::-;27192:139;;26919:419;;;:::o;27344:::-;27510:4;27548:2;27537:9;27533:18;27525:26;;27597:9;27591:4;27587:20;27583:1;27572:9;27568:17;27561:47;27625:131;27751:4;27625:131;:::i;:::-;27617:139;;27344:419;;;:::o;27769:::-;27935:4;27973:2;27962:9;27958:18;27950:26;;28022:9;28016:4;28012:20;28008:1;27997:9;27993:17;27986:47;28050:131;28176:4;28050:131;:::i;:::-;28042:139;;27769:419;;;:::o;28194:::-;28360:4;28398:2;28387:9;28383:18;28375:26;;28447:9;28441:4;28437:20;28433:1;28422:9;28418:17;28411:47;28475:131;28601:4;28475:131;:::i;:::-;28467:139;;28194:419;;;:::o;28619:::-;28785:4;28823:2;28812:9;28808:18;28800:26;;28872:9;28866:4;28862:20;28858:1;28847:9;28843:17;28836:47;28900:131;29026:4;28900:131;:::i;:::-;28892:139;;28619:419;;;:::o;29044:::-;29210:4;29248:2;29237:9;29233:18;29225:26;;29297:9;29291:4;29287:20;29283:1;29272:9;29268:17;29261:47;29325:131;29451:4;29325:131;:::i;:::-;29317:139;;29044:419;;;:::o;29469:::-;29635:4;29673:2;29662:9;29658:18;29650:26;;29722:9;29716:4;29712:20;29708:1;29697:9;29693:17;29686:47;29750:131;29876:4;29750:131;:::i;:::-;29742:139;;29469:419;;;:::o;29894:::-;30060:4;30098:2;30087:9;30083:18;30075:26;;30147:9;30141:4;30137:20;30133:1;30122:9;30118:17;30111:47;30175:131;30301:4;30175:131;:::i;:::-;30167:139;;29894:419;;;:::o;30319:::-;30485:4;30523:2;30512:9;30508:18;30500:26;;30572:9;30566:4;30562:20;30558:1;30547:9;30543:17;30536:47;30600:131;30726:4;30600:131;:::i;:::-;30592:139;;30319:419;;;:::o;30744:222::-;30837:4;30875:2;30864:9;30860:18;30852:26;;30888:71;30956:1;30945:9;30941:17;30932:6;30888:71;:::i;:::-;30744:222;;;;:::o;30972:129::-;31006:6;31033:20;;:::i;:::-;31023:30;;31062:33;31090:4;31082:6;31062:33;:::i;:::-;30972:129;;;:::o;31107:75::-;31140:6;31173:2;31167:9;31157:19;;31107:75;:::o;31188:307::-;31249:4;31339:18;31331:6;31328:30;31325:56;;;31361:18;;:::i;:::-;31325:56;31399:29;31421:6;31399:29;:::i;:::-;31391:37;;31483:4;31477;31473:15;31465:23;;31188:307;;;:::o;31501:308::-;31563:4;31653:18;31645:6;31642:30;31639:56;;;31675:18;;:::i;:::-;31639:56;31713:29;31735:6;31713:29;:::i;:::-;31705:37;;31797:4;31791;31787:15;31779:23;;31501:308;;;:::o;31815:98::-;31866:6;31900:5;31894:12;31884:22;;31815:98;;;:::o;31919:99::-;31971:6;32005:5;31999:12;31989:22;;31919:99;;;:::o;32024:168::-;32107:11;32141:6;32136:3;32129:19;32181:4;32176:3;32172:14;32157:29;;32024:168;;;;:::o;32198:169::-;32282:11;32316:6;32311:3;32304:19;32356:4;32351:3;32347:14;32332:29;;32198:169;;;;:::o;32373:148::-;32475:11;32512:3;32497:18;;32373:148;;;;:::o;32527:305::-;32567:3;32586:20;32604:1;32586:20;:::i;:::-;32581:25;;32620:20;32638:1;32620:20;:::i;:::-;32615:25;;32774:1;32706:66;32702:74;32699:1;32696:81;32693:107;;;32780:18;;:::i;:::-;32693:107;32824:1;32821;32817:9;32810:16;;32527:305;;;;:::o;32838:185::-;32878:1;32895:20;32913:1;32895:20;:::i;:::-;32890:25;;32929:20;32947:1;32929:20;:::i;:::-;32924:25;;32968:1;32958:35;;32973:18;;:::i;:::-;32958:35;33015:1;33012;33008:9;33003:14;;32838:185;;;;:::o;33029:348::-;33069:7;33092:20;33110:1;33092:20;:::i;:::-;33087:25;;33126:20;33144:1;33126:20;:::i;:::-;33121:25;;33314:1;33246:66;33242:74;33239:1;33236:81;33231:1;33224:9;33217:17;33213:105;33210:131;;;33321:18;;:::i;:::-;33210:131;33369:1;33366;33362:9;33351:20;;33029:348;;;;:::o;33383:191::-;33423:4;33443:20;33461:1;33443:20;:::i;:::-;33438:25;;33477:20;33495:1;33477:20;:::i;:::-;33472:25;;33516:1;33513;33510:8;33507:34;;;33521:18;;:::i;:::-;33507:34;33566:1;33563;33559:9;33551:17;;33383:191;;;;:::o;33580:96::-;33617:7;33646:24;33664:5;33646:24;:::i;:::-;33635:35;;33580:96;;;:::o;33682:90::-;33716:7;33759:5;33752:13;33745:21;33734:32;;33682:90;;;:::o;33778:149::-;33814:7;33854:66;33847:5;33843:78;33832:89;;33778:149;;;:::o;33933:126::-;33970:7;34010:42;34003:5;33999:54;33988:65;;33933:126;;;:::o;34065:77::-;34102:7;34131:5;34120:16;;34065:77;;;:::o;34148:154::-;34232:6;34227:3;34222;34209:30;34294:1;34285:6;34280:3;34276:16;34269:27;34148:154;;;:::o;34308:307::-;34376:1;34386:113;34400:6;34397:1;34394:13;34386:113;;;34485:1;34480:3;34476:11;34470:18;34466:1;34461:3;34457:11;34450:39;34422:2;34419:1;34415:10;34410:15;;34386:113;;;34517:6;34514:1;34511:13;34508:101;;;34597:1;34588:6;34583:3;34579:16;34572:27;34508:101;34357:258;34308:307;;;:::o;34621:320::-;34665:6;34702:1;34696:4;34692:12;34682:22;;34749:1;34743:4;34739:12;34770:18;34760:81;;34826:4;34818:6;34814:17;34804:27;;34760:81;34888:2;34880:6;34877:14;34857:18;34854:38;34851:84;;;34907:18;;:::i;:::-;34851:84;34672:269;34621:320;;;:::o;34947:281::-;35030:27;35052:4;35030:27;:::i;:::-;35022:6;35018:40;35160:6;35148:10;35145:22;35124:18;35112:10;35109:34;35106:62;35103:88;;;35171:18;;:::i;:::-;35103:88;35211:10;35207:2;35200:22;34990:238;34947:281;;:::o;35234:233::-;35273:3;35296:24;35314:5;35296:24;:::i;:::-;35287:33;;35342:66;35335:5;35332:77;35329:103;;;35412:18;;:::i;:::-;35329:103;35459:1;35452:5;35448:13;35441:20;;35234:233;;;:::o;35473:176::-;35505:1;35522:20;35540:1;35522:20;:::i;:::-;35517:25;;35556:20;35574:1;35556:20;:::i;:::-;35551:25;;35595:1;35585:35;;35600:18;;:::i;:::-;35585:35;35641:1;35638;35634:9;35629:14;;35473:176;;;;:::o;35655:180::-;35703:77;35700:1;35693:88;35800:4;35797:1;35790:15;35824:4;35821:1;35814:15;35841:180;35889:77;35886:1;35879:88;35986:4;35983:1;35976:15;36010:4;36007:1;36000:15;36027:180;36075:77;36072:1;36065:88;36172:4;36169:1;36162:15;36196:4;36193:1;36186:15;36213:180;36261:77;36258:1;36251:88;36358:4;36355:1;36348:15;36382:4;36379:1;36372:15;36399:180;36447:77;36444:1;36437:88;36544:4;36541:1;36534:15;36568:4;36565:1;36558:15;36585:180;36633:77;36630:1;36623:88;36730:4;36727:1;36720:15;36754:4;36751:1;36744:15;36771:117;36880:1;36877;36870:12;36894:117;37003:1;37000;36993:12;37017:117;37126:1;37123;37116:12;37140:117;37249:1;37246;37239:12;37263:102;37304:6;37355:2;37351:7;37346:2;37339:5;37335:14;37331:28;37321:38;;37263:102;;;:::o;37371:230::-;37511:34;37507:1;37499:6;37495:14;37488:58;37580:13;37575:2;37567:6;37563:15;37556:38;37371:230;:::o;37607:237::-;37747:34;37743:1;37735:6;37731:14;37724:58;37816:20;37811:2;37803:6;37799:15;37792:45;37607:237;:::o;37850:225::-;37990:34;37986:1;37978:6;37974:14;37967:58;38059:8;38054:2;38046:6;38042:15;38035:33;37850:225;:::o;38081:178::-;38221:30;38217:1;38209:6;38205:14;38198:54;38081:178;:::o;38265:173::-;38405:25;38401:1;38393:6;38389:14;38382:49;38265:173;:::o;38444:223::-;38584:34;38580:1;38572:6;38568:14;38561:58;38653:6;38648:2;38640:6;38636:15;38629:31;38444:223;:::o;38673:175::-;38813:27;38809:1;38801:6;38797:14;38790:51;38673:175;:::o;38854:231::-;38994:34;38990:1;38982:6;38978:14;38971:58;39063:14;39058:2;39050:6;39046:15;39039:39;38854:231;:::o;39091:230::-;39231:34;39227:1;39219:6;39215:14;39208:58;39300:13;39295:2;39287:6;39283:15;39276:38;39091:230;:::o;39327:243::-;39467:34;39463:1;39455:6;39451:14;39444:58;39536:26;39531:2;39523:6;39519:15;39512:51;39327:243;:::o;39576:229::-;39716:34;39712:1;39704:6;39700:14;39693:58;39785:12;39780:2;39772:6;39768:15;39761:37;39576:229;:::o;39811:228::-;39951:34;39947:1;39939:6;39935:14;39928:58;40020:11;40015:2;40007:6;40003:15;39996:36;39811:228;:::o;40045:178::-;40185:30;40181:1;40173:6;40169:14;40162:54;40045:178;:::o;40229:182::-;40369:34;40365:1;40357:6;40353:14;40346:58;40229:182;:::o;40417:231::-;40557:34;40553:1;40545:6;40541:14;40534:58;40626:14;40621:2;40613:6;40609:15;40602:39;40417:231;:::o;40654:182::-;40794:34;40790:1;40782:6;40778:14;40771:58;40654:182;:::o;40842:228::-;40982:34;40978:1;40970:6;40966:14;40959:58;41051:11;41046:2;41038:6;41034:15;41027:36;40842:228;:::o;41076:234::-;41216:34;41212:1;41204:6;41200:14;41193:58;41285:17;41280:2;41272:6;41268:15;41261:42;41076:234;:::o;41316:169::-;41456:21;41452:1;41444:6;41440:14;41433:45;41316:169;:::o;41491:220::-;41631:34;41627:1;41619:6;41615:14;41608:58;41700:3;41695:2;41687:6;41683:15;41676:28;41491:220;:::o;41717:224::-;41857:34;41853:1;41845:6;41841:14;41834:58;41926:7;41921:2;41913:6;41909:15;41902:32;41717:224;:::o;41947:236::-;42087:34;42083:1;42075:6;42071:14;42064:58;42156:19;42151:2;42143:6;42139:15;42132:44;41947:236;:::o;42189:231::-;42329:34;42325:1;42317:6;42313:14;42306:58;42398:14;42393:2;42385:6;42381:15;42374:39;42189:231;:::o;42426:::-;42566:34;42562:1;42554:6;42550:14;42543:58;42635:14;42630:2;42622:6;42618:15;42611:39;42426:231;:::o;42663:222::-;42803:34;42799:1;42791:6;42787:14;42780:58;42872:5;42867:2;42859:6;42855:15;42848:30;42663:222;:::o;42891:122::-;42964:24;42982:5;42964:24;:::i;:::-;42957:5;42954:35;42944:63;;43003:1;43000;42993:12;42944:63;42891:122;:::o;43019:116::-;43089:21;43104:5;43089:21;:::i;:::-;43082:5;43079:32;43069:60;;43125:1;43122;43115:12;43069:60;43019:116;:::o;43141:120::-;43213:23;43230:5;43213:23;:::i;:::-;43206:5;43203:34;43193:62;;43251:1;43248;43241:12;43193:62;43141:120;:::o;43267:122::-;43340:24;43358:5;43340:24;:::i;:::-;43333:5;43330:35;43320:63;;43379:1;43376;43369:12;43320:63;43267:122;:::o

Swarm Source

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