ETH Price: $3,300.03 (-0.50%)

Token

AOM_FANSI_LOFIHIFI_001 (AOMFNSI)
 

Overview

Max Total Supply

73 AOMFNSI

Holders

24

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
abana.eth
Balance
3 AOMFNSI
0x7F6417eCc59685F4363DD7662D0cB26F2E5e5E5c
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:
AOM_FANSI_LOFIHIFI_001

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 1 of 14: ABEL.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "./ERC721.sol";
import "./Ownable.sol";
import "./ReentrancyGuard.sol";
import "./ERC721Enumerable.sol";

contract AOM_FANSI_LOFIHIFI_001 is Ownable, ReentrancyGuard, ERC721Enumerable {
    using Strings for uint256;

    string public baseTokenURI;
    bool public isPaused = false;

    uint256 public constant maxSupply = 95;
    uint256 public constant price = 0.15 ether;
    uint256 public constant wlPrice = 0.12 ether;
    
    address constant metaBoomAddr = 0x4C22D3B875437D43402F5B81aE4f61b8F764E1b1;
    
    uint256 public wlSaleStartTime = 1667914200;
    uint256 public wlSaleEndTime = 1668083400;
    
    uint256 public publicSaleStartTime = 1668087000;
    uint256 public publicSaleEndTime = 1668605400;
    
    uint8 public amountPerAddr = 3;
    uint8 public wlAmountPerAddr = 1;
    uint8 public bonusDrop = 0;
    uint8 public curSold = 0;
    uint16 public totalSold = 0;

    mapping(uint8 => bool) public bonusList;
    mapping(uint8 => mbBonus) public mbBonusList;
    mapping(address => uint8) public holdedNumAry;
    mapping(address => bool) public whiteList;

    struct mbBonus {
        address bonusHolder;
        uint16 bonusNo;
    }

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _uri
    ) ERC721(_name, _symbol) {
        baseTokenURI = _uri;
    }

    function publicSale(uint8 _purchaseNum)
        external
        payable
        onlyUser
        nonReentrant
    {
        require(!isPaused, "Abel: currently paused");
        require(
            block.timestamp >= publicSaleStartTime,
            "Abel: public sale is not started yet"
        );
        require(
            (holdedNumAry[_msgSender()] + _purchaseNum) <= amountPerAddr,
            "Abel: Each Address can only purchase 3 sets"
        );
        require(
            (totalSold + _purchaseNum*3) <= maxSupply,
            "Abel: reached max supply"
        );
        require(
            msg.value >= (price * _purchaseNum),
            "Abel: price is incorrect"
        );

        for (uint8 i = 1; i <= _purchaseNum*3; i++) {
            _safeMint(_msgSender(), totalSold + i);
        }

        ERC721 MB = ERC721(metaBoomAddr);
        for (uint8 i = 0; i < _purchaseNum; i++) {
            if(bonusList[curSold + i + 1]){
                _safeMint(_msgSender(), maxSupply - bonusDrop);
                bonusDrop = bonusDrop + 1;
            }

            MB.safeTransferFrom(mbBonusList[curSold + i].bonusHolder, _msgSender(), mbBonusList[curSold + i].bonusNo);
        }
        holdedNumAry[_msgSender()] = holdedNumAry[_msgSender()] + _purchaseNum;
        curSold = curSold + _purchaseNum;
        totalSold = totalSold + _purchaseNum*3;
    }

    function whiteListSale(uint8 _purchaseNum)
        external
        payable
        onlyWhiteList
        onlyUser
        nonReentrant
    {
        require(!isPaused, "Abel: currently paused");
        require(
            block.timestamp >= wlSaleStartTime,
            "Abel: WhiteList sale is not started yet"
        );
        require(
            block.timestamp < wlSaleEndTime,
            "Abel: WhiteList sale is ended"
        );
        require(
            (holdedNumAry[_msgSender()] + _purchaseNum) <= wlAmountPerAddr,
            "Abel: Each Address can only hold 1 set"
        );
        require(
            (totalSold + _purchaseNum*3) <= maxSupply,
            "Abel: reached max supply"
        );
        require(
            msg.value >= (wlPrice * _purchaseNum),
            "Abel: price is incorrect"
        );
        for (uint8 i = 1; i <= _purchaseNum*3; i++) {
            _safeMint(_msgSender(), totalSold + i);
        }

        ERC721 MB = ERC721(metaBoomAddr);
        for (uint8 i = 0; i < _purchaseNum; i++) {
            if(bonusList[curSold + i + 1]){
                _safeMint(_msgSender(), maxSupply - bonusDrop);
                bonusDrop = bonusDrop + 1;
            }

            MB.safeTransferFrom(mbBonusList[curSold + i].bonusHolder, _msgSender(), mbBonusList[curSold + i].bonusNo);
        }
        holdedNumAry[_msgSender()] = holdedNumAry[_msgSender()] + _purchaseNum;
        curSold = curSold + _purchaseNum;
        totalSold = totalSold + _purchaseNum*3;
    }

    function ownerMInt(address _addr, uint8 _amount) external onlyOwner {
        require(
            (totalSold + _amount) <= maxSupply,
            "Abel: reached max supply"
        );

        for (uint8 i = 1; i <= _amount; i++) {
            _safeMint(_addr, totalSold + i);
        }
    }

    modifier onlyWhiteList() {
        require(whiteList[_msgSender()], "Abel: caller not on WhiteList");
        _;
    }

    modifier onlyUser() {
        require(_msgSender() == tx.origin, "Abel: no contract mint");
        _;
    }

    function addBatchWhiteList(address[] memory _accounts) external onlyOwner {
        for (uint256 i = 0; i < _accounts.length; i++) {
            whiteList[_accounts[i]] = true;
        }
    }

    function addBonusList(uint8[] memory _bonus) external onlyOwner {
        for (uint8 i = 0; i < _bonus.length; i++) {
            bonusList[_bonus[i]] = true;
        }
    }

    function setMBBonusList(address[] memory _bonusHolder, uint16[] memory _bonusNo) external onlyOwner {
        for (uint8 i = 0; i < _bonusHolder.length; i++) {
            mbBonusList[i].bonusHolder = _bonusHolder[i];
            mbBonusList[i].bonusNo = _bonusNo[i];
        }
    }

    function setWlStartTime(uint256 _time) external onlyOwner {
        wlSaleStartTime = _time;
    }

    function setWlEndTime(uint256 _time) external onlyOwner {
        wlSaleEndTime = _time;
    }

    function setPublicStartTime(uint256 _time) external onlyOwner {
        publicSaleStartTime = _time;
    }

    function setPublicEndTime(uint256 _time) external onlyOwner {
        publicSaleEndTime = _time;
    }

    function setBaseURI(string memory _baseURI) external onlyOwner {
        baseTokenURI = _baseURI;
    }

    function setPause(bool _isPaused) external onlyOwner returns (bool) {
        isPaused = _isPaused;
        return isPaused;
    }

    function withdraw() external onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }

    function tokensOfOwner(address _owner)
        external
        view
        returns (uint256[] memory)
    {
        uint256 tokenCount = balanceOf(_owner);
        if (tokenCount == 0) {
            return new uint256[](0);
        } else {
            uint256[] memory result = new uint256[](tokenCount);
            uint256 index;
            for (index = 0; index < tokenCount; index++) {
                result[index] = tokenOfOwnerByIndex(_owner, index);
            }
            return result;
        }
    }

    function tokenURI(uint256 _tokenId)
        public
        view
        override
        returns (string memory)
    {
        return
            string(abi.encodePacked(baseTokenURI, Strings.toString(_tokenId),".json"));
    }
}

File 2 of 14: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 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);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal 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 3 of 14: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 4 of 14: ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 5 of 14: ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overridden 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
    {
        _setApprovalForAll(_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 ||
            isApprovedForAll(owner, spender) ||
            getApproved(tokenId) == 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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner"
        );
        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);

        _afterTokenTransfer(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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @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.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 {}

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

File 6 of 14: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 7 of 14: IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

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 8 of 14: IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 14: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

    /**
     * @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 10 of 14: IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 11 of 14: IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 12 of 14: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

File 13 of 14: ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 14 of 14: Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_uri","type":"string"}],"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":[{"internalType":"address[]","name":"_accounts","type":"address[]"}],"name":"addBatchWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8[]","name":"_bonus","type":"uint8[]"}],"name":"addBonusList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"amountPerAddr","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"bonusDrop","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"","type":"uint8"}],"name":"bonusList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"curSold","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"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":"","type":"address"}],"name":"holdedNumAry","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"","type":"uint8"}],"name":"mbBonusList","outputs":[{"internalType":"address","name":"bonusHolder","type":"address"},{"internalType":"uint16","name":"bonusNo","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"},{"internalType":"uint8","name":"_amount","type":"uint8"}],"name":"ownerMInt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_purchaseNum","type":"uint8"}],"name":"publicSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSaleEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_bonusHolder","type":"address[]"},{"internalType":"uint16[]","name":"_bonusNo","type":"uint16[]"}],"name":"setMBBonusList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPaused","type":"bool"}],"name":"setPause","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"setPublicEndTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"setPublicStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"setWlEndTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_time","type":"uint256"}],"name":"setWlStartTime","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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSold","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whiteList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_purchaseNum","type":"uint8"}],"name":"whiteListSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlAmountPerAddr","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wlPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wlSaleEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wlSaleStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

6080604052600d805460ff1916905563636a59d8600e5563636ceec8600f5563636cfcd8601055636374e5d86011556012805465ffffffffffff19166101031790553480156200004e57600080fd5b5060405162003931380380620039318339810160408190526200007191620001d1565b82826200007e33620000bc565b600180556002620000908382620002f1565b5060036200009f8282620002f1565b50600c9150620000b290508282620002f1565b50505050620003bd565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200013457600080fd5b81516001600160401b03808211156200015157620001516200010c565b604051601f8301601f19908116603f011681019082821181831017156200017c576200017c6200010c565b816040528381526020925086838588010111156200019957600080fd5b600091505b83821015620001bd57858201830151818301840152908201906200019e565b600093810190920192909252949350505050565b600080600060608486031215620001e757600080fd5b83516001600160401b0380821115620001ff57600080fd5b6200020d8783880162000122565b945060208601519150808211156200022457600080fd5b620002328783880162000122565b935060408601519150808211156200024957600080fd5b50620002588682870162000122565b9150509250925092565b600181811c908216806200027757607f821691505b6020821081036200029857634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002ec57600081815260208120601f850160051c81016020861015620002c75750805b601f850160051c820191505b81811015620002e857828155600101620002d3565b5050505b505050565b81516001600160401b038111156200030d576200030d6200010c565b62000325816200031e845462000262565b846200029e565b602080601f8311600181146200035d5760008415620003445750858301515b600019600386901b1c1916600185901b178555620002e8565b600085815260208120601f198616915b828110156200038e578886015182559484019460019091019084016200036d565b5085821015620003ad5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61356480620003cd6000396000f3fe6080604052600436106102e45760003560e01c806370a0823111610190578063b88d4fde116100dc578063d911d79611610095578063e985e9c51161006f578063e985e9c5146108ce578063f2fde38b14610917578063f7727ae914610937578063f925ae991461095757600080fd5b8063d911d7961461085d578063d94cb07f1461087e578063db8cc8fa146108ae57600080fd5b8063b88d4fde146107b7578063bedb86fb146107d7578063c7f8d01a146107f7578063c87b56dd14610813578063d547cfb714610833578063d5abeb011461084857600080fd5b80638da5cb5b11610149578063a035b1fe11610123578063a035b1fe14610741578063a22cb4651461075d578063b187bd261461077d578063b2d18ebd1461079757600080fd5b80638da5cb5b146106d95780639106d7ba146106f757806395d89b411461072c57600080fd5b806370a0823114610607578063715018a61461062757806372c985cb1461063c5780637be2e7891461065c578063846069431461068c5780638462151c146106ac57600080fd5b806323b872dd1161024f5780634481c66e1161020857806355f804b3116101e257806355f804b31461059b578063629403f5146105bb5780636352211e146105d15780636bb7b1d9146105f157600080fd5b80634481c66e1461054657806345ea45e1146105655780634f6ccce71461057b57600080fd5b806323b872dd146104815780632f745c59146104a1578063372c12b1146104c1578063390453de146104f15780633ccfd60b1461051157806342842e0e1461052657600080fd5b80630aab39f3116102a15780630aab39f3146103da57806313fb99c1146103fa5780631751b5541461040d57806318160ddd146104395780631bcc80ac146104585780631e4d185f1461046b57600080fd5b806301ffc9a7146102e957806302cdc7131461031e57806306fdde031461034057806307f1891e14610362578063081812fc14610382578063095ea7b3146103ba575b600080fd5b3480156102f557600080fd5b50610309610304366004612ab3565b6109bc565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b5061033e610339366004612ad7565b6109e7565b005b34801561034c57600080fd5b50610355610a1f565b6040516103159190612b40565b34801561036e57600080fd5b5061033e61037d366004612ad7565b610ab1565b34801561038e57600080fd5b506103a261039d366004612ad7565b610ae0565b6040516001600160a01b039091168152602001610315565b3480156103c657600080fd5b5061033e6103d5366004612b6a565b610b75565b3480156103e657600080fd5b5061033e6103f5366004612c71565b610c8a565b61033e610408366004612d4e565b610d76565b34801561041957600080fd5b506012546104279060ff1681565b60405160ff9091168152602001610315565b34801561044557600080fd5b50600a545b604051908152602001610315565b61033e610466366004612d4e565b611380565b34801561047757600080fd5b5061044a60115481565b34801561048d57600080fd5b5061033e61049c366004612d69565b6117dc565b3480156104ad57600080fd5b5061044a6104bc366004612b6a565b61180d565b3480156104cd57600080fd5b506103096104dc366004612da5565b60166020526000908152604090205460ff1681565b3480156104fd57600080fd5b5061033e61050c366004612dc0565b6118a3565b34801561051d57600080fd5b5061033e611939565b34801561053257600080fd5b5061033e610541366004612d69565b6119a0565b34801561055257600080fd5b5060125461042790610100900460ff1681565b34801561057157600080fd5b5061044a600e5481565b34801561058757600080fd5b5061044a610596366004612ad7565b6119bb565b3480156105a757600080fd5b5061033e6105b6366004612eb0565b611a4e565b3480156105c757600080fd5b5061044a600f5481565b3480156105dd57600080fd5b506103a26105ec366004612ad7565b611a84565b3480156105fd57600080fd5b5061044a60105481565b34801561061357600080fd5b5061044a610622366004612da5565b611afb565b34801561063357600080fd5b5061033e611b82565b34801561064857600080fd5b5061033e610657366004612ef9565b611bb8565b34801561066857600080fd5b50610427610677366004612da5565b60156020526000908152604090205460ff1681565b34801561069857600080fd5b5061033e6106a7366004612ad7565b611c4a565b3480156106b857600080fd5b506106cc6106c7366004612da5565b611c79565b6040516103159190612f2e565b3480156106e557600080fd5b506000546001600160a01b03166103a2565b34801561070357600080fd5b5060125461071990600160201b900461ffff1681565b60405161ffff9091168152602001610315565b34801561073857600080fd5b50610355611d3b565b34801561074d57600080fd5b5061044a670214e8348c4f000081565b34801561076957600080fd5b5061033e610778366004612f82565b611d4a565b34801561078957600080fd5b50600d546103099060ff1681565b3480156107a357600080fd5b506012546104279062010000900460ff1681565b3480156107c357600080fd5b5061033e6107d2366004612fb5565b611d55565b3480156107e357600080fd5b506103096107f2366004613031565b611d8d565b34801561080357600080fd5b5061044a6701aa535d3d0c000081565b34801561081f57600080fd5b5061035561082e366004612ad7565b611dd3565b34801561083f57600080fd5b50610355611e07565b34801561085457600080fd5b5061044a605f81565b34801561086957600080fd5b50601254610427906301000000900460ff1681565b34801561088a57600080fd5b50610309610899366004612d4e565b60136020526000908152604090205460ff1681565b3480156108ba57600080fd5b5061033e6108c9366004612ad7565b611e95565b3480156108da57600080fd5b506103096108e936600461304c565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561092357600080fd5b5061033e610932366004612da5565b611ec4565b34801561094357600080fd5b5061033e610952366004613076565b611f5c565b34801561096357600080fd5b5061099a610972366004612d4e565b6014602052600090815260409020546001600160a01b03811690600160a01b900461ffff1682565b604080516001600160a01b03909316835261ffff909116602083015201610315565b60006001600160e01b0319821663780e9d6360e01b14806109e157506109e18261200b565b92915050565b6000546001600160a01b03163314610a1a5760405162461bcd60e51b8152600401610a11906130a0565b60405180910390fd5b600f55565b606060028054610a2e906130d5565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5a906130d5565b8015610aa75780601f10610a7c57610100808354040283529160200191610aa7565b820191906000526020600020905b815481529060010190602001808311610a8a57829003601f168201915b5050505050905090565b6000546001600160a01b03163314610adb5760405162461bcd60e51b8152600401610a11906130a0565b600e55565b6000818152600460205260408120546001600160a01b0316610b595760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a11565b506000908152600660205260409020546001600160a01b031690565b6000610b8082611a84565b9050806001600160a01b0316836001600160a01b031603610bed5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a11565b336001600160a01b0382161480610c095750610c0981336108e9565b610c7b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a11565b610c85838361205b565b505050565b6000546001600160a01b03163314610cb45760405162461bcd60e51b8152600401610a11906130a0565b60005b82518160ff161015610c8557828160ff1681518110610cd857610cd8613109565b60209081029190910181015160ff831660008181526014909352604090922080546001600160a01b0319166001600160a01b0390921691909117905582518391908110610d2757610d27613109565b60209081029190910181015160ff8316600090815260149092526040909120805461ffff909216600160a01b0261ffff60a01b1990921691909117905580610d6e81613135565b915050610cb7565b3360009081526016602052604090205460ff16610dd55760405162461bcd60e51b815260206004820152601d60248201527f4162656c3a2063616c6c6572206e6f74206f6e2057686974654c6973740000006044820152606401610a11565b333214610e1d5760405162461bcd60e51b81526020600482015260166024820152751058995b0e881b9bc818dbdb9d1c9858dd081b5a5b9d60521b6044820152606401610a11565b600260015403610e6f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a11565b6002600155600d5460ff1615610ec05760405162461bcd60e51b81526020600482015260166024820152751058995b0e8818dd5c9c995b9d1b1e481c185d5cd95960521b6044820152606401610a11565b600e54421015610f225760405162461bcd60e51b815260206004820152602760248201527f4162656c3a2057686974654c6973742073616c65206973206e6f7420737461726044820152661d1959081e595d60ca1b6064820152608401610a11565b600f544210610f735760405162461bcd60e51b815260206004820152601d60248201527f4162656c3a2057686974654c6973742073616c6520697320656e6465640000006044820152606401610a11565b6012543360009081526015602052604090205460ff610100909204821691610f9d91849116613154565b60ff161115610ffd5760405162461bcd60e51b815260206004820152602660248201527f4162656c3a204561636820416464726573732063616e206f6e6c7920686f6c64604482015265080c481cd95d60d21b6064820152608401610a11565b605f61100a82600361316d565b6012546110259160ff1690600160201b900461ffff16613190565b61ffff1611156110475760405162461bcd60e51b8152600401610a11906131ab565b61105c60ff82166701aa535d3d0c00006131e2565b3410156110a65760405162461bcd60e51b81526020600482015260186024820152771058995b0e881c1c9a58d9481a5cc81a5b98dbdc9c9958dd60421b6044820152606401610a11565b60015b6110b482600361316d565b60ff168160ff16116110fc576110ea335b6012546110e19060ff851690600160201b900461ffff16613190565b61ffff166120c9565b806110f481613135565b9150506110a9565b50734c22d3b875437d43402f5b81ae4f61b8f764e1b160005b8260ff168160ff1610156112bf576012546013906000906111419084906301000000900460ff16613154565b61114c906001613154565b60ff908116825260208201929092526040016000205416156111bb57611189335b6012546111849062010000900460ff16605f6131f9565b6120c9565b6012546111a09062010000900460ff166001613154565b601260026101000a81548160ff021916908360ff1602179055505b816001600160a01b03166342842e0e6014600084601260039054906101000a900460ff166111e99190613154565b60ff1681526020810191909152604001600020546001600160a01b0316336012546014906000906112259088906301000000900460ff16613154565b60ff1681526020810191909152604090810160002054905160e085901b6001600160e01b03191681526001600160a01b039384166004820152929091166024830152600160a01b900461ffff166044820152606401600060405180830381600087803b15801561129457600080fd5b505af11580156112a8573d6000803e3d6000fd5b5050505080806112b790613135565b915050611115565b50336000908152601560205260409020546112de90839060ff16613154565b336000908152601560205260409020805460ff191660ff9283161790556012546113119184916301000000900416613154565b6012805460ff9290921663010000000263ff0000001990921691909117905561133b82600361316d565b6012546113569160ff1690600160201b900461ffff16613190565b6012805461ffff92909216600160201b0265ffff0000000019909216919091179055505060018055565b3332146113c85760405162461bcd60e51b81526020600482015260166024820152751058995b0e881b9bc818dbdb9d1c9858dd081b5a5b9d60521b6044820152606401610a11565b60026001540361141a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a11565b6002600155600d5460ff161561146b5760405162461bcd60e51b81526020600482015260166024820152751058995b0e8818dd5c9c995b9d1b1e481c185d5cd95960521b6044820152606401610a11565b6010544210156114c95760405162461bcd60e51b8152602060048201526024808201527f4162656c3a207075626c69632073616c65206973206e6f742073746172746564604482015263081e595d60e21b6064820152608401610a11565b6012543360009081526015602052604090205460ff918216916114ee91849116613154565b60ff1611156115535760405162461bcd60e51b815260206004820152602b60248201527f4162656c3a204561636820416464726573732063616e206f6e6c79207075726360448201526a686173652033207365747360a81b6064820152608401610a11565b605f61156082600361316d565b60125461157b9160ff1690600160201b900461ffff16613190565b61ffff16111561159d5760405162461bcd60e51b8152600401610a11906131ab565b6115b260ff8216670214e8348c4f00006131e2565b3410156115fc5760405162461bcd60e51b81526020600482015260186024820152771058995b0e881c1c9a58d9481a5cc81a5b98dbdc9c9958dd60421b6044820152606401610a11565b60015b61160a82600361316d565b60ff168160ff16116116315761161f336110c5565b8061162981613135565b9150506115ff565b50734c22d3b875437d43402f5b81ae4f61b8f764e1b160005b8260ff168160ff1610156112bf576012546013906000906116769084906301000000900460ff16613154565b611681906001613154565b60ff908116825260208201929092526040016000205416156116d8576116a63361116d565b6012546116bd9062010000900460ff166001613154565b601260026101000a81548160ff021916908360ff1602179055505b816001600160a01b03166342842e0e6014600084601260039054906101000a900460ff166117069190613154565b60ff1681526020810191909152604001600020546001600160a01b0316336012546014906000906117429088906301000000900460ff16613154565b60ff1681526020810191909152604090810160002054905160e085901b6001600160e01b03191681526001600160a01b039384166004820152929091166024830152600160a01b900461ffff166044820152606401600060405180830381600087803b1580156117b157600080fd5b505af11580156117c5573d6000803e3d6000fd5b5050505080806117d490613135565b91505061164a565b6117e633826120e3565b6118025760405162461bcd60e51b8152600401610a119061320c565b610c858383836121da565b600061181883611afb565b821061187a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a11565b506001600160a01b03919091166000908152600860209081526040808320938352929052205490565b6000546001600160a01b031633146118cd5760405162461bcd60e51b8152600401610a11906130a0565b60005b81518160ff16101561193557600160136000848460ff16815181106118f7576118f7613109565b60209081029190910181015160ff168252810191909152604001600020805460ff19169115159190911790558061192d81613135565b9150506118d0565b5050565b6000546001600160a01b031633146119635760405162461bcd60e51b8152600401610a11906130a0565b600080546040516001600160a01b03909116914780156108fc02929091818181858888f1935050505015801561199d573d6000803e3d6000fd5b50565b610c8583838360405180602001604052806000815250611d55565b60006119c6600a5490565b8210611a295760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a11565b600a8281548110611a3c57611a3c613109565b90600052602060002001549050919050565b6000546001600160a01b03163314611a785760405162461bcd60e51b8152600401610a11906130a0565b600c61193582826132ab565b6000818152600460205260408120546001600160a01b0316806109e15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a11565b60006001600160a01b038216611b665760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a11565b506001600160a01b031660009081526005602052604090205490565b6000546001600160a01b03163314611bac5760405162461bcd60e51b8152600401610a11906130a0565b611bb66000612381565b565b6000546001600160a01b03163314611be25760405162461bcd60e51b8152600401610a11906130a0565b60005b815181101561193557600160166000848481518110611c0657611c06613109565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580611c428161336b565b915050611be5565b6000546001600160a01b03163314611c745760405162461bcd60e51b8152600401610a11906130a0565b601155565b60606000611c8683611afb565b905080600003611caa5760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115611cc557611cc5612b94565b604051908082528060200260200182016040528015611cee578160200160208202803683370190505b50905060005b82811015611ca257611d06858261180d565b828281518110611d1857611d18613109565b602090810291909101015280611d2d8161336b565b915050611cf4565b50919050565b606060038054610a2e906130d5565b6119353383836123d1565b611d5f33836120e3565b611d7b5760405162461bcd60e51b8152600401610a119061320c565b611d878484848461249f565b50505050565b600080546001600160a01b03163314611db85760405162461bcd60e51b8152600401610a11906130a0565b50600d805460ff191682151590811790915560ff165b919050565b6060600c611de0836124d2565b604051602001611df1929190613384565b6040516020818303038152906040529050919050565b600c8054611e14906130d5565b80601f0160208091040260200160405190810160405280929190818152602001828054611e40906130d5565b8015611e8d5780601f10611e6257610100808354040283529160200191611e8d565b820191906000526020600020905b815481529060010190602001808311611e7057829003601f168201915b505050505081565b6000546001600160a01b03163314611ebf5760405162461bcd60e51b8152600401610a11906130a0565b601055565b6000546001600160a01b03163314611eee5760405162461bcd60e51b8152600401610a11906130a0565b6001600160a01b038116611f535760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a11565b61199d81612381565b6000546001600160a01b03163314611f865760405162461bcd60e51b8152600401610a11906130a0565b601254605f90611fa59060ff841690600160201b900461ffff16613190565b61ffff161115611fc75760405162461bcd60e51b8152600401610a11906131ab565b60015b8160ff168160ff1611610c8557601254611ff99084906110e19060ff851690600160201b900461ffff16613190565b8061200381613135565b915050611fca565b60006001600160e01b031982166380ac58cd60e01b148061203c57506001600160e01b03198216635b5e139f60e01b145b806109e157506301ffc9a760e01b6001600160e01b03198316146109e1565b600081815260066020526040902080546001600160a01b0319166001600160a01b038416908117909155819061209082611a84565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6119358282604051806020016040528060008152506125d3565b6000818152600460205260408120546001600160a01b031661215c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a11565b600061216783611a84565b9050806001600160a01b0316846001600160a01b031614806121ae57506001600160a01b0380821660009081526007602090815260408083209388168352929052205460ff165b806121d25750836001600160a01b03166121c784610ae0565b6001600160a01b0316145b949350505050565b826001600160a01b03166121ed82611a84565b6001600160a01b0316146122515760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610a11565b6001600160a01b0382166122b35760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a11565b6122be838383612606565b6122c960008261205b565b6001600160a01b03831660009081526005602052604081208054600192906122f29084906131f9565b90915550506001600160a01b038216600090815260056020526040812080546001929061232090849061341b565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b0316036124325760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a11565b6001600160a01b03838116600081815260076020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6124aa8484846121da565b6124b6848484846126be565b611d875760405162461bcd60e51b8152600401610a119061342e565b6060816000036124f95750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612523578061250d8161336b565b915061251c9050600a83613496565b91506124fd565b60008167ffffffffffffffff81111561253e5761253e612b94565b6040519080825280601f01601f191660200182016040528015612568576020820181803683370190505b5090505b84156121d25761257d6001836131f9565b915061258a600a866134aa565b61259590603061341b565b60f81b8183815181106125aa576125aa613109565b60200101906001600160f81b031916908160001a9053506125cc600a86613496565b945061256c565b6125dd83836127bf565b6125ea60008484846126be565b610c855760405162461bcd60e51b8152600401610a119061342e565b6001600160a01b0383166126615761265c81600a80546000838152600b60205260408120829055600182018355919091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80155565b612684565b816001600160a01b0316836001600160a01b03161461268457612684838261290d565b6001600160a01b03821661269b57610c85816129aa565b826001600160a01b0316826001600160a01b031614610c8557610c858282612a59565b60006001600160a01b0384163b156127b457604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906127029033908990889088906004016134be565b6020604051808303816000875af192505050801561273d575060408051601f3d908101601f1916820190925261273a918101906134fb565b60015b61279a573d80801561276b576040519150601f19603f3d011682016040523d82523d6000602084013e612770565b606091505b5080516000036127925760405162461bcd60e51b8152600401610a119061342e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506121d2565b506001949350505050565b6001600160a01b0382166128155760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a11565b6000818152600460205260409020546001600160a01b03161561287a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a11565b61288660008383612606565b6001600160a01b03821660009081526005602052604081208054600192906128af90849061341b565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161291a84611afb565b61292491906131f9565b600083815260096020526040902054909150808214612977576001600160a01b03841660009081526008602090815260408083208584528252808320548484528184208190558352600990915290208190555b5060009182526009602090815260408084208490556001600160a01b039094168352600881528383209183525290812055565b600a546000906129bc906001906131f9565b6000838152600b6020526040812054600a80549394509092849081106129e4576129e4613109565b9060005260206000200154905080600a8381548110612a0557612a05613109565b6000918252602080832090910192909255828152600b9091526040808220849055858252812055600a805480612a3d57612a3d613518565b6001900381819060005260206000200160009055905550505050565b6000612a6483611afb565b6001600160a01b039093166000908152600860209081526040808320868452825280832085905593825260099052919091209190915550565b6001600160e01b03198116811461199d57600080fd5b600060208284031215612ac557600080fd5b8135612ad081612a9d565b9392505050565b600060208284031215612ae957600080fd5b5035919050565b60005b83811015612b0b578181015183820152602001612af3565b50506000910152565b60008151808452612b2c816020860160208601612af0565b601f01601f19169290920160200192915050565b602081526000612ad06020830184612b14565b80356001600160a01b0381168114611dce57600080fd5b60008060408385031215612b7d57600080fd5b612b8683612b53565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612bd357612bd3612b94565b604052919050565b600067ffffffffffffffff821115612bf557612bf5612b94565b5060051b60200190565b600082601f830112612c1057600080fd5b81356020612c25612c2083612bdb565b612baa565b82815260059290921b84018101918181019086841115612c4457600080fd5b8286015b84811015612c6657612c5981612b53565b8352918301918301612c48565b509695505050505050565b60008060408385031215612c8457600080fd5b823567ffffffffffffffff80821115612c9c57600080fd5b612ca886838701612bff565b9350602091508185013581811115612cbf57600080fd5b85019050601f81018613612cd257600080fd5b8035612ce0612c2082612bdb565b81815260059190911b82018301908381019088831115612cff57600080fd5b928401925b82841015612d2e57833561ffff81168114612d1f5760008081fd5b82529284019290840190612d04565b80955050505050509250929050565b803560ff81168114611dce57600080fd5b600060208284031215612d6057600080fd5b612ad082612d3d565b600080600060608486031215612d7e57600080fd5b612d8784612b53565b9250612d9560208501612b53565b9150604084013590509250925092565b600060208284031215612db757600080fd5b612ad082612b53565b60006020808385031215612dd357600080fd5b823567ffffffffffffffff811115612dea57600080fd5b8301601f81018513612dfb57600080fd5b8035612e09612c2082612bdb565b81815260059190911b82018301908381019087831115612e2857600080fd5b928401925b82841015612e4d57612e3e84612d3d565b82529284019290840190612e2d565b979650505050505050565b600067ffffffffffffffff831115612e7257612e72612b94565b612e85601f8401601f1916602001612baa565b9050828152838383011115612e9957600080fd5b828260208301376000602084830101529392505050565b600060208284031215612ec257600080fd5b813567ffffffffffffffff811115612ed957600080fd5b8201601f81018413612eea57600080fd5b6121d284823560208401612e58565b600060208284031215612f0b57600080fd5b813567ffffffffffffffff811115612f2257600080fd5b6121d284828501612bff565b6020808252825182820181905260009190848201906040850190845b81811015612f6657835183529284019291840191600101612f4a565b50909695505050505050565b80358015158114611dce57600080fd5b60008060408385031215612f9557600080fd5b612f9e83612b53565b9150612fac60208401612f72565b90509250929050565b60008060008060808587031215612fcb57600080fd5b612fd485612b53565b9350612fe260208601612b53565b925060408501359150606085013567ffffffffffffffff81111561300557600080fd5b8501601f8101871361301657600080fd5b61302587823560208401612e58565b91505092959194509250565b60006020828403121561304357600080fd5b612ad082612f72565b6000806040838503121561305f57600080fd5b61306883612b53565b9150612fac60208401612b53565b6000806040838503121561308957600080fd5b61309283612b53565b9150612fac60208401612d3d565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806130e957607f821691505b602082108103611d3557634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060ff821660ff810361314b5761314b61311f565b60010192915050565b60ff81811683821601908111156109e1576109e161311f565b60ff81811683821602908116908181146131895761318961311f565b5092915050565b61ffff8181168382160190808211156131895761318961311f565b60208082526018908201527f4162656c3a2072656163686564206d617820737570706c790000000000000000604082015260600190565b80820281158282048414176109e1576109e161311f565b818103818111156109e1576109e161311f565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b601f821115610c8557600081815260208120601f850160051c810160208610156132845750805b601f850160051c820191505b818110156132a357828155600101613290565b505050505050565b815167ffffffffffffffff8111156132c5576132c5612b94565b6132d9816132d384546130d5565b8461325d565b602080601f83116001811461330e57600084156132f65750858301515b600019600386901b1c1916600185901b1785556132a3565b600085815260208120601f198616915b8281101561333d5788860151825594840194600190910190840161331e565b508582101561335b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006001820161337d5761337d61311f565b5060010190565b6000808454613392816130d5565b600182811680156133aa57600181146133bf576133ee565b60ff19841687528215158302870194506133ee565b8860005260208060002060005b858110156133e55781548a8201529084019082016133cc565b50505082870194505b505050508351613402818360208801612af0565b64173539b7b760d91b9101908152600501949350505050565b808201808211156109e1576109e161311f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826134a5576134a5613480565b500490565b6000826134b9576134b9613480565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906134f190830184612b14565b9695505050505050565b60006020828403121561350d57600080fd5b8151612ad081612a9d565b634e487b7160e01b600052603160045260246000fdfea26469706673582212205d1f600f05e9f3c31e21f2e3e306bf205cfb697000956fa4795731e4bb61e1ff64736f6c63430008110033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000016414f4d5f46414e53495f4c4f4649484946495f303031000000000000000000000000000000000000000000000000000000000000000000000000000000000007414f4d464e534900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f66616e73692e6d7970696e6174612e636c6f75642f697066732f516d527a4251586d76513672454a3134476b4a6676633835384358643944626a6733697673486a337768344c685a2f000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102e45760003560e01c806370a0823111610190578063b88d4fde116100dc578063d911d79611610095578063e985e9c51161006f578063e985e9c5146108ce578063f2fde38b14610917578063f7727ae914610937578063f925ae991461095757600080fd5b8063d911d7961461085d578063d94cb07f1461087e578063db8cc8fa146108ae57600080fd5b8063b88d4fde146107b7578063bedb86fb146107d7578063c7f8d01a146107f7578063c87b56dd14610813578063d547cfb714610833578063d5abeb011461084857600080fd5b80638da5cb5b11610149578063a035b1fe11610123578063a035b1fe14610741578063a22cb4651461075d578063b187bd261461077d578063b2d18ebd1461079757600080fd5b80638da5cb5b146106d95780639106d7ba146106f757806395d89b411461072c57600080fd5b806370a0823114610607578063715018a61461062757806372c985cb1461063c5780637be2e7891461065c578063846069431461068c5780638462151c146106ac57600080fd5b806323b872dd1161024f5780634481c66e1161020857806355f804b3116101e257806355f804b31461059b578063629403f5146105bb5780636352211e146105d15780636bb7b1d9146105f157600080fd5b80634481c66e1461054657806345ea45e1146105655780634f6ccce71461057b57600080fd5b806323b872dd146104815780632f745c59146104a1578063372c12b1146104c1578063390453de146104f15780633ccfd60b1461051157806342842e0e1461052657600080fd5b80630aab39f3116102a15780630aab39f3146103da57806313fb99c1146103fa5780631751b5541461040d57806318160ddd146104395780631bcc80ac146104585780631e4d185f1461046b57600080fd5b806301ffc9a7146102e957806302cdc7131461031e57806306fdde031461034057806307f1891e14610362578063081812fc14610382578063095ea7b3146103ba575b600080fd5b3480156102f557600080fd5b50610309610304366004612ab3565b6109bc565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b5061033e610339366004612ad7565b6109e7565b005b34801561034c57600080fd5b50610355610a1f565b6040516103159190612b40565b34801561036e57600080fd5b5061033e61037d366004612ad7565b610ab1565b34801561038e57600080fd5b506103a261039d366004612ad7565b610ae0565b6040516001600160a01b039091168152602001610315565b3480156103c657600080fd5b5061033e6103d5366004612b6a565b610b75565b3480156103e657600080fd5b5061033e6103f5366004612c71565b610c8a565b61033e610408366004612d4e565b610d76565b34801561041957600080fd5b506012546104279060ff1681565b60405160ff9091168152602001610315565b34801561044557600080fd5b50600a545b604051908152602001610315565b61033e610466366004612d4e565b611380565b34801561047757600080fd5b5061044a60115481565b34801561048d57600080fd5b5061033e61049c366004612d69565b6117dc565b3480156104ad57600080fd5b5061044a6104bc366004612b6a565b61180d565b3480156104cd57600080fd5b506103096104dc366004612da5565b60166020526000908152604090205460ff1681565b3480156104fd57600080fd5b5061033e61050c366004612dc0565b6118a3565b34801561051d57600080fd5b5061033e611939565b34801561053257600080fd5b5061033e610541366004612d69565b6119a0565b34801561055257600080fd5b5060125461042790610100900460ff1681565b34801561057157600080fd5b5061044a600e5481565b34801561058757600080fd5b5061044a610596366004612ad7565b6119bb565b3480156105a757600080fd5b5061033e6105b6366004612eb0565b611a4e565b3480156105c757600080fd5b5061044a600f5481565b3480156105dd57600080fd5b506103a26105ec366004612ad7565b611a84565b3480156105fd57600080fd5b5061044a60105481565b34801561061357600080fd5b5061044a610622366004612da5565b611afb565b34801561063357600080fd5b5061033e611b82565b34801561064857600080fd5b5061033e610657366004612ef9565b611bb8565b34801561066857600080fd5b50610427610677366004612da5565b60156020526000908152604090205460ff1681565b34801561069857600080fd5b5061033e6106a7366004612ad7565b611c4a565b3480156106b857600080fd5b506106cc6106c7366004612da5565b611c79565b6040516103159190612f2e565b3480156106e557600080fd5b506000546001600160a01b03166103a2565b34801561070357600080fd5b5060125461071990600160201b900461ffff1681565b60405161ffff9091168152602001610315565b34801561073857600080fd5b50610355611d3b565b34801561074d57600080fd5b5061044a670214e8348c4f000081565b34801561076957600080fd5b5061033e610778366004612f82565b611d4a565b34801561078957600080fd5b50600d546103099060ff1681565b3480156107a357600080fd5b506012546104279062010000900460ff1681565b3480156107c357600080fd5b5061033e6107d2366004612fb5565b611d55565b3480156107e357600080fd5b506103096107f2366004613031565b611d8d565b34801561080357600080fd5b5061044a6701aa535d3d0c000081565b34801561081f57600080fd5b5061035561082e366004612ad7565b611dd3565b34801561083f57600080fd5b50610355611e07565b34801561085457600080fd5b5061044a605f81565b34801561086957600080fd5b50601254610427906301000000900460ff1681565b34801561088a57600080fd5b50610309610899366004612d4e565b60136020526000908152604090205460ff1681565b3480156108ba57600080fd5b5061033e6108c9366004612ad7565b611e95565b3480156108da57600080fd5b506103096108e936600461304c565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561092357600080fd5b5061033e610932366004612da5565b611ec4565b34801561094357600080fd5b5061033e610952366004613076565b611f5c565b34801561096357600080fd5b5061099a610972366004612d4e565b6014602052600090815260409020546001600160a01b03811690600160a01b900461ffff1682565b604080516001600160a01b03909316835261ffff909116602083015201610315565b60006001600160e01b0319821663780e9d6360e01b14806109e157506109e18261200b565b92915050565b6000546001600160a01b03163314610a1a5760405162461bcd60e51b8152600401610a11906130a0565b60405180910390fd5b600f55565b606060028054610a2e906130d5565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5a906130d5565b8015610aa75780601f10610a7c57610100808354040283529160200191610aa7565b820191906000526020600020905b815481529060010190602001808311610a8a57829003601f168201915b5050505050905090565b6000546001600160a01b03163314610adb5760405162461bcd60e51b8152600401610a11906130a0565b600e55565b6000818152600460205260408120546001600160a01b0316610b595760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a11565b506000908152600660205260409020546001600160a01b031690565b6000610b8082611a84565b9050806001600160a01b0316836001600160a01b031603610bed5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a11565b336001600160a01b0382161480610c095750610c0981336108e9565b610c7b5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a11565b610c85838361205b565b505050565b6000546001600160a01b03163314610cb45760405162461bcd60e51b8152600401610a11906130a0565b60005b82518160ff161015610c8557828160ff1681518110610cd857610cd8613109565b60209081029190910181015160ff831660008181526014909352604090922080546001600160a01b0319166001600160a01b0390921691909117905582518391908110610d2757610d27613109565b60209081029190910181015160ff8316600090815260149092526040909120805461ffff909216600160a01b0261ffff60a01b1990921691909117905580610d6e81613135565b915050610cb7565b3360009081526016602052604090205460ff16610dd55760405162461bcd60e51b815260206004820152601d60248201527f4162656c3a2063616c6c6572206e6f74206f6e2057686974654c6973740000006044820152606401610a11565b333214610e1d5760405162461bcd60e51b81526020600482015260166024820152751058995b0e881b9bc818dbdb9d1c9858dd081b5a5b9d60521b6044820152606401610a11565b600260015403610e6f5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a11565b6002600155600d5460ff1615610ec05760405162461bcd60e51b81526020600482015260166024820152751058995b0e8818dd5c9c995b9d1b1e481c185d5cd95960521b6044820152606401610a11565b600e54421015610f225760405162461bcd60e51b815260206004820152602760248201527f4162656c3a2057686974654c6973742073616c65206973206e6f7420737461726044820152661d1959081e595d60ca1b6064820152608401610a11565b600f544210610f735760405162461bcd60e51b815260206004820152601d60248201527f4162656c3a2057686974654c6973742073616c6520697320656e6465640000006044820152606401610a11565b6012543360009081526015602052604090205460ff610100909204821691610f9d91849116613154565b60ff161115610ffd5760405162461bcd60e51b815260206004820152602660248201527f4162656c3a204561636820416464726573732063616e206f6e6c7920686f6c64604482015265080c481cd95d60d21b6064820152608401610a11565b605f61100a82600361316d565b6012546110259160ff1690600160201b900461ffff16613190565b61ffff1611156110475760405162461bcd60e51b8152600401610a11906131ab565b61105c60ff82166701aa535d3d0c00006131e2565b3410156110a65760405162461bcd60e51b81526020600482015260186024820152771058995b0e881c1c9a58d9481a5cc81a5b98dbdc9c9958dd60421b6044820152606401610a11565b60015b6110b482600361316d565b60ff168160ff16116110fc576110ea335b6012546110e19060ff851690600160201b900461ffff16613190565b61ffff166120c9565b806110f481613135565b9150506110a9565b50734c22d3b875437d43402f5b81ae4f61b8f764e1b160005b8260ff168160ff1610156112bf576012546013906000906111419084906301000000900460ff16613154565b61114c906001613154565b60ff908116825260208201929092526040016000205416156111bb57611189335b6012546111849062010000900460ff16605f6131f9565b6120c9565b6012546111a09062010000900460ff166001613154565b601260026101000a81548160ff021916908360ff1602179055505b816001600160a01b03166342842e0e6014600084601260039054906101000a900460ff166111e99190613154565b60ff1681526020810191909152604001600020546001600160a01b0316336012546014906000906112259088906301000000900460ff16613154565b60ff1681526020810191909152604090810160002054905160e085901b6001600160e01b03191681526001600160a01b039384166004820152929091166024830152600160a01b900461ffff166044820152606401600060405180830381600087803b15801561129457600080fd5b505af11580156112a8573d6000803e3d6000fd5b5050505080806112b790613135565b915050611115565b50336000908152601560205260409020546112de90839060ff16613154565b336000908152601560205260409020805460ff191660ff9283161790556012546113119184916301000000900416613154565b6012805460ff9290921663010000000263ff0000001990921691909117905561133b82600361316d565b6012546113569160ff1690600160201b900461ffff16613190565b6012805461ffff92909216600160201b0265ffff0000000019909216919091179055505060018055565b3332146113c85760405162461bcd60e51b81526020600482015260166024820152751058995b0e881b9bc818dbdb9d1c9858dd081b5a5b9d60521b6044820152606401610a11565b60026001540361141a5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a11565b6002600155600d5460ff161561146b5760405162461bcd60e51b81526020600482015260166024820152751058995b0e8818dd5c9c995b9d1b1e481c185d5cd95960521b6044820152606401610a11565b6010544210156114c95760405162461bcd60e51b8152602060048201526024808201527f4162656c3a207075626c69632073616c65206973206e6f742073746172746564604482015263081e595d60e21b6064820152608401610a11565b6012543360009081526015602052604090205460ff918216916114ee91849116613154565b60ff1611156115535760405162461bcd60e51b815260206004820152602b60248201527f4162656c3a204561636820416464726573732063616e206f6e6c79207075726360448201526a686173652033207365747360a81b6064820152608401610a11565b605f61156082600361316d565b60125461157b9160ff1690600160201b900461ffff16613190565b61ffff16111561159d5760405162461bcd60e51b8152600401610a11906131ab565b6115b260ff8216670214e8348c4f00006131e2565b3410156115fc5760405162461bcd60e51b81526020600482015260186024820152771058995b0e881c1c9a58d9481a5cc81a5b98dbdc9c9958dd60421b6044820152606401610a11565b60015b61160a82600361316d565b60ff168160ff16116116315761161f336110c5565b8061162981613135565b9150506115ff565b50734c22d3b875437d43402f5b81ae4f61b8f764e1b160005b8260ff168160ff1610156112bf576012546013906000906116769084906301000000900460ff16613154565b611681906001613154565b60ff908116825260208201929092526040016000205416156116d8576116a63361116d565b6012546116bd9062010000900460ff166001613154565b601260026101000a81548160ff021916908360ff1602179055505b816001600160a01b03166342842e0e6014600084601260039054906101000a900460ff166117069190613154565b60ff1681526020810191909152604001600020546001600160a01b0316336012546014906000906117429088906301000000900460ff16613154565b60ff1681526020810191909152604090810160002054905160e085901b6001600160e01b03191681526001600160a01b039384166004820152929091166024830152600160a01b900461ffff166044820152606401600060405180830381600087803b1580156117b157600080fd5b505af11580156117c5573d6000803e3d6000fd5b5050505080806117d490613135565b91505061164a565b6117e633826120e3565b6118025760405162461bcd60e51b8152600401610a119061320c565b610c858383836121da565b600061181883611afb565b821061187a5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a11565b506001600160a01b03919091166000908152600860209081526040808320938352929052205490565b6000546001600160a01b031633146118cd5760405162461bcd60e51b8152600401610a11906130a0565b60005b81518160ff16101561193557600160136000848460ff16815181106118f7576118f7613109565b60209081029190910181015160ff168252810191909152604001600020805460ff19169115159190911790558061192d81613135565b9150506118d0565b5050565b6000546001600160a01b031633146119635760405162461bcd60e51b8152600401610a11906130a0565b600080546040516001600160a01b03909116914780156108fc02929091818181858888f1935050505015801561199d573d6000803e3d6000fd5b50565b610c8583838360405180602001604052806000815250611d55565b60006119c6600a5490565b8210611a295760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a11565b600a8281548110611a3c57611a3c613109565b90600052602060002001549050919050565b6000546001600160a01b03163314611a785760405162461bcd60e51b8152600401610a11906130a0565b600c61193582826132ab565b6000818152600460205260408120546001600160a01b0316806109e15760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a11565b60006001600160a01b038216611b665760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a11565b506001600160a01b031660009081526005602052604090205490565b6000546001600160a01b03163314611bac5760405162461bcd60e51b8152600401610a11906130a0565b611bb66000612381565b565b6000546001600160a01b03163314611be25760405162461bcd60e51b8152600401610a11906130a0565b60005b815181101561193557600160166000848481518110611c0657611c06613109565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580611c428161336b565b915050611be5565b6000546001600160a01b03163314611c745760405162461bcd60e51b8152600401610a11906130a0565b601155565b60606000611c8683611afb565b905080600003611caa5760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115611cc557611cc5612b94565b604051908082528060200260200182016040528015611cee578160200160208202803683370190505b50905060005b82811015611ca257611d06858261180d565b828281518110611d1857611d18613109565b602090810291909101015280611d2d8161336b565b915050611cf4565b50919050565b606060038054610a2e906130d5565b6119353383836123d1565b611d5f33836120e3565b611d7b5760405162461bcd60e51b8152600401610a119061320c565b611d878484848461249f565b50505050565b600080546001600160a01b03163314611db85760405162461bcd60e51b8152600401610a11906130a0565b50600d805460ff191682151590811790915560ff165b919050565b6060600c611de0836124d2565b604051602001611df1929190613384565b6040516020818303038152906040529050919050565b600c8054611e14906130d5565b80601f0160208091040260200160405190810160405280929190818152602001828054611e40906130d5565b8015611e8d5780601f10611e6257610100808354040283529160200191611e8d565b820191906000526020600020905b815481529060010190602001808311611e7057829003601f168201915b505050505081565b6000546001600160a01b03163314611ebf5760405162461bcd60e51b8152600401610a11906130a0565b601055565b6000546001600160a01b03163314611eee5760405162461bcd60e51b8152600401610a11906130a0565b6001600160a01b038116611f535760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a11565b61199d81612381565b6000546001600160a01b03163314611f865760405162461bcd60e51b8152600401610a11906130a0565b601254605f90611fa59060ff841690600160201b900461ffff16613190565b61ffff161115611fc75760405162461bcd60e51b8152600401610a11906131ab565b60015b8160ff168160ff1611610c8557601254611ff99084906110e19060ff851690600160201b900461ffff16613190565b8061200381613135565b915050611fca565b60006001600160e01b031982166380ac58cd60e01b148061203c57506001600160e01b03198216635b5e139f60e01b145b806109e157506301ffc9a760e01b6001600160e01b03198316146109e1565b600081815260066020526040902080546001600160a01b0319166001600160a01b038416908117909155819061209082611a84565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6119358282604051806020016040528060008152506125d3565b6000818152600460205260408120546001600160a01b031661215c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a11565b600061216783611a84565b9050806001600160a01b0316846001600160a01b031614806121ae57506001600160a01b0380821660009081526007602090815260408083209388168352929052205460ff165b806121d25750836001600160a01b03166121c784610ae0565b6001600160a01b0316145b949350505050565b826001600160a01b03166121ed82611a84565b6001600160a01b0316146122515760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610a11565b6001600160a01b0382166122b35760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a11565b6122be838383612606565b6122c960008261205b565b6001600160a01b03831660009081526005602052604081208054600192906122f29084906131f9565b90915550506001600160a01b038216600090815260056020526040812080546001929061232090849061341b565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b0316036124325760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a11565b6001600160a01b03838116600081815260076020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6124aa8484846121da565b6124b6848484846126be565b611d875760405162461bcd60e51b8152600401610a119061342e565b6060816000036124f95750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612523578061250d8161336b565b915061251c9050600a83613496565b91506124fd565b60008167ffffffffffffffff81111561253e5761253e612b94565b6040519080825280601f01601f191660200182016040528015612568576020820181803683370190505b5090505b84156121d25761257d6001836131f9565b915061258a600a866134aa565b61259590603061341b565b60f81b8183815181106125aa576125aa613109565b60200101906001600160f81b031916908160001a9053506125cc600a86613496565b945061256c565b6125dd83836127bf565b6125ea60008484846126be565b610c855760405162461bcd60e51b8152600401610a119061342e565b6001600160a01b0383166126615761265c81600a80546000838152600b60205260408120829055600182018355919091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80155565b612684565b816001600160a01b0316836001600160a01b03161461268457612684838261290d565b6001600160a01b03821661269b57610c85816129aa565b826001600160a01b0316826001600160a01b031614610c8557610c858282612a59565b60006001600160a01b0384163b156127b457604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906127029033908990889088906004016134be565b6020604051808303816000875af192505050801561273d575060408051601f3d908101601f1916820190925261273a918101906134fb565b60015b61279a573d80801561276b576040519150601f19603f3d011682016040523d82523d6000602084013e612770565b606091505b5080516000036127925760405162461bcd60e51b8152600401610a119061342e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506121d2565b506001949350505050565b6001600160a01b0382166128155760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a11565b6000818152600460205260409020546001600160a01b03161561287a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a11565b61288660008383612606565b6001600160a01b03821660009081526005602052604081208054600192906128af90849061341b565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161291a84611afb565b61292491906131f9565b600083815260096020526040902054909150808214612977576001600160a01b03841660009081526008602090815260408083208584528252808320548484528184208190558352600990915290208190555b5060009182526009602090815260408084208490556001600160a01b039094168352600881528383209183525290812055565b600a546000906129bc906001906131f9565b6000838152600b6020526040812054600a80549394509092849081106129e4576129e4613109565b9060005260206000200154905080600a8381548110612a0557612a05613109565b6000918252602080832090910192909255828152600b9091526040808220849055858252812055600a805480612a3d57612a3d613518565b6001900381819060005260206000200160009055905550505050565b6000612a6483611afb565b6001600160a01b039093166000908152600860209081526040808320868452825280832085905593825260099052919091209190915550565b6001600160e01b03198116811461199d57600080fd5b600060208284031215612ac557600080fd5b8135612ad081612a9d565b9392505050565b600060208284031215612ae957600080fd5b5035919050565b60005b83811015612b0b578181015183820152602001612af3565b50506000910152565b60008151808452612b2c816020860160208601612af0565b601f01601f19169290920160200192915050565b602081526000612ad06020830184612b14565b80356001600160a01b0381168114611dce57600080fd5b60008060408385031215612b7d57600080fd5b612b8683612b53565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715612bd357612bd3612b94565b604052919050565b600067ffffffffffffffff821115612bf557612bf5612b94565b5060051b60200190565b600082601f830112612c1057600080fd5b81356020612c25612c2083612bdb565b612baa565b82815260059290921b84018101918181019086841115612c4457600080fd5b8286015b84811015612c6657612c5981612b53565b8352918301918301612c48565b509695505050505050565b60008060408385031215612c8457600080fd5b823567ffffffffffffffff80821115612c9c57600080fd5b612ca886838701612bff565b9350602091508185013581811115612cbf57600080fd5b85019050601f81018613612cd257600080fd5b8035612ce0612c2082612bdb565b81815260059190911b82018301908381019088831115612cff57600080fd5b928401925b82841015612d2e57833561ffff81168114612d1f5760008081fd5b82529284019290840190612d04565b80955050505050509250929050565b803560ff81168114611dce57600080fd5b600060208284031215612d6057600080fd5b612ad082612d3d565b600080600060608486031215612d7e57600080fd5b612d8784612b53565b9250612d9560208501612b53565b9150604084013590509250925092565b600060208284031215612db757600080fd5b612ad082612b53565b60006020808385031215612dd357600080fd5b823567ffffffffffffffff811115612dea57600080fd5b8301601f81018513612dfb57600080fd5b8035612e09612c2082612bdb565b81815260059190911b82018301908381019087831115612e2857600080fd5b928401925b82841015612e4d57612e3e84612d3d565b82529284019290840190612e2d565b979650505050505050565b600067ffffffffffffffff831115612e7257612e72612b94565b612e85601f8401601f1916602001612baa565b9050828152838383011115612e9957600080fd5b828260208301376000602084830101529392505050565b600060208284031215612ec257600080fd5b813567ffffffffffffffff811115612ed957600080fd5b8201601f81018413612eea57600080fd5b6121d284823560208401612e58565b600060208284031215612f0b57600080fd5b813567ffffffffffffffff811115612f2257600080fd5b6121d284828501612bff565b6020808252825182820181905260009190848201906040850190845b81811015612f6657835183529284019291840191600101612f4a565b50909695505050505050565b80358015158114611dce57600080fd5b60008060408385031215612f9557600080fd5b612f9e83612b53565b9150612fac60208401612f72565b90509250929050565b60008060008060808587031215612fcb57600080fd5b612fd485612b53565b9350612fe260208601612b53565b925060408501359150606085013567ffffffffffffffff81111561300557600080fd5b8501601f8101871361301657600080fd5b61302587823560208401612e58565b91505092959194509250565b60006020828403121561304357600080fd5b612ad082612f72565b6000806040838503121561305f57600080fd5b61306883612b53565b9150612fac60208401612b53565b6000806040838503121561308957600080fd5b61309283612b53565b9150612fac60208401612d3d565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806130e957607f821691505b602082108103611d3557634e487b7160e01b600052602260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060ff821660ff810361314b5761314b61311f565b60010192915050565b60ff81811683821601908111156109e1576109e161311f565b60ff81811683821602908116908181146131895761318961311f565b5092915050565b61ffff8181168382160190808211156131895761318961311f565b60208082526018908201527f4162656c3a2072656163686564206d617820737570706c790000000000000000604082015260600190565b80820281158282048414176109e1576109e161311f565b818103818111156109e1576109e161311f565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b601f821115610c8557600081815260208120601f850160051c810160208610156132845750805b601f850160051c820191505b818110156132a357828155600101613290565b505050505050565b815167ffffffffffffffff8111156132c5576132c5612b94565b6132d9816132d384546130d5565b8461325d565b602080601f83116001811461330e57600084156132f65750858301515b600019600386901b1c1916600185901b1785556132a3565b600085815260208120601f198616915b8281101561333d5788860151825594840194600190910190840161331e565b508582101561335b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006001820161337d5761337d61311f565b5060010190565b6000808454613392816130d5565b600182811680156133aa57600181146133bf576133ee565b60ff19841687528215158302870194506133ee565b8860005260208060002060005b858110156133e55781548a8201529084019082016133cc565b50505082870194505b505050508351613402818360208801612af0565b64173539b7b760d91b9101908152600501949350505050565b808201808211156109e1576109e161311f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826134a5576134a5613480565b500490565b6000826134b9576134b9613480565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906134f190830184612b14565b9695505050505050565b60006020828403121561350d57600080fd5b8151612ad081612a9d565b634e487b7160e01b600052603160045260246000fdfea26469706673582212205d1f600f05e9f3c31e21f2e3e306bf205cfb697000956fa4795731e4bb61e1ff64736f6c63430008110033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000016414f4d5f46414e53495f4c4f4649484946495f303031000000000000000000000000000000000000000000000000000000000000000000000000000000000007414f4d464e534900000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f66616e73692e6d7970696e6174612e636c6f75642f697066732f516d527a4251586d76513672454a3134476b4a6676633835384358643944626a6733697673486a337768344c685a2f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): AOM_FANSI_LOFIHIFI_001
Arg [1] : _symbol (string): AOMFNSI
Arg [2] : _uri (string): https://fansi.mypinata.cloud/ipfs/QmRzBQXmvQ6rEJ14GkJfvc858CXd9Dbjg3ivsHj3wh4LhZ/

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000016
Arg [4] : 414f4d5f46414e53495f4c4f4649484946495f30303100000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [6] : 414f4d464e534900000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [8] : 68747470733a2f2f66616e73692e6d7970696e6174612e636c6f75642f697066
Arg [9] : 732f516d527a4251586d76513672454a3134476b4a6676633835384358643944
Arg [10] : 626a6733697673486a337768344c685a2f000000000000000000000000000000


Deployed Bytecode Sourcemap

178:7116:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1018:300:5;;;;;;;;;;-1:-1:-1;1018:300:5;;;;;:::i;:::-;;:::i;:::-;;;565:14:14;;558:22;540:41;;528:2;513:18;1018:300:5;;;;;;;;5814:96:0;;;;;;;;;;-1:-1:-1;5814:96:0;;;;;:::i;:::-;;:::i;:::-;;2725:100:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;5706::0:-;;;;;;;;;;-1:-1:-1;5706:100:0;;;;;:::i;:::-;;:::i;4419:308:4:-;;;;;;;;;;-1:-1:-1;4419:308:4;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:14;;;1679:51;;1667:2;1652:18;4419:308:4;1533:203:14;3942:411:4;;;;;;;;;;-1:-1:-1;3942:411:4;;;;;:::i;:::-;;:::i;5410:288:0:-;;;;;;;;;;-1:-1:-1;5410:288:0;;;;;:::i;:::-;;:::i;2890:1564::-;;;;;;:::i;:::-;;:::i;821:30::-;;;;;;;;;;-1:-1:-1;821:30:0;;;;;;;;;;;5284:4:14;5272:17;;;5254:36;;5242:2;5227:18;821:30:0;5112:184:14;1821:113:5;;;;;;;;;;-1:-1:-1;1909:10:5;:17;1821:113;;;5447:25:14;;;5435:2;5420:18;1821:113:5;5301:177:14;1461:1421:0;;;;;;:::i;:::-;;:::i;763:45::-;;;;;;;;;;;;;;;;5338:376:4;;;;;;;;;;-1:-1:-1;5338:376:4;;;;;:::i;:::-;;:::i;1402:343:5:-;;;;;;;;;;-1:-1:-1;1402:343:5;;;;;:::i;:::-;;:::i;1146:41:0:-;;;;;;;;;;-1:-1:-1;1146:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;5224:178;;;;;;;;;;-1:-1:-1;5224:178:0;;;;;:::i;:::-;;:::i;6400:106::-;;;;;;;;;;;;;:::i;5785:185:4:-;;;;;;;;;;-1:-1:-1;5785:185:4;;;;;:::i;:::-;;:::i;858:32:0:-;;;;;;;;;;-1:-1:-1;858:32:0;;;;;;;;;;;605:43;;;;;;;;;;;;;;;;2011:320:5;;;;;;;;;;-1:-1:-1;2011:320:5;;;;;:::i;:::-;;:::i;6146:105:0:-;;;;;;;;;;-1:-1:-1;6146:105:0;;;;;:::i;:::-;;:::i;655:41::-;;;;;;;;;;;;;;;;2332:326:4;;;;;;;;;;-1:-1:-1;2332:326:4;;;;;:::i;:::-;;:::i;709:47:0:-;;;;;;;;;;;;;;;;1975:295:4;;;;;;;;;;-1:-1:-1;1975:295:4;;;;;:::i;:::-;;:::i;1739:103:11:-;;;;;;;;;;;;;:::i;5020:196:0:-;;;;;;;;;;-1:-1:-1;5020:196:0;;;;;:::i;:::-;;:::i;1094:45::-;;;;;;;;;;-1:-1:-1;1094:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;6034:104;;;;;;;;;;-1:-1:-1;6034:104:0;;;;;:::i;:::-;;:::i;6514:534::-;;;;;;;;;;-1:-1:-1;6514:534:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;1088:87:11:-;;;;;;;;;;-1:-1:-1;1134:7:11;1161:6;-1:-1:-1;;;;;1161:6:11;1088:87;;961:27:0;;;;;;;;;;-1:-1:-1;961:27:0;;;;-1:-1:-1;;;961:27:0;;;;;;;;;8937:6:14;8925:19;;;8907:38;;8895:2;8880:18;961:27:0;8763:188:14;2894:104:4;;;;;;;;;;;;;:::i;412:42:0:-;;;;;;;;;;;;444:10;412:42;;4799:187:4;;;;;;;;;;-1:-1:-1;4799:187:4;;;;;:::i;:::-;;:::i;330:28:0:-;;;;;;;;;;-1:-1:-1;330:28:0;;;;;;;;897:26;;;;;;;;;;-1:-1:-1;897:26:0;;;;;;;;;;;6041:365:4;;;;;;;;;;-1:-1:-1;6041:365:4;;;;;:::i;:::-;;:::i;6259:133:0:-;;;;;;;;;;-1:-1:-1;6259:133:0;;;;;:::i;:::-;;:::i;461:44::-;;;;;;;;;;;;495:10;461:44;;7056:235;;;;;;;;;;-1:-1:-1;7056:235:0;;;;;:::i;:::-;;:::i;297:26::-;;;;;;;;;;;;;:::i;367:38::-;;;;;;;;;;;;403:2;367:38;;930:24;;;;;;;;;;-1:-1:-1;930:24:0;;;;;;;;;;;997:39;;;;;;;;;;-1:-1:-1;997:39:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;5918:108;;;;;;;;;;-1:-1:-1;5918:108:0;;;;;:::i;:::-;;:::i;5057:214:4:-;;;;;;;;;;-1:-1:-1;5057:214:4;;;;;:::i;:::-;-1:-1:-1;;;;;5228:25:4;;;5199:4;5228:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;5057:214;1997:238:11;;;;;;;;;;-1:-1:-1;1997:238:11;;;;;:::i;:::-;;:::i;4462:302:0:-;;;;;;;;;;-1:-1:-1;4462:302:0;;;;;:::i;:::-;;:::i;1043:44::-;;;;;;;;;;-1:-1:-1;1043:44:0;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;1043:44:0;;;-1:-1:-1;;;1043:44:0;;;;;;;;;;-1:-1:-1;;;;;10953:32:14;;;10935:51;;11034:6;11022:19;;;11017:2;11002:18;;10995:47;10908:18;1043:44:0;10763:285:14;1018:300:5;1165:4;-1:-1:-1;;;;;;1207:50:5;;-1:-1:-1;;;1207:50:5;;:103;;;1274:36;1298:11;1274:23;:36::i;:::-;1187:123;1018:300;-1:-1:-1;;1018:300:5:o;5814:96:0:-;1134:7:11;1161:6;-1:-1:-1;;;;;1161:6:11;736:10:2;1308:23:11;1300:68;;;;-1:-1:-1;;;1300:68:11;;;;;;;:::i;:::-;;;;;;;;;5881:13:0::1;:21:::0;5814:96::o;2725:100:4:-;2779:13;2812:5;2805:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2725:100;:::o;5706::0:-;1134:7:11;1161:6;-1:-1:-1;;;;;1161:6:11;736:10:2;1308:23:11;1300:68;;;;-1:-1:-1;;;1300:68:11;;;;;;;:::i;:::-;5775:15:0::1;:23:::0;5706:100::o;4419:308:4:-;4540:7;8042:16;;;:7;:16;;;;;;-1:-1:-1;;;;;8042:16:4;4565:110;;;;-1:-1:-1;;;4565:110:4;;12001:2:14;4565:110:4;;;11983:21:14;12040:2;12020:18;;;12013:30;12079:34;12059:18;;;12052:62;-1:-1:-1;;;12130:18:14;;;12123:42;12182:19;;4565:110:4;11799:408:14;4565:110:4;-1:-1:-1;4695:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;4695:24:4;;4419:308::o;3942:411::-;4023:13;4039:23;4054:7;4039:14;:23::i;:::-;4023:39;;4087:5;-1:-1:-1;;;;;4081:11:4;:2;-1:-1:-1;;;;;4081:11:4;;4073:57;;;;-1:-1:-1;;;4073:57:4;;12414:2:14;4073:57:4;;;12396:21:14;12453:2;12433:18;;;12426:30;12492:34;12472:18;;;12465:62;-1:-1:-1;;;12543:18:14;;;12536:31;12584:19;;4073:57:4;12212:397:14;4073:57:4;736:10:2;-1:-1:-1;;;;;4165:21:4;;;;:62;;-1:-1:-1;4190:37:4;4207:5;736:10:2;5057:214:4;:::i;4190:37::-;4143:168;;;;-1:-1:-1;;;4143:168:4;;12816:2:14;4143:168:4;;;12798:21:14;12855:2;12835:18;;;12828:30;12894:34;12874:18;;;12867:62;12965:26;12945:18;;;12938:54;13009:19;;4143:168:4;12614:420:14;4143:168:4;4324:21;4333:2;4337:7;4324:8;:21::i;:::-;4012:341;3942:411;;:::o;5410:288:0:-;1134:7:11;1161:6;-1:-1:-1;;;;;1161:6:11;736:10:2;1308:23:11;1300:68;;;;-1:-1:-1;;;1300:68:11;;;;;;;:::i;:::-;5526:7:0::1;5521:170;5543:12;:19;5539:1;:23;;;5521:170;;;5613:12;5626:1;5613:15;;;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;5584:14:::1;::::0;::::1;;::::0;;;:11:::1;:14:::0;;;;;;;:44;;-1:-1:-1;;;;;;5584:44:0::1;-1:-1:-1::0;;;;;5584:44:0;;::::1;::::0;;;::::1;::::0;;5668:11;;;;5584:14;5668:11;::::1;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;5643:14:::1;::::0;::::1;;::::0;;;:11:::1;:14:::0;;;;;;;:36;;::::1;::::0;;::::1;-1:-1:-1::0;;;5643:36:0::1;-1:-1:-1::0;;;;5643:36:0;;::::1;::::0;;;::::1;::::0;;5655:1;5564:3:::1;5655:1:::0;5564:3:::1;:::i;:::-;;;;5521:170;;2890:1564:::0;736:10:2;4816:23:0;;;;:9;:23;;;;;;;;4808:65;;;;-1:-1:-1;;;4808:65:0;;13685:2:14;4808:65:0;;;13667:21:14;13724:2;13704:18;;;13697:30;13763:31;13743:18;;;13736:59;13812:18;;4808:65:0;13483:353:14;4808:65:0;736:10:2;4956:9:0::1;4940:25;4932:60;;;::::0;-1:-1:-1;;;4932:60:0;;14043:2:14;4932:60:0::1;::::0;::::1;14025:21:14::0;14082:2;14062:18;;;14055:30;-1:-1:-1;;;14101:18:14;;;14094:52;14163:18;;4932:60:0::1;13841:346:14::0;4932:60:0::1;1778:1:12::2;2376:7;;:19:::0;2368:63:::2;;;::::0;-1:-1:-1;;;2368:63:12;;14394:2:14;2368:63:12::2;::::0;::::2;14376:21:14::0;14433:2;14413:18;;;14406:30;14472:33;14452:18;;;14445:61;14523:18;;2368:63:12::2;14192:355:14::0;2368:63:12::2;1778:1;2509:7;:18:::0;3056:8:0::3;::::0;::::3;;3055:9;3047:44;;;::::0;-1:-1:-1;;;3047:44:0;;14754:2:14;3047:44:0::3;::::0;::::3;14736:21:14::0;14793:2;14773:18;;;14766:30;-1:-1:-1;;;14812:18:14;;;14805:52;14874:18;;3047:44:0::3;14552:346:14::0;3047:44:0::3;3143:15;;3124;:34;;3102:123;;;::::0;-1:-1:-1;;;3102:123:0;;15105:2:14;3102:123:0::3;::::0;::::3;15087:21:14::0;15144:2;15124:18;;;15117:30;15183:34;15163:18;;;15156:62;-1:-1:-1;;;15234:18:14;;;15227:37;15281:19;;3102:123:0::3;14903:403:14::0;3102:123:0::3;3276:13;;3258:15;:31;3236:110;;;::::0;-1:-1:-1;;;3236:110:0;;15513:2:14;3236:110:0::3;::::0;::::3;15495:21:14::0;15552:2;15532:18;;;15525:30;15591:31;15571:18;;;15564:59;15640:18;;3236:110:0::3;15311:353:14::0;3236:110:0::3;3426:15;::::0;736:10:2;3380:26:0::3;::::0;;;:12:::3;:26;::::0;;;;;3426:15:::3;;::::0;;::::3;::::0;::::3;::::0;3380:41:::3;::::0;3409:12;;3380:26:::3;:41;:::i;:::-;3379:62;;;;3357:150;;;::::0;-1:-1:-1;;;3357:150:0;;16024:2:14;3357:150:0::3;::::0;::::3;16006:21:14::0;16063:2;16043:18;;;16036:30;16102:34;16082:18;;;16075:62;-1:-1:-1;;;16153:18:14;;;16146:36;16199:19;;3357:150:0::3;15822:402:14::0;3357:150:0::3;403:2;3553:14;:12:::0;3566:1:::3;3553:14;:::i;:::-;3541:9;::::0;:26:::3;::::0;::::3;;::::0;-1:-1:-1;;;3541:9:0;::::3;;;:26;:::i;:::-;3540:41;;;;3518:115;;;;-1:-1:-1::0;;;3518:115:0::3;;;;;;;:::i;:::-;3680:22;;::::0;::::3;495:10;3680:22;:::i;:::-;3666:9;:37;;3644:111;;;::::0;-1:-1:-1;;;3644:111:0;;17360:2:14;3644:111:0::3;::::0;::::3;17342:21:14::0;17399:2;17379:18;;;17372:30;-1:-1:-1;;;17418:18:14;;;17411:54;17482:18;;3644:111:0::3;17158:348:14::0;3644:111:0::3;3781:1;3766:109;3789:14;:12:::0;3802:1:::3;3789:14;:::i;:::-;3784:19;;:1;:19;;;3766:109;;3825:38;736:10:2::0;3835:12:0::3;3849:9;::::0;:13:::3;::::0;::::3;::::0;::::3;::::0;-1:-1:-1;;;3849:9:0;::::3;;;:13;:::i;:::-;3825:38;;:9;:38::i;:::-;3805:3:::0;::::3;::::0;::::3;:::i;:::-;;;;3766:109;;;-1:-1:-1::0;550:42:0::3;3887:9;3930:344;3952:12;3948:16;;:1;:16;;;3930:344;;;3999:7;::::0;3989:9:::3;::::0;:26:::3;::::0;3999:11:::3;::::0;4009:1;;3999:7;;::::3;;;:11;:::i;:::-;:15;::::0;4013:1:::3;3999:15;:::i;:::-;3989:26;::::0;;::::3;::::0;;::::3;::::0;::::3;::::0;;;;;;-1:-1:-1;3989:26:0;;::::3;3986:155;;;4035:46;736:10:2::0;4045:12:0::3;4071:9;::::0;4059:21:::3;::::0;4071:9;;::::3;;;403:2;4059:21;:::i;:::-;4035:9;:46::i;:::-;4112:9;::::0;:13:::3;::::0;:9;;::::3;;;4124:1;4112:13;:::i;:::-;4100:9;;:25;;;;;;;;;;;;;;;;;;3986:155;4157:2;-1:-1:-1::0;;;;;4157:19:0::3;;4177:11;:24;4199:1;4189:7;;;;;;;;;;;:11;;;;:::i;:::-;4177:24;;::::0;;::::3;::::0;::::3;::::0;;;;;;-1:-1:-1;4177:24:0;:36;-1:-1:-1;;;;;4177:36:0::3;736:10:2::0;4241:7:0::3;::::0;4229:11:::3;::::0;:24:::3;::::0;4241:11:::3;::::0;4251:1;;4241:7;;::::3;;;:11;:::i;:::-;4229:24;;::::0;;::::3;::::0;::::3;::::0;;;;;;;;-1:-1:-1;4229:24:0;:32;4157:105;;::::3;::::0;;;-1:-1:-1;;;;;;4157:105:0;;;-1:-1:-1;;;;;17901:15:14;;;4157:105:0::3;::::0;::::3;17883:34:14::0;17953:15;;;;17933:18;;;17926:43;-1:-1:-1;;;4229:32:0;::::3;;;17985:18:14::0;;;17978:47;17818:18;;4157:105:0::3;;;;;;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;3966:3;;;;;:::i;:::-;;;;3930:344;;;-1:-1:-1::0;736:10:2;4313:26:0::3;::::0;;;:12:::3;:26;::::0;;;;;:41:::3;::::0;4342:12;;4313:26:::3;;:41;:::i;:::-;736:10:2::0;4284:26:0::3;::::0;;;:12:::3;:26;::::0;;;;:70;;-1:-1:-1;;4284:70:0::3;;::::0;;::::3;;::::0;;4375:7:::3;::::0;:22:::3;::::0;4385:12;;4375:7;;::::3;;:22;:::i;:::-;4365:7;:32:::0;;::::3;::::0;;;::::3;::::0;::::3;-1:-1:-1::0;;4365:32:0;;::::3;::::0;;;::::3;::::0;;4432:14:::3;:12:::0;4365:7:::3;4432:14;:::i;:::-;4420:9;::::0;:26:::3;::::0;::::3;;::::0;-1:-1:-1;;;4420:9:0;::::3;;;:26;:::i;:::-;4408:9;:38:::0;;::::3;::::0;;;::::3;-1:-1:-1::0;;;4408:38:0::3;-1:-1:-1::0;;4408:38:0;;::::3;::::0;;;::::3;::::0;;-1:-1:-1;;;2688:22:12;;2890:1564:0:o;1461:1421::-;736:10:2;4956:9:0;4940:25;4932:60;;;;-1:-1:-1;;;4932:60:0;;14043:2:14;4932:60:0;;;14025:21:14;14082:2;14062:18;;;14055:30;-1:-1:-1;;;14101:18:14;;;14094:52;14163:18;;4932:60:0;13841:346:14;4932:60:0;1778:1:12::1;2376:7;;:19:::0;2368:63:::1;;;::::0;-1:-1:-1;;;2368:63:12;;14394:2:14;2368:63:12::1;::::0;::::1;14376:21:14::0;14433:2;14413:18;;;14406:30;14472:33;14452:18;;;14445:61;14523:18;;2368:63:12::1;14192:355:14::0;2368:63:12::1;1778:1;2509:7;:18:::0;1601:8:0::2;::::0;::::2;;1600:9;1592:44;;;::::0;-1:-1:-1;;;1592:44:0;;14754:2:14;1592:44:0::2;::::0;::::2;14736:21:14::0;14793:2;14773:18;;;14766:30;-1:-1:-1;;;14812:18:14;;;14805:52;14874:18;;1592:44:0::2;14552:346:14::0;1592:44:0::2;1688:19;;1669:15;:38;;1647:124;;;::::0;-1:-1:-1;;;1647:124:0;;18238:2:14;1647:124:0::2;::::0;::::2;18220:21:14::0;18277:2;18257:18;;;18250:30;18316:34;18296:18;;;18289:62;-1:-1:-1;;;18367:18:14;;;18360:34;18411:19;;1647:124:0::2;18036:400:14::0;1647:124:0::2;1851:13;::::0;736:10:2;1851:13:0::2;1805:26:::0;;;:12:::2;:26;::::0;;;;;1851:13:::2;::::0;;::::2;::::0;1805:41:::2;::::0;1834:12;;1805:26:::2;:41;:::i;:::-;1804:60;;;;1782:153;;;::::0;-1:-1:-1;;;1782:153:0;;18643:2:14;1782:153:0::2;::::0;::::2;18625:21:14::0;18682:2;18662:18;;;18655:30;18721:34;18701:18;;;18694:62;-1:-1:-1;;;18772:18:14;;;18765:41;18823:19;;1782:153:0::2;18441:407:14::0;1782:153:0::2;403:2;1981:14;:12:::0;1994:1:::2;1981:14;:::i;:::-;1969:9;::::0;:26:::2;::::0;::::2;;::::0;-1:-1:-1;;;1969:9:0;::::2;;;:26;:::i;:::-;1968:41;;;;1946:115;;;;-1:-1:-1::0;;;1946:115:0::2;;;;;;;:::i;:::-;2108:20;;::::0;::::2;444:10;2108:20;:::i;:::-;2094:9;:35;;2072:109;;;::::0;-1:-1:-1;;;2072:109:0;;17360:2:14;2072:109:0::2;::::0;::::2;17342:21:14::0;17399:2;17379:18;;;17372:30;-1:-1:-1;;;17418:18:14;;;17411:54;17482:18;;2072:109:0::2;17158:348:14::0;2072:109:0::2;2209:1;2194:109;2217:14;:12:::0;2230:1:::2;2217:14;:::i;:::-;2212:19;;:1;:19;;;2194:109;;2253:38;736:10:2::0;2263:12:0::2;656:98:2::0;2253:38:0::2;2233:3:::0;::::2;::::0;::::2;:::i;:::-;;;;2194:109;;;-1:-1:-1::0;550:42:0::2;2315:9;2358:344;2380:12;2376:16;;:1;:16;;;2358:344;;;2427:7;::::0;2417:9:::2;::::0;:26:::2;::::0;2427:11:::2;::::0;2437:1;;2427:7;;::::2;;;:11;:::i;:::-;:15;::::0;2441:1:::2;2427:15;:::i;:::-;2417:26;::::0;;::::2;::::0;;::::2;::::0;::::2;::::0;;;;;;-1:-1:-1;2417:26:0;;::::2;2414:155;;;2463:46;736:10:2::0;2473:12:0::2;656:98:2::0;2463:46:0::2;2540:9;::::0;:13:::2;::::0;:9;;::::2;;;2552:1;2540:13;:::i;:::-;2528:9;;:25;;;;;;;;;;;;;;;;;;2414:155;2585:2;-1:-1:-1::0;;;;;2585:19:0::2;;2605:11;:24;2627:1;2617:7;;;;;;;;;;;:11;;;;:::i;:::-;2605:24;;::::0;;::::2;::::0;::::2;::::0;;;;;;-1:-1:-1;2605:24:0;:36;-1:-1:-1;;;;;2605:36:0::2;736:10:2::0;2669:7:0::2;::::0;2657:11:::2;::::0;:24:::2;::::0;2669:11:::2;::::0;2679:1;;2669:7;;::::2;;;:11;:::i;:::-;2657:24;;::::0;;::::2;::::0;::::2;::::0;;;;;;;;-1:-1:-1;2657:24:0;:32;2585:105;;::::2;::::0;;;-1:-1:-1;;;;;;2585:105:0;;;-1:-1:-1;;;;;17901:15:14;;;2585:105:0::2;::::0;::::2;17883:34:14::0;17953:15;;;;17933:18;;;17926:43;-1:-1:-1;;;2657:32:0;::::2;;;17985:18:14::0;;;17978:47;17818:18;;2585:105:0::2;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;2394:3;;;;;:::i;:::-;;;;2358:344;;5338:376:4::0;5547:41;736:10:2;5580:7:4;5547:18;:41::i;:::-;5525:140;;;;-1:-1:-1;;;5525:140:4;;;;;;;:::i;:::-;5678:28;5688:4;5694:2;5698:7;5678:9;:28::i;1402:343:5:-;1544:7;1599:23;1616:5;1599:16;:23::i;:::-;1591:5;:31;1569:124;;;;-1:-1:-1;;;1569:124:5;;19473:2:14;1569:124:5;;;19455:21:14;19512:2;19492:18;;;19485:30;19551:34;19531:18;;;19524:62;-1:-1:-1;;;19602:18:14;;;19595:41;19653:19;;1569:124:5;19271:407:14;1569:124:5;-1:-1:-1;;;;;;1711:19:5;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1402:343::o;5224:178:0:-;1134:7:11;1161:6;-1:-1:-1;;;;;1161:6:11;736:10:2;1308:23:11;1300:68;;;;-1:-1:-1;;;1300:68:11;;;;;;;:::i;:::-;5304:7:0::1;5299:96;5321:6;:13;5317:1;:17;;;5299:96;;;5379:4;5356:9;:20;5366:6;5373:1;5366:9;;;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;5356:20:::1;;::::0;;;::::1;::::0;;;;;;-1:-1:-1;5356:20:0;:27;;-1:-1:-1;;5356:27:0::1;::::0;::::1;;::::0;;;::::1;::::0;;5336:3;::::1;::::0;::::1;:::i;:::-;;;;5299:96;;;;5224:178:::0;:::o;6400:106::-;1134:7:11;1161:6;-1:-1:-1;;;;;1161:6:11;736:10:2;1308:23:11;1300:68;;;;-1:-1:-1;;;1300:68:11;;;;;;;:::i;:::-;1134:7;1161:6;;6450:48:0::1;::::0;-1:-1:-1;;;;;1161:6:11;;;;6476:21:0::1;6450:48:::0;::::1;;;::::0;6476:21;;6450:48;1134:7:11;6450:48:0;6476:21;1161:6:11;6450:48:0;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;6400:106::o:0;5785:185:4:-;5923:39;5940:4;5946:2;5950:7;5923:39;;;;;;;;;;;;:16;:39::i;2011:320:5:-;2131:7;2186:30;1909:10;:17;;1821:113;2186:30;2178:5;:38;2156:132;;;;-1:-1:-1;;;2156:132:5;;19885:2:14;2156:132:5;;;19867:21:14;19924:2;19904:18;;;19897:30;19963:34;19943:18;;;19936:62;-1:-1:-1;;;20014:18:14;;;20007:42;20066:19;;2156:132:5;19683:408:14;2156:132:5;2306:10;2317:5;2306:17;;;;;;;;:::i;:::-;;;;;;;;;2299:24;;2011:320;;;:::o;6146:105:0:-;1134:7:11;1161:6;-1:-1:-1;;;;;1161:6:11;736:10:2;1308:23:11;1300:68;;;;-1:-1:-1;;;1300:68:11;;;;;;;:::i;:::-;6220:12:0::1;:23;6235:8:::0;6220:12;:23:::1;:::i;2332:326:4:-:0;2449:7;2490:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2490:16:4;;2517:110;;;;-1:-1:-1;;;2517:110:4;;22502:2:14;2517:110:4;;;22484:21:14;22541:2;22521:18;;;22514:30;22580:34;22560:18;;;22553:62;-1:-1:-1;;;22631:18:14;;;22624:39;22680:19;;2517:110:4;22300:405:14;1975:295:4;2092:7;-1:-1:-1;;;;;2139:19:4;;2117:111;;;;-1:-1:-1;;;2117:111:4;;22912:2:14;2117:111:4;;;22894:21:14;22951:2;22931:18;;;22924:30;22990:34;22970:18;;;22963:62;-1:-1:-1;;;23041:18:14;;;23034:40;23091:19;;2117:111:4;22710:406:14;2117:111:4;-1:-1:-1;;;;;;2246:16:4;;;;;:9;:16;;;;;;;1975:295::o;1739:103:11:-;1134:7;1161:6;-1:-1:-1;;;;;1161:6:11;736:10:2;1308:23:11;1300:68;;;;-1:-1:-1;;;1300:68:11;;;;;;;:::i;:::-;1804:30:::1;1831:1;1804:18;:30::i;:::-;1739:103::o:0;5020:196:0:-;1134:7:11;1161:6;-1:-1:-1;;;;;1161:6:11;736:10:2;1308:23:11;1300:68;;;;-1:-1:-1;;;1300:68:11;;;;;;;:::i;:::-;5110:9:0::1;5105:104;5129:9;:16;5125:1;:20;5105:104;;;5193:4;5167:9;:23;5177:9;5187:1;5177:12;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;5167:23:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;5167:23:0;:30;;-1:-1:-1;;5167:30:0::1;::::0;::::1;;::::0;;;::::1;::::0;;5147:3;::::1;::::0;::::1;:::i;:::-;;;;5105:104;;6034::::0;1134:7:11;1161:6;-1:-1:-1;;;;;1161:6:11;736:10:2;1308:23:11;1300:68;;;;-1:-1:-1;;;1300:68:11;;;;;;;:::i;:::-;6105:17:0::1;:25:::0;6034:104::o;6514:534::-;6603:16;6637:18;6658:17;6668:6;6658:9;:17::i;:::-;6637:38;;6690:10;6704:1;6690:15;6686:355;;6729:16;;;6743:1;6729:16;;;;;;;;;;;-1:-1:-1;6722:23:0;6514:534;-1:-1:-1;;;6514:534:0:o;6686:355::-;6778:23;6818:10;6804:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6804:25:0;;6778:51;;6844:13;6872:130;6896:10;6888:5;:18;6872:130;;;6952:34;6972:6;6980:5;6952:19;:34::i;:::-;6936:6;6943:5;6936:13;;;;;;;;:::i;:::-;;;;;;;;;;:50;6908:7;;;;:::i;:::-;;;;6872:130;;6686:355;6626:422;6514:534;;;:::o;2894:104:4:-;2950:13;2983:7;2976:14;;;;;:::i;4799:187::-;4926:52;736:10:2;4959:8:4;4969;4926:18;:52::i;6041:365::-;6230:41;736:10:2;6263:7:4;6230:18;:41::i;:::-;6208:140;;;;-1:-1:-1;;;6208:140:4;;;;;;;:::i;:::-;6359:39;6373:4;6379:2;6383:7;6392:5;6359:13;:39::i;:::-;6041:365;;;;:::o;6259:133:0:-;6321:4;1161:6:11;;-1:-1:-1;;;;;1161:6:11;736:10:2;1308:23:11;1300:68;;;;-1:-1:-1;;;1300:68:11;;;;;;;:::i;:::-;-1:-1:-1;6338:8:0::1;:20:::0;;-1:-1:-1;;6338:20:0::1;::::0;::::1;;::::0;;::::1;::::0;;;::::1;6376:8:::0;1379:1:11::1;6259:133:0::0;;;:::o;7056:235::-;7158:13;7233:12;7247:26;7264:8;7247:16;:26::i;:::-;7216:66;;;;;;;;;:::i;:::-;;;;;;;;;;;;;7189:94;;7056:235;;;:::o;297:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5918:108::-;1134:7:11;1161:6;-1:-1:-1;;;;;1161:6:11;736:10:2;1308:23:11;1300:68;;;;-1:-1:-1;;;1300:68:11;;;;;;;:::i;:::-;5991:19:0::1;:27:::0;5918:108::o;1997:238:11:-;1134:7;1161:6;-1:-1:-1;;;;;1161:6:11;736:10:2;1308:23:11;1300:68;;;;-1:-1:-1;;;1300:68:11;;;;;;;:::i;:::-;-1:-1:-1;;;;;2100:22:11;::::1;2078:110;;;::::0;-1:-1:-1;;;2078:110:11;;24655:2:14;2078:110:11::1;::::0;::::1;24637:21:14::0;24694:2;24674:18;;;24667:30;24733:34;24713:18;;;24706:62;-1:-1:-1;;;24784:18:14;;;24777:36;24830:19;;2078:110:11::1;24453:402:14::0;2078:110:11::1;2199:28;2218:8;2199:18;:28::i;4462:302:0:-:0;1134:7:11;1161:6;-1:-1:-1;;;;;1161:6:11;736:10:2;1308:23:11;1300:68;;;;-1:-1:-1;;;1300:68:11;;;;;;;:::i;:::-;4564:9:0::1;::::0;403:2:::1;::::0;4564:19:::1;::::0;::::1;::::0;::::1;::::0;-1:-1:-1;;;4564:9:0;::::1;;;:19;:::i;:::-;4563:34;;;;4541:108;;;;-1:-1:-1::0;;;4541:108:0::1;;;;;;;:::i;:::-;4677:1;4662:95;4685:7;4680:12;;:1;:12;;;4662:95;;4731:9;::::0;4714:31:::1;::::0;4724:5;;4731:13:::1;::::0;::::1;::::0;::::1;::::0;-1:-1:-1;;;4731:9:0;::::1;;;:13;:::i;4714:31::-;4694:3:::0;::::1;::::0;::::1;:::i;:::-;;;;4662:95;;1556:355:4::0;1703:4;-1:-1:-1;;;;;;1745:40:4;;-1:-1:-1;;;1745:40:4;;:105;;-1:-1:-1;;;;;;;1802:48:4;;-1:-1:-1;;;1802:48:4;1745:105;:158;;;-1:-1:-1;;;;;;;;;;1013:40:3;;;1867:36:4;854:207:3;12240:174:4;12315:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;12315:29:4;-1:-1:-1;;;;;12315:29:4;;;;;;;;:24;;12369:23;12315:24;12369:14;:23::i;:::-;-1:-1:-1;;;;;12360:46:4;;;;;;;;;;;12240:174;;:::o;9041:110::-;9117:26;9127:2;9131:7;9117:26;;;;;;;;;;;;:9;:26::i;8247:452::-;8376:4;8042:16;;;:7;:16;;;;;;-1:-1:-1;;;;;8042:16:4;8398:110;;;;-1:-1:-1;;;8398:110:4;;25062:2:14;8398:110:4;;;25044:21:14;25101:2;25081:18;;;25074:30;25140:34;25120:18;;;25113:62;-1:-1:-1;;;25191:18:14;;;25184:42;25243:19;;8398:110:4;24860:408:14;8398:110:4;8519:13;8535:23;8550:7;8535:14;:23::i;:::-;8519:39;;8588:5;-1:-1:-1;;;;;8577:16:4;:7;-1:-1:-1;;;;;8577:16:4;;:65;;;-1:-1:-1;;;;;;5228:25:4;;;5199:4;5228:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;8610:32;8577:113;;;;8683:7;-1:-1:-1;;;;;8659:31:4;:20;8671:7;8659:11;:20::i;:::-;-1:-1:-1;;;;;8659:31:4;;8577:113;8569:122;8247:452;-1:-1:-1;;;;8247:452:4:o;11460:662::-;11633:4;-1:-1:-1;;;;;11606:31:4;:23;11621:7;11606:14;:23::i;:::-;-1:-1:-1;;;;;11606:31:4;;11584:118;;;;-1:-1:-1;;;11584:118:4;;25475:2:14;11584:118:4;;;25457:21:14;25514:2;25494:18;;;25487:30;25553:34;25533:18;;;25526:62;-1:-1:-1;;;25604:18:14;;;25597:35;25649:19;;11584:118:4;25273:401:14;11584:118:4;-1:-1:-1;;;;;11721:16:4;;11713:65;;;;-1:-1:-1;;;11713:65:4;;25881:2:14;11713:65:4;;;25863:21:14;25920:2;25900:18;;;25893:30;25959:34;25939:18;;;25932:62;-1:-1:-1;;;26010:18:14;;;26003:34;26054:19;;11713:65:4;25679:400:14;11713:65:4;11791:39;11812:4;11818:2;11822:7;11791:20;:39::i;:::-;11895:29;11912:1;11916:7;11895:8;:29::i;:::-;-1:-1:-1;;;;;11937:15:4;;;;;;:9;:15;;;;;:20;;11956:1;;11937:15;:20;;11956:1;;11937:20;:::i;:::-;;;;-1:-1:-1;;;;;;;11968:13:4;;;;;;:9;:13;;;;;:18;;11985:1;;11968:13;:18;;11985:1;;11968:18;:::i;:::-;;;;-1:-1:-1;;11997:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;11997:21:4;-1:-1:-1;;;;;11997:21:4;;;;;;;;;12036:27;;11997:16;;12036:27;;;;;;;4012:341;3942:411;;:::o;2395:191:11:-;2469:16;2488:6;;-1:-1:-1;;;;;2505:17:11;;;-1:-1:-1;;;;;;2505:17:11;;;;;;2538:40;;2488:6;;;;;;;2538:40;;2469:16;2538:40;2458:128;2395:191;:::o;12556:315:4:-;12711:8;-1:-1:-1;;;;;12702:17:4;:5;-1:-1:-1;;;;;12702:17:4;;12694:55;;;;-1:-1:-1;;;12694:55:4;;26416:2:14;12694:55:4;;;26398:21:14;26455:2;26435:18;;;26428:30;26494:27;26474:18;;;26467:55;26539:18;;12694:55:4;26214:349:14;12694:55:4;-1:-1:-1;;;;;12760:25:4;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;12760:46:4;;;;;;;;;;12822:41;;540::14;;;12822::4;;513:18:14;12822:41:4;;;;;;;12556:315;;;:::o;7288:352::-;7445:28;7455:4;7461:2;7465:7;7445:9;:28::i;:::-;7506:48;7529:4;7535:2;7539:7;7548:5;7506:22;:48::i;:::-;7484:148;;;;-1:-1:-1;;;7484:148:4;;;;;;;:::i;342:723:13:-;398:13;619:5;628:1;619:10;615:53;;-1:-1:-1;;646:10:13;;;;;;;;;;;;-1:-1:-1;;;646:10:13;;;;;342:723::o;615:53::-;693:5;678:12;734:78;741:9;;734:78;;767:8;;;;:::i;:::-;;-1:-1:-1;790:10:13;;-1:-1:-1;798:2:13;790:10;;:::i;:::-;;;734:78;;;822:19;854:6;844:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;844:17:13;;822:39;;872:154;879:10;;872:154;;906:11;916:1;906:11;;:::i;:::-;;-1:-1:-1;975:10:13;983:2;975:5;:10;:::i;:::-;962:24;;:2;:24;:::i;:::-;949:39;;932:6;939;932:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;932:56:13;;;;;;;;-1:-1:-1;1003:11:13;1012:2;1003:11;;:::i;:::-;;;872:154;;9378:321:4;9508:18;9514:2;9518:7;9508:5;:18::i;:::-;9559:54;9590:1;9594:2;9598:7;9607:5;9559:22;:54::i;:::-;9537:154;;;;-1:-1:-1;;;9537:154:4;;;;;;;:::i;2944:589:5:-;-1:-1:-1;;;;;3150:18:5;;3146:187;;3185:40;3217:7;4360:10;:17;;4333:24;;;;:15;:24;;;;;:44;;;4388:24;;;;;;;;;;;;4256:164;3185:40;3146:187;;;3255:2;-1:-1:-1;;;;;3247:10:5;:4;-1:-1:-1;;;;;3247:10:5;;3243:90;;3274:47;3307:4;3313:7;3274:32;:47::i;:::-;-1:-1:-1;;;;;3347:16:5;;3343:183;;3380:45;3417:7;3380:36;:45::i;3343:183::-;3453:4;-1:-1:-1;;;;;3447:10:5;:2;-1:-1:-1;;;;;3447:10:5;;3443:83;;3474:40;3502:2;3506:7;3474:27;:40::i;13436:980:4:-;13591:4;-1:-1:-1;;;;;13612:13:4;;1505:19:1;:23;13608:801:4;;13665:175;;-1:-1:-1;;;13665:175:4;;-1:-1:-1;;;;;13665:36:4;;;;;:175;;736:10:2;;13759:4:4;;13786:7;;13816:5;;13665:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13665:175:4;;;;;;;;-1:-1:-1;;13665:175:4;;;;;;;;;;;;:::i;:::-;;;13644:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14023:6;:13;14040:1;14023:18;14019:320;;14066:108;;-1:-1:-1;;;14066:108:4;;;;;;;:::i;14019:320::-;14289:6;14283:13;14274:6;14270:2;14266:15;14259:38;13644:710;-1:-1:-1;;;;;;13904:51:4;-1:-1:-1;;;13904:51:4;;-1:-1:-1;13897:58:4;;13608:801;-1:-1:-1;14393:4:4;13436:980;;;;;;:::o;10035:439::-;-1:-1:-1;;;;;10115:16:4;;10107:61;;;;-1:-1:-1;;;10107:61:4;;28311:2:14;10107:61:4;;;28293:21:14;;;28330:18;;;28323:30;28389:34;28369:18;;;28362:62;28441:18;;10107:61:4;28109:356:14;10107:61:4;8018:4;8042:16;;;:7;:16;;;;;;-1:-1:-1;;;;;8042:16:4;:30;10179:58;;;;-1:-1:-1;;;10179:58:4;;28672:2:14;10179:58:4;;;28654:21:14;28711:2;28691:18;;;28684:30;28750;28730:18;;;28723:58;28798:18;;10179:58:4;28470:352:14;10179:58:4;10250:45;10279:1;10283:2;10287:7;10250:20;:45::i;:::-;-1:-1:-1;;;;;10308:13:4;;;;;;:9;:13;;;;;:18;;10325:1;;10308:13;:18;;10325:1;;10308:18;:::i;:::-;;;;-1:-1:-1;;10337:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10337:21:4;-1:-1:-1;;;;;10337:21:4;;;;;;;;10376:33;;10337:16;;;10376:33;;10337:16;;10376:33;5299:96:0::1;5224:178:::0;:::o;5047:1002:5:-;5327:22;5377:1;5352:22;5369:4;5352:16;:22::i;:::-;:26;;;;:::i;:::-;5389:18;5410:26;;;:17;:26;;;;;;5327:51;;-1:-1:-1;5543:28:5;;;5539:328;;-1:-1:-1;;;;;5610:18:5;;5588:19;5610:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5661:30;;;;;;:44;;;5778:30;;:17;:30;;;;;:43;;;5539:328;-1:-1:-1;5963:26:5;;;;:17;:26;;;;;;;;5956:33;;;-1:-1:-1;;;;;6007:18:5;;;;;:12;:18;;;;;:34;;;;;;;6000:41;5047:1002::o;6344:1079::-;6622:10;:17;6597:22;;6622:21;;6642:1;;6622:21;:::i;:::-;6654:18;6675:24;;;:15;:24;;;;;;7048:10;:26;;6597:46;;-1:-1:-1;6675:24:5;;6597:46;;7048:26;;;;;;:::i;:::-;;;;;;;;;7026:48;;7112:11;7087:10;7098;7087:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;7192:28;;;:15;:28;;;;;;;:41;;;7364:24;;;;;7357:31;7399:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;6415:1008;;;6344:1079;:::o;3834:221::-;3919:14;3936:20;3953:2;3936:16;:20::i;:::-;-1:-1:-1;;;;;3967:16:5;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;4012:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3834:221:5:o;14:131:14:-;-1:-1:-1;;;;;;88:32:14;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:14:o;592:180::-;651:6;704:2;692:9;683:7;679:23;675:32;672:52;;;720:1;717;710:12;672:52;-1:-1:-1;743:23:14;;592:180;-1:-1:-1;592:180:14:o;777:250::-;862:1;872:113;886:6;883:1;880:13;872:113;;;962:11;;;956:18;943:11;;;936:39;908:2;901:10;872:113;;;-1:-1:-1;;1019:1:14;1001:16;;994:27;777:250::o;1032:271::-;1074:3;1112:5;1106:12;1139:6;1134:3;1127:19;1155:76;1224:6;1217:4;1212:3;1208:14;1201:4;1194:5;1190:16;1155:76;:::i;:::-;1285:2;1264:15;-1:-1:-1;;1260:29:14;1251:39;;;;1292:4;1247:50;;1032:271;-1:-1:-1;;1032:271:14:o;1308:220::-;1457:2;1446:9;1439:21;1420:4;1477:45;1518:2;1507:9;1503:18;1495:6;1477:45;:::i;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:14;;1848:42;;1838:70;;1904:1;1901;1894:12;1919:254;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:14:o;2178:127::-;2239:10;2234:3;2230:20;2227:1;2220:31;2270:4;2267:1;2260:15;2294:4;2291:1;2284:15;2310:275;2381:2;2375:9;2446:2;2427:13;;-1:-1:-1;;2423:27:14;2411:40;;2481:18;2466:34;;2502:22;;;2463:62;2460:88;;;2528:18;;:::i;:::-;2564:2;2557:22;2310:275;;-1:-1:-1;2310:275:14:o;2590:183::-;2650:4;2683:18;2675:6;2672:30;2669:56;;;2705:18;;:::i;:::-;-1:-1:-1;2750:1:14;2746:14;2762:4;2742:25;;2590:183::o;2778:668::-;2832:5;2885:3;2878:4;2870:6;2866:17;2862:27;2852:55;;2903:1;2900;2893:12;2852:55;2939:6;2926:20;2965:4;2989:60;3005:43;3045:2;3005:43;:::i;:::-;2989:60;:::i;:::-;3083:15;;;3169:1;3165:10;;;;3153:23;;3149:32;;;3114:12;;;;3193:15;;;3190:35;;;3221:1;3218;3211:12;3190:35;3257:2;3249:6;3245:15;3269:148;3285:6;3280:3;3277:15;3269:148;;;3351:23;3370:3;3351:23;:::i;:::-;3339:36;;3395:12;;;;3302;;3269:148;;;-1:-1:-1;3435:5:14;2778:668;-1:-1:-1;;;;;;2778:668:14:o;3451:1308::-;3568:6;3576;3629:2;3617:9;3608:7;3604:23;3600:32;3597:52;;;3645:1;3642;3635:12;3597:52;3685:9;3672:23;3714:18;3755:2;3747:6;3744:14;3741:34;;;3771:1;3768;3761:12;3741:34;3794:61;3847:7;3838:6;3827:9;3823:22;3794:61;:::i;:::-;3784:71;;3874:2;3864:12;;3929:2;3918:9;3914:18;3901:32;3958:2;3948:8;3945:16;3942:36;;;3974:1;3971;3964:12;3942:36;3997:24;;;-1:-1:-1;4052:4:14;4044:13;;4040:27;-1:-1:-1;4030:55:14;;4081:1;4078;4071:12;4030:55;4117:2;4104:16;4140:60;4156:43;4196:2;4156:43;:::i;4140:60::-;4234:15;;;4316:1;4312:10;;;;4304:19;;4300:28;;;4265:12;;;;4340:19;;;4337:39;;;4372:1;4369;4362:12;4337:39;4396:11;;;;4416:313;4432:6;4427:3;4424:15;4416:313;;;4512:3;4499:17;4560:6;4553:5;4549:18;4542:5;4539:29;4529:127;;4610:1;4639:2;4635;4628:14;4529:127;4669:18;;4449:12;;;;4707;;;;4416:313;;;4748:5;4738:15;;;;;;;3451:1308;;;;;:::o;4764:156::-;4830:20;;4890:4;4879:16;;4869:27;;4859:55;;4910:1;4907;4900:12;4925:182;4982:6;5035:2;5023:9;5014:7;5010:23;5006:32;5003:52;;;5051:1;5048;5041:12;5003:52;5074:27;5091:9;5074:27;:::i;5483:328::-;5560:6;5568;5576;5629:2;5617:9;5608:7;5604:23;5600:32;5597:52;;;5645:1;5642;5635:12;5597:52;5668:29;5687:9;5668:29;:::i;:::-;5658:39;;5716:38;5750:2;5739:9;5735:18;5716:38;:::i;:::-;5706:48;;5801:2;5790:9;5786:18;5773:32;5763:42;;5483:328;;;;;:::o;5816:186::-;5875:6;5928:2;5916:9;5907:7;5903:23;5899:32;5896:52;;;5944:1;5941;5934:12;5896:52;5967:29;5986:9;5967:29;:::i;6007:893::-;6089:6;6120:2;6163;6151:9;6142:7;6138:23;6134:32;6131:52;;;6179:1;6176;6169:12;6131:52;6219:9;6206:23;6252:18;6244:6;6241:30;6238:50;;;6284:1;6281;6274:12;6238:50;6307:22;;6360:4;6352:13;;6348:27;-1:-1:-1;6338:55:14;;6389:1;6386;6379:12;6338:55;6425:2;6412:16;6448:60;6464:43;6504:2;6464:43;:::i;6448:60::-;6542:15;;;6624:1;6620:10;;;;6612:19;;6608:28;;;6573:12;;;;6648:19;;;6645:39;;;6680:1;6677;6670:12;6645:39;6704:11;;;;6724:146;6740:6;6735:3;6732:15;6724:146;;;6806:21;6823:3;6806:21;:::i;:::-;6794:34;;6757:12;;;;6848;;;;6724:146;;;6889:5;6007:893;-1:-1:-1;;;;;;;6007:893:14:o;6905:407::-;6970:5;7004:18;6996:6;6993:30;6990:56;;;7026:18;;:::i;:::-;7064:57;7109:2;7088:15;;-1:-1:-1;;7084:29:14;7115:4;7080:40;7064:57;:::i;:::-;7055:66;;7144:6;7137:5;7130:21;7184:3;7175:6;7170:3;7166:16;7163:25;7160:45;;;7201:1;7198;7191:12;7160:45;7250:6;7245:3;7238:4;7231:5;7227:16;7214:43;7304:1;7297:4;7288:6;7281:5;7277:18;7273:29;7266:40;6905:407;;;;;:::o;7317:451::-;7386:6;7439:2;7427:9;7418:7;7414:23;7410:32;7407:52;;;7455:1;7452;7445:12;7407:52;7495:9;7482:23;7528:18;7520:6;7517:30;7514:50;;;7560:1;7557;7550:12;7514:50;7583:22;;7636:4;7628:13;;7624:27;-1:-1:-1;7614:55:14;;7665:1;7662;7655:12;7614:55;7688:74;7754:7;7749:2;7736:16;7731:2;7727;7723:11;7688:74;:::i;7773:348::-;7857:6;7910:2;7898:9;7889:7;7885:23;7881:32;7878:52;;;7926:1;7923;7916:12;7878:52;7966:9;7953:23;7999:18;7991:6;7988:30;7985:50;;;8031:1;8028;8021:12;7985:50;8054:61;8107:7;8098:6;8087:9;8083:22;8054:61;:::i;8126:632::-;8297:2;8349:21;;;8419:13;;8322:18;;;8441:22;;;8268:4;;8297:2;8520:15;;;;8494:2;8479:18;;;8268:4;8563:169;8577:6;8574:1;8571:13;8563:169;;;8638:13;;8626:26;;8707:15;;;;8672:12;;;;8599:1;8592:9;8563:169;;;-1:-1:-1;8749:3:14;;8126:632;-1:-1:-1;;;;;;8126:632:14:o;8956:160::-;9021:20;;9077:13;;9070:21;9060:32;;9050:60;;9106:1;9103;9096:12;9121:254;9186:6;9194;9247:2;9235:9;9226:7;9222:23;9218:32;9215:52;;;9263:1;9260;9253:12;9215:52;9286:29;9305:9;9286:29;:::i;:::-;9276:39;;9334:35;9365:2;9354:9;9350:18;9334:35;:::i;:::-;9324:45;;9121:254;;;;;:::o;9380:667::-;9475:6;9483;9491;9499;9552:3;9540:9;9531:7;9527:23;9523:33;9520:53;;;9569:1;9566;9559:12;9520:53;9592:29;9611:9;9592:29;:::i;:::-;9582:39;;9640:38;9674:2;9663:9;9659:18;9640:38;:::i;:::-;9630:48;;9725:2;9714:9;9710:18;9697:32;9687:42;;9780:2;9769:9;9765:18;9752:32;9807:18;9799:6;9796:30;9793:50;;;9839:1;9836;9829:12;9793:50;9862:22;;9915:4;9907:13;;9903:27;-1:-1:-1;9893:55:14;;9944:1;9941;9934:12;9893:55;9967:74;10033:7;10028:2;10015:16;10010:2;10006;10002:11;9967:74;:::i;:::-;9957:84;;;9380:667;;;;;;;:::o;10052:180::-;10108:6;10161:2;10149:9;10140:7;10136:23;10132:32;10129:52;;;10177:1;10174;10167:12;10129:52;10200:26;10216:9;10200:26;:::i;10237:260::-;10305:6;10313;10366:2;10354:9;10345:7;10341:23;10337:32;10334:52;;;10382:1;10379;10372:12;10334:52;10405:29;10424:9;10405:29;:::i;:::-;10395:39;;10453:38;10487:2;10476:9;10472:18;10453:38;:::i;10502:256::-;10568:6;10576;10629:2;10617:9;10608:7;10604:23;10600:32;10597:52;;;10645:1;10642;10635:12;10597:52;10668:29;10687:9;10668:29;:::i;:::-;10658:39;;10716:36;10748:2;10737:9;10733:18;10716:36;:::i;11053:356::-;11255:2;11237:21;;;11274:18;;;11267:30;11333:34;11328:2;11313:18;;11306:62;11400:2;11385:18;;11053:356::o;11414:380::-;11493:1;11489:12;;;;11536;;;11557:61;;11611:4;11603:6;11599:17;11589:27;;11557:61;11664:2;11656:6;11653:14;11633:18;11630:38;11627:161;;11710:10;11705:3;11701:20;11698:1;11691:31;11745:4;11742:1;11735:15;11773:4;11770:1;11763:15;13039:127;13100:10;13095:3;13091:20;13088:1;13081:31;13131:4;13128:1;13121:15;13155:4;13152:1;13145:15;13171:127;13232:10;13227:3;13223:20;13220:1;13213:31;13263:4;13260:1;13253:15;13287:4;13284:1;13277:15;13303:175;13340:3;13384:4;13377:5;13373:16;13413:4;13404:7;13401:17;13398:43;;13421:18;;:::i;:::-;13470:1;13457:15;;13303:175;-1:-1:-1;;13303:175:14:o;15669:148::-;15757:4;15736:12;;;15750;;;15732:31;;15775:13;;15772:39;;;15791:18;;:::i;16229:225::-;16333:4;16312:12;;;16326;;;16308:31;16359:22;;;;16400:24;;;16390:58;;16428:18;;:::i;:::-;16390:58;16229:225;;;;:::o;16459:168::-;16526:6;16552:10;;;16564;;;16548:27;;16587:11;;;16584:37;;;16601:18;;:::i;16632:348::-;16834:2;16816:21;;;16873:2;16853:18;;;16846:30;16912:26;16907:2;16892:18;;16885:54;16971:2;16956:18;;16632:348::o;16985:168::-;17058:9;;;17089;;17106:15;;;17100:22;;17086:37;17076:71;;17127:18;;:::i;17511:128::-;17578:9;;;17599:11;;;17596:37;;;17613:18;;:::i;18853:413::-;19055:2;19037:21;;;19094:2;19074:18;;;19067:30;19133:34;19128:2;19113:18;;19106:62;-1:-1:-1;;;19199:2:14;19184:18;;19177:47;19256:3;19241:19;;18853:413::o;20222:545::-;20324:2;20319:3;20316:11;20313:448;;;20360:1;20385:5;20381:2;20374:17;20430:4;20426:2;20416:19;20500:2;20488:10;20484:19;20481:1;20477:27;20471:4;20467:38;20536:4;20524:10;20521:20;20518:47;;;-1:-1:-1;20559:4:14;20518:47;20614:2;20609:3;20605:12;20602:1;20598:20;20592:4;20588:31;20578:41;;20669:82;20687:2;20680:5;20677:13;20669:82;;;20732:17;;;20713:1;20702:13;20669:82;;;20673:3;;;20222:545;;;:::o;20943:1352::-;21069:3;21063:10;21096:18;21088:6;21085:30;21082:56;;;21118:18;;:::i;:::-;21147:97;21237:6;21197:38;21229:4;21223:11;21197:38;:::i;:::-;21191:4;21147:97;:::i;:::-;21299:4;;21363:2;21352:14;;21380:1;21375:663;;;;22082:1;22099:6;22096:89;;;-1:-1:-1;22151:19:14;;;22145:26;22096:89;-1:-1:-1;;20900:1:14;20896:11;;;20892:24;20888:29;20878:40;20924:1;20920:11;;;20875:57;22198:81;;21345:944;;21375:663;20169:1;20162:14;;;20206:4;20193:18;;-1:-1:-1;;21411:20:14;;;21529:236;21543:7;21540:1;21537:14;21529:236;;;21632:19;;;21626:26;21611:42;;21724:27;;;;21692:1;21680:14;;;;21559:19;;21529:236;;;21533:3;21793:6;21784:7;21781:19;21778:201;;;21854:19;;;21848:26;-1:-1:-1;;21937:1:14;21933:14;;;21949:3;21929:24;21925:37;21921:42;21906:58;21891:74;;21778:201;-1:-1:-1;;;;;22025:1:14;22009:14;;;22005:22;21992:36;;-1:-1:-1;20943:1352:14:o;23121:135::-;23160:3;23181:17;;;23178:43;;23201:18;;:::i;:::-;-1:-1:-1;23248:1:14;23237:13;;23121:135::o;23261:1187::-;23538:3;23567:1;23600:6;23594:13;23630:36;23656:9;23630:36;:::i;:::-;23685:1;23702:18;;;23729:133;;;;23876:1;23871:356;;;;23695:532;;23729:133;-1:-1:-1;;23762:24:14;;23750:37;;23835:14;;23828:22;23816:35;;23807:45;;;-1:-1:-1;23729:133:14;;23871:356;23902:6;23899:1;23892:17;23932:4;23977:2;23974:1;23964:16;24002:1;24016:165;24030:6;24027:1;24024:13;24016:165;;;24108:14;;24095:11;;;24088:35;24151:16;;;;24045:10;;24016:165;;;24020:3;;;24210:6;24205:3;24201:16;24194:23;;23695:532;;;;;24258:6;24252:13;24274:68;24333:8;24328:3;24321:4;24313:6;24309:17;24274:68;:::i;:::-;-1:-1:-1;;;24364:18:14;;24391:22;;;24440:1;24429:13;;23261:1187;-1:-1:-1;;;;23261:1187:14:o;26084:125::-;26149:9;;;26170:10;;;26167:36;;;26183:18;;:::i;26568:414::-;26770:2;26752:21;;;26809:2;26789:18;;;26782:30;26848:34;26843:2;26828:18;;26821:62;-1:-1:-1;;;26914:2:14;26899:18;;26892:48;26972:3;26957:19;;26568:414::o;26987:127::-;27048:10;27043:3;27039:20;27036:1;27029:31;27079:4;27076:1;27069:15;27103:4;27100:1;27093:15;27119:120;27159:1;27185;27175:35;;27190:18;;:::i;:::-;-1:-1:-1;27224:9:14;;27119:120::o;27244:112::-;27276:1;27302;27292:35;;27307:18;;:::i;:::-;-1:-1:-1;27341:9:14;;27244:112::o;27361:489::-;-1:-1:-1;;;;;27630:15:14;;;27612:34;;27682:15;;27677:2;27662:18;;27655:43;27729:2;27714:18;;27707:34;;;27777:3;27772:2;27757:18;;27750:31;;;27555:4;;27798:46;;27824:19;;27816:6;27798:46;:::i;:::-;27790:54;27361:489;-1:-1:-1;;;;;;27361:489:14:o;27855:249::-;27924:6;27977:2;27965:9;27956:7;27952:23;27948:32;27945:52;;;27993:1;27990;27983:12;27945:52;28025:9;28019:16;28044:30;28068:5;28044:30;:::i;28827:127::-;28888:10;28883:3;28879:20;28876:1;28869:31;28919:4;28916:1;28909:15;28943:4;28940:1;28933:15

Swarm Source

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