ETH Price: $2,278.32 (+2.59%)

Token

Delirious Mind Travelers (DMTs)
 

Overview

Max Total Supply

300 DMTs

Holders

227

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
vveecl.eth
Balance
1 DMTs
0x6ddc09c03fc5827bea47ce78401b15374be9f34a
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:
Traveler

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : Traveler.sol
// SPDX-License-Identifier: GPL-3.0
// Modified from: Pagzi Tech Inc. 2021

pragma solidity ^0.8.10;
import "./ERC721Enum.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";

contract Traveler is ERC721Enum, Ownable, ReentrancyGuard {
    using Strings for uint256;
    string public baseURI;
    //sale settings
    uint256 public cost = 0.15 ether;
    uint256 public maxSupply = 300;
    uint256 public maxMint = 1;
    bool public status = false;
    //presale settings
    uint256 public presaleDate = 1642042800;
    mapping(address => uint256) public presaleWhitelist;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI
    )
        ERC721P(_name, _symbol)
    {
        setBaseURI(_initBaseURI);
    }


    // internal
    function _baseURI() internal view virtual returns (string memory) {
        return baseURI;
    }

    // public minting
    function koalaMint(address _sender,uint256 _mintAmount) external payable nonReentrant {
        uint256 s = totalSupply();
        require(status, "Off");
        require(_mintAmount > 0, "Duh");
        require(_mintAmount <= maxMint, "Too many");
        require(s + _mintAmount <= maxSupply, "Sorry");
        require(msg.value >= cost * _mintAmount);
        for (uint256 i = 0; i < _mintAmount; ++i) {
            _safeMint(_sender, s + i, "");
        }
        delete s;
    }
        function koalaPresaleMint(address _sender,uint256 _mintAmount) external payable nonReentrant {
        require(presaleDate <= block.timestamp, "Not yet");
        uint256 s = totalSupply();
        uint256 reserve = presaleWhitelist[_sender];
        require(!status, "Off");
        require(reserve > 0, "Low reserve");
        require(_mintAmount <= reserve, "Try less");
        require(s + _mintAmount <= maxSupply, "More than max");
        require(cost * _mintAmount == msg.value, "Wrong amount");
        presaleWhitelist[_sender] = reserve - _mintAmount;
        delete reserve;
        for (uint256 i = 0; i < _mintAmount; i++) {
            _safeMint(_sender, s + i, "");
        }
        delete s;
    }

    function mint(uint256 _mintAmount) external payable nonReentrant {
        uint256 s = totalSupply();
        require(status, "Off");
        require(_mintAmount > 0, "Duh");
        require(_mintAmount <= maxMint, "Too many");
        require(s + _mintAmount <= maxSupply, "Sorry");
        require(msg.value >= cost * _mintAmount);
        for (uint256 i = 0; i < _mintAmount; ++i) {
            _safeMint(msg.sender, s + i, "");
        }
        delete s;
    }


    function mintPresale(uint256 _mintAmount) external payable {
        require(presaleDate <= block.timestamp, "Not yet");
        uint256 s = totalSupply();
        uint256 reserve = presaleWhitelist[msg.sender];
        require(!status, "Off");
        require(reserve > 0, "Low reserve");
        require(_mintAmount <= reserve, "Try less");
        require(s + _mintAmount <= maxSupply, "More than max");
        require(cost * _mintAmount == msg.value, "Wrong amount");
        presaleWhitelist[msg.sender] = reserve - _mintAmount;
        delete reserve;
        for (uint256 i = 0; i < _mintAmount; i++) {
            _safeMint(msg.sender, s + i, "");
        }
        delete s;
    }

    // admin minting
    function gift(uint256[] calldata quantity, address[] calldata recipient)
        external
        onlyOwner
    {
        require(
            quantity.length == recipient.length,
            "Provide quantities and recipients"
        );
        uint256 totalQuantity = 0;
        uint256 s = totalSupply();

        for (uint256 i = 0; i < quantity.length; ++i) {
            totalQuantity += quantity[i];
        }
        require(s + totalQuantity <= maxSupply, "Too many");
        delete totalQuantity;
        for (uint256 i = 0; i < recipient.length; ++i) {
            for (uint256 j = 0; j < quantity[i]; ++j) {
                _safeMint(recipient[i], s++, "");
            }
        }
        delete s;
    }

    // admin functionality
    function presaleSet(
        address[] calldata _addresses,
        uint256[] calldata _amounts
    ) external onlyOwner {
        for (uint256 i; i < _addresses.length; i++) {
            presaleWhitelist[_addresses[i]] = _amounts[i];
        }
    }


    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(_exists(tokenId), "ERC721Metadata: Nonexistent token");
        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(abi.encodePacked(currentBaseURI, tokenId.toString()))
                : "";
    }

    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    function setMaxMintAmount(uint256 _newMaxMintAmount) public onlyOwner {
        maxMint = _newMaxMintAmount;
    }

    function setmaxSupply(uint256 _newMaxSupply) public onlyOwner {
        maxSupply = _newMaxSupply;
    }

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

    function setSaleStatus(bool _status) public onlyOwner {
        status = _status;
    }

    function withdraw() public payable onlyOwner {
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success);
    }
}

File 2 of 14 : ERC721Enum.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.10;
import "./ERC721P.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";

abstract contract ERC721Enum is ERC721P, IERC721Enumerable {
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(IERC165, ERC721P)
        returns (bool)
    {
        return
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        override
        returns (uint256 tokenId)
    {
        require(index < ERC721P.balanceOf(owner), "ERC721Enum: owner ioob");
        uint256 count;
        for (uint256 i; i < _owners.length; ++i) {
            if (owner == _owners[i]) {
                if (count == index) return i;
                else ++count;
            }
        }
        require(false, "ERC721Enum: owner ioob");
    }

    function tokensOfOwner(address owner)
        public
        view
        returns (uint256[] memory)
    {
        require(0 < ERC721P.balanceOf(owner), "ERC721Enum: owner ioob");
        uint256 tokenCount = balanceOf(owner);
        uint256[] memory tokenIds = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(owner, i);
        }
        return tokenIds;
    }

    function totalSupply() public view virtual override returns (uint256) {
        return _owners.length;
    }

    function tokenByIndex(uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(index < ERC721Enum.totalSupply(), "ERC721Enum: global ioob");
        return index;
    }
}

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

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

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

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

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

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

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

File 4 of 14 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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);
    }
}

File 5 of 14 : ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 6 of 14 : ERC721P.sol
// SPDX-License-Identifier: GPL-3.0
pragma solidity ^0.8.10;
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";

abstract contract ERC721P is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    string private _name;
    string private _symbol;
    address[] internal _owners;
    mapping(uint256 => address) private _tokenApprovals;
    mapping(address => mapping(address => bool)) private _operatorApprovals;     
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }     
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        uint count = 0;
        uint length = _owners.length;
        for( uint i = 0; i < length; ++i ){
          if( owner == _owners[i] ){
            ++count;
          }
        }
        delete length;
        return count;
    }
    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;
    }
    function name() public view virtual override returns (string memory) {
        return _name;
    }
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721P.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);
    }
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }
    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);
    }
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }
    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);
    }     
    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");
    }
	function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return tokenId < _owners.length && _owners[tokenId] != address(0);
    }
	function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721P.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }
	function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }
	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"
        );
    }
	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);
        _owners.push(to);

        emit Transfer(address(0), to, tokenId);
    }
	function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721P.ownerOf(tokenId);

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

        // Clear approvals
        _approve(address(0), tokenId);
        _owners[tokenId] = address(0);

        emit Transfer(owner, address(0), tokenId);
    }
	function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721P.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }
	function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721P.ownerOf(tokenId), to, tokenId);
    }
	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;
        }
    }
	function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 7 of 14 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.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 tokenId);

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

File 8 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/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 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 10 of 14 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @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 12 of 14 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 13 of 14 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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 14 of 14 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (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);
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","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":"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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"quantity","type":"uint256[]"},{"internalType":"address[]","name":"recipient","type":"address[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_sender","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"koalaMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_sender","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"koalaPresaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleDate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"presaleSet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleWhitelist","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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_status","type":"bool"}],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setmaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"status","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"tokenId","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052670214e8348c4f000060085561012c6009556001600a556000600b60006101000a81548160ff0219169083151502179055506361df95b0600c553480156200004b57600080fd5b506040516200560c3803806200560c8339818101604052810190620000719190620004d9565b828281600090805190602001906200008b9291906200028c565b508060019080519060200190620000a49291906200028c565b505050620000c7620000bb620000e960201b60201c565b620000f160201b60201c565b6001600681905550620000e081620001b760201b60201c565b5050506200067a565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620001c7620000e960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620001ed6200026260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000246576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200023d90620005f3565b60405180910390fd5b80600790805190602001906200025e9291906200028c565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200029a9062000644565b90600052602060002090601f016020900481019282620002be57600085556200030a565b82601f10620002d957805160ff19168380011785556200030a565b828001600101855582156200030a579182015b8281111562000309578251825591602001919060010190620002ec565b5b5090506200031991906200031d565b5090565b5b80821115620003385760008160009055506001016200031e565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003a5826200035a565b810181811067ffffffffffffffff82111715620003c757620003c66200036b565b5b80604052505050565b6000620003dc6200033c565b9050620003ea82826200039a565b919050565b600067ffffffffffffffff8211156200040d576200040c6200036b565b5b62000418826200035a565b9050602081019050919050565b60005b838110156200044557808201518184015260208101905062000428565b8381111562000455576000848401525b50505050565b6000620004726200046c84620003ef565b620003d0565b90508281526020810184848401111562000491576200049062000355565b5b6200049e84828562000425565b509392505050565b600082601f830112620004be57620004bd62000350565b5b8151620004d08482602086016200045b565b91505092915050565b600080600060608486031215620004f557620004f462000346565b5b600084015167ffffffffffffffff8111156200051657620005156200034b565b5b6200052486828701620004a6565b935050602084015167ffffffffffffffff8111156200054857620005476200034b565b5b6200055686828701620004a6565b925050604084015167ffffffffffffffff8111156200057a57620005796200034b565b5b6200058886828701620004a6565b9150509250925092565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620005db60208362000592565b9150620005e882620005a3565b602082019050919050565b600060208201905081810360008301526200060e81620005cc565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200065d57607f821691505b6020821081141562000674576200067362000615565b5b50919050565b614f82806200068a6000396000f3fe6080604052600436106102305760003560e01c80636ea7acac1161012e578063a22cb465116100ab578063d897833e1161006f578063d897833e14610803578063e985e9c51461082c578063eb8835ab14610869578063f2fde38b146108a6578063f759867a146108cf57610230565b8063a22cb4651461071e578063b88d4fde14610747578063c87b56dd14610770578063c889004b146107ad578063d5abeb01146107d857610230565b80638462151c116100f25780638462151c146106465780638da5cb5b1461068357806395d89b41146106ae57806396ea3a47146106d9578063a0712d681461070257610230565b80636ea7acac1461058257806370a082311461059e578063715018a6146105db578063732e71ef146105f25780637501f7411461061b57610230565b806323b872dd116101bc57806344a0d68a1161018057806344a0d68a1461048b5780634f6ccce7146104b457806355f804b3146104f15780636352211e1461051a5780636c0360eb1461055757610230565b806323b872dd146103d65780632eb18d74146103ff5780632f745c591461041b5780633ccfd60b1461045857806342842e0e1461046257610230565b8063095ea7b311610203578063095ea7b31461030357806313faede61461032c57806318160ddd14610357578063200d2ed214610382578063228025e8146103ad57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063088a4ed0146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613416565b6108eb565b604051610269919061345e565b60405180910390f35b34801561027e57600080fd5b50610287610965565b6040516102949190613512565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf919061356a565b6109f7565b6040516102d191906135d8565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc919061356a565b610a7c565b005b34801561030f57600080fd5b5061032a6004803603810190610325919061361f565b610b02565b005b34801561033857600080fd5b50610341610c1a565b60405161034e919061366e565b60405180910390f35b34801561036357600080fd5b5061036c610c20565b604051610379919061366e565b60405180910390f35b34801561038e57600080fd5b50610397610c2d565b6040516103a4919061345e565b60405180910390f35b3480156103b957600080fd5b506103d460048036038101906103cf919061356a565b610c40565b005b3480156103e257600080fd5b506103fd60048036038101906103f89190613689565b610cc6565b005b6104196004803603810190610414919061361f565b610d26565b005b34801561042757600080fd5b50610442600480360381019061043d919061361f565b610f14565b60405161044f919061366e565b60405180910390f35b61046061105d565b005b34801561046e57600080fd5b5061048960048036038101906104849190613689565b611152565b005b34801561049757600080fd5b506104b260048036038101906104ad919061356a565b611172565b005b3480156104c057600080fd5b506104db60048036038101906104d6919061356a565b6111f8565b6040516104e8919061366e565b60405180910390f35b3480156104fd57600080fd5b5061051860048036038101906105139190613811565b61124b565b005b34801561052657600080fd5b50610541600480360381019061053c919061356a565b6112e1565b60405161054e91906135d8565b60405180910390f35b34801561056357600080fd5b5061056c61139e565b6040516105799190613512565b60405180910390f35b61059c6004803603810190610597919061361f565b61142c565b005b3480156105aa57600080fd5b506105c560048036038101906105c0919061385a565b61172d565b6040516105d2919061366e565b60405180910390f35b3480156105e757600080fd5b506105f0611853565b005b3480156105fe57600080fd5b506106196004803603810190610614919061393d565b6118db565b005b34801561062757600080fd5b50610630611a03565b60405161063d919061366e565b60405180910390f35b34801561065257600080fd5b5061066d6004803603810190610668919061385a565b611a09565b60405161067a9190613a7c565b60405180910390f35b34801561068f57600080fd5b50610698611b02565b6040516106a591906135d8565b60405180910390f35b3480156106ba57600080fd5b506106c3611b2c565b6040516106d09190613512565b60405180910390f35b3480156106e557600080fd5b5061070060048036038101906106fb9190613a9e565b611bbe565b005b61071c6004803603810190610717919061356a565b611dd9565b005b34801561072a57600080fd5b5061074560048036038101906107409190613b4b565b611fc6565b005b34801561075357600080fd5b5061076e60048036038101906107699190613c2c565b612147565b005b34801561077c57600080fd5b506107976004803603810190610792919061356a565b6121a9565b6040516107a49190613512565b60405180910390f35b3480156107b957600080fd5b506107c2612250565b6040516107cf919061366e565b60405180910390f35b3480156107e457600080fd5b506107ed612256565b6040516107fa919061366e565b60405180910390f35b34801561080f57600080fd5b5061082a60048036038101906108259190613caf565b61225c565b005b34801561083857600080fd5b50610853600480360381019061084e9190613cdc565b6122f5565b604051610860919061345e565b60405180910390f35b34801561087557600080fd5b50610890600480360381019061088b919061385a565b612389565b60405161089d919061366e565b60405180910390f35b3480156108b257600080fd5b506108cd60048036038101906108c8919061385a565b6123a1565b005b6108e960048036038101906108e4919061356a565b612499565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061095e575061095d82612743565b5b9050919050565b60606000805461097490613d4b565b80601f01602080910402602001604051908101604052809291908181526020018280546109a090613d4b565b80156109ed5780601f106109c2576101008083540402835291602001916109ed565b820191906000526020600020905b8154815290600101906020018083116109d057829003601f168201915b5050505050905090565b6000610a0282612825565b610a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3890613def565b60405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610a846128ad565b73ffffffffffffffffffffffffffffffffffffffff16610aa2611b02565b73ffffffffffffffffffffffffffffffffffffffff1614610af8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aef90613e5b565b60405180910390fd5b80600a8190555050565b6000610b0d826112e1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7590613eed565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b9d6128ad565b73ffffffffffffffffffffffffffffffffffffffff161480610bcc5750610bcb81610bc66128ad565b6122f5565b5b610c0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0290613f7f565b60405180910390fd5b610c1583836128b5565b505050565b60085481565b6000600280549050905090565b600b60009054906101000a900460ff1681565b610c486128ad565b73ffffffffffffffffffffffffffffffffffffffff16610c66611b02565b73ffffffffffffffffffffffffffffffffffffffff1614610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb390613e5b565b60405180910390fd5b8060098190555050565b610cd7610cd16128ad565b8261296e565b610d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0d90614011565b60405180910390fd5b610d21838383612a4c565b505050565b60026006541415610d6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d639061407d565b60405180910390fd5b60026006819055506000610d7e610c20565b9050600b60009054906101000a900460ff16610dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc6906140e9565b60405180910390fd5b60008211610e12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0990614155565b60405180910390fd5b600a54821115610e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4e906141c1565b60405180910390fd5b6009548282610e669190614210565b1115610ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9e906142b2565b60405180910390fd5b81600854610eb591906142d2565b341015610ec157600080fd5b60005b82811015610f0257610ef1848284610edc9190614210565b60405180602001604052806000815250612c05565b80610efb9061432c565b9050610ec4565b50600090505060016006819055505050565b6000610f1f8361172d565b8210610f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f57906143c1565b60405180910390fd5b6000805b6002805490508110156110135760028181548110610f8557610f846143e1565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156110025783821415610ff5578092505050611057565b81610fff9061432c565b91505b8061100c9061432c565b9050610f64565b506000611055576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104c906143c1565b60405180910390fd5b505b92915050565b6110656128ad565b73ffffffffffffffffffffffffffffffffffffffff16611083611b02565b73ffffffffffffffffffffffffffffffffffffffff16146110d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d090613e5b565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16476040516110ff90614441565b60006040518083038185875af1925050503d806000811461113c576040519150601f19603f3d011682016040523d82523d6000602084013e611141565b606091505b505090508061114f57600080fd5b50565b61116d83838360405180602001604052806000815250612147565b505050565b61117a6128ad565b73ffffffffffffffffffffffffffffffffffffffff16611198611b02565b73ffffffffffffffffffffffffffffffffffffffff16146111ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e590613e5b565b60405180910390fd5b8060088190555050565b6000611202610c20565b8210611243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123a906144a2565b60405180910390fd5b819050919050565b6112536128ad565b73ffffffffffffffffffffffffffffffffffffffff16611271611b02565b73ffffffffffffffffffffffffffffffffffffffff16146112c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112be90613e5b565b60405180910390fd5b80600790805190602001906112dd929190613307565b5050565b600080600283815481106112f8576112f76143e1565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138c90614534565b60405180910390fd5b80915050919050565b600780546113ab90613d4b565b80601f01602080910402602001604051908101604052809291908181526020018280546113d790613d4b565b80156114245780601f106113f957610100808354040283529160200191611424565b820191906000526020600020905b81548152906001019060200180831161140757829003601f168201915b505050505081565b60026006541415611472576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114699061407d565b60405180910390fd5b600260068190555042600c5411156114bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b6906145a0565b60405180910390fd5b60006114c9610c20565b90506000600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600b60009054906101000a900460ff161561155f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611556906140e9565b60405180910390fd5b600081116115a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115999061460c565b60405180910390fd5b808311156115e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dc90614678565b60405180910390fd5b60095483836115f49190614210565b1115611635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162c906146e4565b60405180910390fd5b348360085461164491906142d2565b14611684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167b90614750565b60405180910390fd5b82816116909190614770565b600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000905060005b8381101561171a576117078582856116f29190614210565b60405180602001604052806000815250612c05565b80806117129061432c565b9150506116da565b5060009150505060016006819055505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561179e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179590614816565b60405180910390fd5b600080600280549050905060005b8181101561184457600281815481106117c8576117c76143e1565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561183357826118309061432c565b92505b8061183d9061432c565b90506117ac565b50600090508192505050919050565b61185b6128ad565b73ffffffffffffffffffffffffffffffffffffffff16611879611b02565b73ffffffffffffffffffffffffffffffffffffffff16146118cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c690613e5b565b60405180910390fd5b6118d96000612c60565b565b6118e36128ad565b73ffffffffffffffffffffffffffffffffffffffff16611901611b02565b73ffffffffffffffffffffffffffffffffffffffff1614611957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194e90613e5b565b60405180910390fd5b60005b848490508110156119fc57828282818110611978576119776143e1565b5b90506020020135600d6000878785818110611996576119956143e1565b5b90506020020160208101906119ab919061385a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806119f49061432c565b91505061195a565b5050505050565b600a5481565b6060611a148261172d565b600010611a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4d906143c1565b60405180910390fd5b6000611a618361172d565b905060008167ffffffffffffffff811115611a7f57611a7e6136e6565b5b604051908082528060200260200182016040528015611aad5781602001602082028036833780820191505090505b50905060005b82811015611af757611ac58582610f14565b828281518110611ad857611ad76143e1565b5b6020026020010181815250508080611aef9061432c565b915050611ab3565b508092505050919050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611b3b90613d4b565b80601f0160208091040260200160405190810160405280929190818152602001828054611b6790613d4b565b8015611bb45780601f10611b8957610100808354040283529160200191611bb4565b820191906000526020600020905b815481529060010190602001808311611b9757829003601f168201915b5050505050905090565b611bc66128ad565b73ffffffffffffffffffffffffffffffffffffffff16611be4611b02565b73ffffffffffffffffffffffffffffffffffffffff1614611c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3190613e5b565b60405180910390fd5b818190508484905014611c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c79906148a8565b60405180910390fd5b600080611c8d610c20565b905060005b86869050811015611cd557868682818110611cb057611caf6143e1565b5b9050602002013583611cc29190614210565b925080611cce9061432c565b9050611c92565b506009548282611ce59190614210565b1115611d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1d906141c1565b60405180910390fd5b6000915060005b84849050811015611dcc5760005b878783818110611d4e57611d4d6143e1565b5b90506020020135811015611dba57611da9868684818110611d7257611d716143e1565b5b9050602002016020810190611d87919061385a565b8480611d929061432c565b955060405180602001604052806000815250612c05565b80611db39061432c565b9050611d3b565b5080611dc59061432c565b9050611d2d565b5060009050505050505050565b60026006541415611e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e169061407d565b60405180910390fd5b60026006819055506000611e31610c20565b9050600b60009054906101000a900460ff16611e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e79906140e9565b60405180910390fd5b60008211611ec5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebc90614155565b60405180910390fd5b600a54821115611f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f01906141c1565b60405180910390fd5b6009548282611f199190614210565b1115611f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f51906142b2565b60405180910390fd5b81600854611f6891906142d2565b341015611f7457600080fd5b60005b82811015611fb557611fa4338284611f8f9190614210565b60405180602001604052806000815250612c05565b80611fae9061432c565b9050611f77565b506000905050600160068190555050565b611fce6128ad565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561203c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203390614914565b60405180910390fd5b80600460006120496128ad565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166120f66128ad565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161213b919061345e565b60405180910390a35050565b6121586121526128ad565b8361296e565b612197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218e90614011565b60405180910390fd5b6121a384848484612d26565b50505050565b60606121b482612825565b6121f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ea906149a6565b60405180910390fd5b60006121fd612d82565b9050600081511161221d5760405180602001604052806000815250612248565b8061222784612e14565b604051602001612238929190614a02565b6040516020818303038152906040525b915050919050565b600c5481565b60095481565b6122646128ad565b73ffffffffffffffffffffffffffffffffffffffff16612282611b02565b73ffffffffffffffffffffffffffffffffffffffff16146122d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cf90613e5b565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d6020528060005260406000206000915090505481565b6123a96128ad565b73ffffffffffffffffffffffffffffffffffffffff166123c7611b02565b73ffffffffffffffffffffffffffffffffffffffff161461241d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241490613e5b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561248d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248490614a98565b60405180910390fd5b61249681612c60565b50565b42600c5411156124de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d5906145a0565b60405180910390fd5b60006124e8610c20565b90506000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600b60009054906101000a900460ff161561257e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612575906140e9565b60405180910390fd5b600081116125c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b89061460c565b60405180910390fd5b80831115612604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fb90614678565b60405180910390fd5b60095483836126139190614210565b1115612654576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264b906146e4565b60405180910390fd5b348360085461266391906142d2565b146126a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269a90614750565b60405180910390fd5b82816126af9190614770565b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000905060005b83811015612739576127263382856127119190614210565b60405180602001604052806000815250612c05565b80806127319061432c565b9150506126f9565b5060009150505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061280e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061281e575061281d82612f75565b5b9050919050565b6000600280549050821080156128a65750600073ffffffffffffffffffffffffffffffffffffffff1660028381548110612862576128616143e1565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b600033905090565b816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612928836112e1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061297982612825565b6129b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129af90614b2a565b60405180910390fd5b60006129c3836112e1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612a3257508373ffffffffffffffffffffffffffffffffffffffff16612a1a846109f7565b73ffffffffffffffffffffffffffffffffffffffff16145b80612a435750612a4281856122f5565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612a6c826112e1565b73ffffffffffffffffffffffffffffffffffffffff1614612ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab990614bbc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2990614c4e565b60405180910390fd5b612b3d838383612fdf565b612b486000826128b5565b8160028281548110612b5d57612b5c6143e1565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612c0f8383612fe4565b612c1c600084848461316c565b612c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5290614ce0565b60405180910390fd5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612d31848484612a4c565b612d3d8484848461316c565b612d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7390614ce0565b60405180910390fd5b50505050565b606060078054612d9190613d4b565b80601f0160208091040260200160405190810160405280929190818152602001828054612dbd90613d4b565b8015612e0a5780601f10612ddf57610100808354040283529160200191612e0a565b820191906000526020600020905b815481529060010190602001808311612ded57829003601f168201915b5050505050905090565b60606000821415612e5c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f70565b600082905060005b60008214612e8e578080612e779061432c565b915050600a82612e879190614d2f565b9150612e64565b60008167ffffffffffffffff811115612eaa57612ea96136e6565b5b6040519080825280601f01601f191660200182016040528015612edc5781602001600182028036833780820191505090505b5090505b60008514612f6957600182612ef59190614770565b9150600a85612f049190614d60565b6030612f109190614210565b60f81b818381518110612f2657612f256143e1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f629190614d2f565b9450612ee0565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613054576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161304b90614ddd565b60405180910390fd5b61305d81612825565b1561309d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309490614e49565b60405180910390fd5b6130a960008383612fdf565b6002829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600061318d8473ffffffffffffffffffffffffffffffffffffffff166132f4565b156132e7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026131b66128ad565b8786866040518563ffffffff1660e01b81526004016131d89493929190614ebe565b6020604051808303816000875af192505050801561321457506040513d601f19601f820116820180604052508101906132119190614f1f565b60015b613297573d8060008114613244576040519150601f19603f3d011682016040523d82523d6000602084013e613249565b606091505b5060008151141561328f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328690614ce0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506132ec565b600190505b949350505050565b600080823b905060008111915050919050565b82805461331390613d4b565b90600052602060002090601f016020900481019282613335576000855561337c565b82601f1061334e57805160ff191683800117855561337c565b8280016001018555821561337c579182015b8281111561337b578251825591602001919060010190613360565b5b509050613389919061338d565b5090565b5b808211156133a657600081600090555060010161338e565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6133f3816133be565b81146133fe57600080fd5b50565b600081359050613410816133ea565b92915050565b60006020828403121561342c5761342b6133b4565b5b600061343a84828501613401565b91505092915050565b60008115159050919050565b61345881613443565b82525050565b6000602082019050613473600083018461344f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156134b3578082015181840152602081019050613498565b838111156134c2576000848401525b50505050565b6000601f19601f8301169050919050565b60006134e482613479565b6134ee8185613484565b93506134fe818560208601613495565b613507816134c8565b840191505092915050565b6000602082019050818103600083015261352c81846134d9565b905092915050565b6000819050919050565b61354781613534565b811461355257600080fd5b50565b6000813590506135648161353e565b92915050565b6000602082840312156135805761357f6133b4565b5b600061358e84828501613555565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006135c282613597565b9050919050565b6135d2816135b7565b82525050565b60006020820190506135ed60008301846135c9565b92915050565b6135fc816135b7565b811461360757600080fd5b50565b600081359050613619816135f3565b92915050565b60008060408385031215613636576136356133b4565b5b60006136448582860161360a565b925050602061365585828601613555565b9150509250929050565b61366881613534565b82525050565b6000602082019050613683600083018461365f565b92915050565b6000806000606084860312156136a2576136a16133b4565b5b60006136b08682870161360a565b93505060206136c18682870161360a565b92505060406136d286828701613555565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61371e826134c8565b810181811067ffffffffffffffff8211171561373d5761373c6136e6565b5b80604052505050565b60006137506133aa565b905061375c8282613715565b919050565b600067ffffffffffffffff82111561377c5761377b6136e6565b5b613785826134c8565b9050602081019050919050565b82818337600083830152505050565b60006137b46137af84613761565b613746565b9050828152602081018484840111156137d0576137cf6136e1565b5b6137db848285613792565b509392505050565b600082601f8301126137f8576137f76136dc565b5b81356138088482602086016137a1565b91505092915050565b600060208284031215613827576138266133b4565b5b600082013567ffffffffffffffff811115613845576138446133b9565b5b613851848285016137e3565b91505092915050565b6000602082840312156138705761386f6133b4565b5b600061387e8482850161360a565b91505092915050565b600080fd5b600080fd5b60008083601f8401126138a7576138a66136dc565b5b8235905067ffffffffffffffff8111156138c4576138c3613887565b5b6020830191508360208202830111156138e0576138df61388c565b5b9250929050565b60008083601f8401126138fd576138fc6136dc565b5b8235905067ffffffffffffffff81111561391a57613919613887565b5b6020830191508360208202830111156139365761393561388c565b5b9250929050565b60008060008060408587031215613957576139566133b4565b5b600085013567ffffffffffffffff811115613975576139746133b9565b5b61398187828801613891565b9450945050602085013567ffffffffffffffff8111156139a4576139a36133b9565b5b6139b0878288016138e7565b925092505092959194509250565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6139f381613534565b82525050565b6000613a0583836139ea565b60208301905092915050565b6000602082019050919050565b6000613a29826139be565b613a3381856139c9565b9350613a3e836139da565b8060005b83811015613a6f578151613a5688826139f9565b9750613a6183613a11565b925050600181019050613a42565b5085935050505092915050565b60006020820190508181036000830152613a968184613a1e565b905092915050565b60008060008060408587031215613ab857613ab76133b4565b5b600085013567ffffffffffffffff811115613ad657613ad56133b9565b5b613ae2878288016138e7565b9450945050602085013567ffffffffffffffff811115613b0557613b046133b9565b5b613b1187828801613891565b925092505092959194509250565b613b2881613443565b8114613b3357600080fd5b50565b600081359050613b4581613b1f565b92915050565b60008060408385031215613b6257613b616133b4565b5b6000613b708582860161360a565b9250506020613b8185828601613b36565b9150509250929050565b600067ffffffffffffffff821115613ba657613ba56136e6565b5b613baf826134c8565b9050602081019050919050565b6000613bcf613bca84613b8b565b613746565b905082815260208101848484011115613beb57613bea6136e1565b5b613bf6848285613792565b509392505050565b600082601f830112613c1357613c126136dc565b5b8135613c23848260208601613bbc565b91505092915050565b60008060008060808587031215613c4657613c456133b4565b5b6000613c548782880161360a565b9450506020613c658782880161360a565b9350506040613c7687828801613555565b925050606085013567ffffffffffffffff811115613c9757613c966133b9565b5b613ca387828801613bfe565b91505092959194509250565b600060208284031215613cc557613cc46133b4565b5b6000613cd384828501613b36565b91505092915050565b60008060408385031215613cf357613cf26133b4565b5b6000613d018582860161360a565b9250506020613d128582860161360a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d6357607f821691505b60208210811415613d7757613d76613d1c565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613dd9602c83613484565b9150613de482613d7d565b604082019050919050565b60006020820190508181036000830152613e0881613dcc565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613e45602083613484565b9150613e5082613e0f565b602082019050919050565b60006020820190508181036000830152613e7481613e38565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ed7602183613484565b9150613ee282613e7b565b604082019050919050565b60006020820190508181036000830152613f0681613eca565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613f69603883613484565b9150613f7482613f0d565b604082019050919050565b60006020820190508181036000830152613f9881613f5c565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613ffb603183613484565b915061400682613f9f565b604082019050919050565b6000602082019050818103600083015261402a81613fee565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614067601f83613484565b915061407282614031565b602082019050919050565b600060208201905081810360008301526140968161405a565b9050919050565b7f4f66660000000000000000000000000000000000000000000000000000000000600082015250565b60006140d3600383613484565b91506140de8261409d565b602082019050919050565b60006020820190508181036000830152614102816140c6565b9050919050565b7f4475680000000000000000000000000000000000000000000000000000000000600082015250565b600061413f600383613484565b915061414a82614109565b602082019050919050565b6000602082019050818103600083015261416e81614132565b9050919050565b7f546f6f206d616e79000000000000000000000000000000000000000000000000600082015250565b60006141ab600883613484565b91506141b682614175565b602082019050919050565b600060208201905081810360008301526141da8161419e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061421b82613534565b915061422683613534565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561425b5761425a6141e1565b5b828201905092915050565b7f536f727279000000000000000000000000000000000000000000000000000000600082015250565b600061429c600583613484565b91506142a782614266565b602082019050919050565b600060208201905081810360008301526142cb8161428f565b9050919050565b60006142dd82613534565b91506142e883613534565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614321576143206141e1565b5b828202905092915050565b600061433782613534565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561436a576143696141e1565b5b600182019050919050565b7f455243373231456e756d3a206f776e657220696f6f6200000000000000000000600082015250565b60006143ab601683613484565b91506143b682614375565b602082019050919050565b600060208201905081810360008301526143da8161439e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081905092915050565b50565b600061442b600083614410565b91506144368261441b565b600082019050919050565b600061444c8261441e565b9150819050919050565b7f455243373231456e756d3a20676c6f62616c20696f6f62000000000000000000600082015250565b600061448c601783613484565b915061449782614456565b602082019050919050565b600060208201905081810360008301526144bb8161447f565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b600061451e602983613484565b9150614529826144c2565b604082019050919050565b6000602082019050818103600083015261454d81614511565b9050919050565b7f4e6f742079657400000000000000000000000000000000000000000000000000600082015250565b600061458a600783613484565b915061459582614554565b602082019050919050565b600060208201905081810360008301526145b98161457d565b9050919050565b7f4c6f772072657365727665000000000000000000000000000000000000000000600082015250565b60006145f6600b83613484565b9150614601826145c0565b602082019050919050565b60006020820190508181036000830152614625816145e9565b9050919050565b7f547279206c657373000000000000000000000000000000000000000000000000600082015250565b6000614662600883613484565b915061466d8261462c565b602082019050919050565b6000602082019050818103600083015261469181614655565b9050919050565b7f4d6f7265207468616e206d617800000000000000000000000000000000000000600082015250565b60006146ce600d83613484565b91506146d982614698565b602082019050919050565b600060208201905081810360008301526146fd816146c1565b9050919050565b7f57726f6e6720616d6f756e740000000000000000000000000000000000000000600082015250565b600061473a600c83613484565b915061474582614704565b602082019050919050565b600060208201905081810360008301526147698161472d565b9050919050565b600061477b82613534565b915061478683613534565b925082821015614799576147986141e1565b5b828203905092915050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614800602a83613484565b915061480b826147a4565b604082019050919050565b6000602082019050818103600083015261482f816147f3565b9050919050565b7f50726f76696465207175616e74697469657320616e6420726563697069656e7460008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614892602183613484565b915061489d82614836565b604082019050919050565b600060208201905081810360008301526148c181614885565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006148fe601983613484565b9150614909826148c8565b602082019050919050565b6000602082019050818103600083015261492d816148f1565b9050919050565b7f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b6560008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b6000614990602183613484565b915061499b82614934565b604082019050919050565b600060208201905081810360008301526149bf81614983565b9050919050565b600081905092915050565b60006149dc82613479565b6149e681856149c6565b93506149f6818560208601613495565b80840191505092915050565b6000614a0e82856149d1565b9150614a1a82846149d1565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614a82602683613484565b9150614a8d82614a26565b604082019050919050565b60006020820190508181036000830152614ab181614a75565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614b14602c83613484565b9150614b1f82614ab8565b604082019050919050565b60006020820190508181036000830152614b4381614b07565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000614ba6602983613484565b9150614bb182614b4a565b604082019050919050565b60006020820190508181036000830152614bd581614b99565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614c38602483613484565b9150614c4382614bdc565b604082019050919050565b60006020820190508181036000830152614c6781614c2b565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614cca603283613484565b9150614cd582614c6e565b604082019050919050565b60006020820190508181036000830152614cf981614cbd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614d3a82613534565b9150614d4583613534565b925082614d5557614d54614d00565b5b828204905092915050565b6000614d6b82613534565b9150614d7683613534565b925082614d8657614d85614d00565b5b828206905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614dc7602083613484565b9150614dd282614d91565b602082019050919050565b60006020820190508181036000830152614df681614dba565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614e33601c83613484565b9150614e3e82614dfd565b602082019050919050565b60006020820190508181036000830152614e6281614e26565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614e9082614e69565b614e9a8185614e74565b9350614eaa818560208601613495565b614eb3816134c8565b840191505092915050565b6000608082019050614ed360008301876135c9565b614ee060208301866135c9565b614eed604083018561365f565b8181036060830152614eff8184614e85565b905095945050505050565b600081519050614f19816133ea565b92915050565b600060208284031215614f3557614f346133b4565b5b6000614f4384828501614f0a565b9150509291505056fea2646970667358221220732d1f61c2e78f9f6575a5e5e0880c0575ec56fbf4f1cb403d57cc044a91cbd464736f6c634300080a0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001844656c6972696f7573204d696e642054726176656c65727300000000000000000000000000000000000000000000000000000000000000000000000000000004444d547300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005768747470733a2f2f6f6479737365796c6162732e6d7970696e6174612e636c6f75642f697066732f516d64714b34336f7a57433947665077526177323665737434336531364871574a4b41526d656a6f56714a5674572f000000000000000000

Deployed Bytecode

0x6080604052600436106102305760003560e01c80636ea7acac1161012e578063a22cb465116100ab578063d897833e1161006f578063d897833e14610803578063e985e9c51461082c578063eb8835ab14610869578063f2fde38b146108a6578063f759867a146108cf57610230565b8063a22cb4651461071e578063b88d4fde14610747578063c87b56dd14610770578063c889004b146107ad578063d5abeb01146107d857610230565b80638462151c116100f25780638462151c146106465780638da5cb5b1461068357806395d89b41146106ae57806396ea3a47146106d9578063a0712d681461070257610230565b80636ea7acac1461058257806370a082311461059e578063715018a6146105db578063732e71ef146105f25780637501f7411461061b57610230565b806323b872dd116101bc57806344a0d68a1161018057806344a0d68a1461048b5780634f6ccce7146104b457806355f804b3146104f15780636352211e1461051a5780636c0360eb1461055757610230565b806323b872dd146103d65780632eb18d74146103ff5780632f745c591461041b5780633ccfd60b1461045857806342842e0e1461046257610230565b8063095ea7b311610203578063095ea7b31461030357806313faede61461032c57806318160ddd14610357578063200d2ed214610382578063228025e8146103ad57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063088a4ed0146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613416565b6108eb565b604051610269919061345e565b60405180910390f35b34801561027e57600080fd5b50610287610965565b6040516102949190613512565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf919061356a565b6109f7565b6040516102d191906135d8565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc919061356a565b610a7c565b005b34801561030f57600080fd5b5061032a6004803603810190610325919061361f565b610b02565b005b34801561033857600080fd5b50610341610c1a565b60405161034e919061366e565b60405180910390f35b34801561036357600080fd5b5061036c610c20565b604051610379919061366e565b60405180910390f35b34801561038e57600080fd5b50610397610c2d565b6040516103a4919061345e565b60405180910390f35b3480156103b957600080fd5b506103d460048036038101906103cf919061356a565b610c40565b005b3480156103e257600080fd5b506103fd60048036038101906103f89190613689565b610cc6565b005b6104196004803603810190610414919061361f565b610d26565b005b34801561042757600080fd5b50610442600480360381019061043d919061361f565b610f14565b60405161044f919061366e565b60405180910390f35b61046061105d565b005b34801561046e57600080fd5b5061048960048036038101906104849190613689565b611152565b005b34801561049757600080fd5b506104b260048036038101906104ad919061356a565b611172565b005b3480156104c057600080fd5b506104db60048036038101906104d6919061356a565b6111f8565b6040516104e8919061366e565b60405180910390f35b3480156104fd57600080fd5b5061051860048036038101906105139190613811565b61124b565b005b34801561052657600080fd5b50610541600480360381019061053c919061356a565b6112e1565b60405161054e91906135d8565b60405180910390f35b34801561056357600080fd5b5061056c61139e565b6040516105799190613512565b60405180910390f35b61059c6004803603810190610597919061361f565b61142c565b005b3480156105aa57600080fd5b506105c560048036038101906105c0919061385a565b61172d565b6040516105d2919061366e565b60405180910390f35b3480156105e757600080fd5b506105f0611853565b005b3480156105fe57600080fd5b506106196004803603810190610614919061393d565b6118db565b005b34801561062757600080fd5b50610630611a03565b60405161063d919061366e565b60405180910390f35b34801561065257600080fd5b5061066d6004803603810190610668919061385a565b611a09565b60405161067a9190613a7c565b60405180910390f35b34801561068f57600080fd5b50610698611b02565b6040516106a591906135d8565b60405180910390f35b3480156106ba57600080fd5b506106c3611b2c565b6040516106d09190613512565b60405180910390f35b3480156106e557600080fd5b5061070060048036038101906106fb9190613a9e565b611bbe565b005b61071c6004803603810190610717919061356a565b611dd9565b005b34801561072a57600080fd5b5061074560048036038101906107409190613b4b565b611fc6565b005b34801561075357600080fd5b5061076e60048036038101906107699190613c2c565b612147565b005b34801561077c57600080fd5b506107976004803603810190610792919061356a565b6121a9565b6040516107a49190613512565b60405180910390f35b3480156107b957600080fd5b506107c2612250565b6040516107cf919061366e565b60405180910390f35b3480156107e457600080fd5b506107ed612256565b6040516107fa919061366e565b60405180910390f35b34801561080f57600080fd5b5061082a60048036038101906108259190613caf565b61225c565b005b34801561083857600080fd5b50610853600480360381019061084e9190613cdc565b6122f5565b604051610860919061345e565b60405180910390f35b34801561087557600080fd5b50610890600480360381019061088b919061385a565b612389565b60405161089d919061366e565b60405180910390f35b3480156108b257600080fd5b506108cd60048036038101906108c8919061385a565b6123a1565b005b6108e960048036038101906108e4919061356a565b612499565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061095e575061095d82612743565b5b9050919050565b60606000805461097490613d4b565b80601f01602080910402602001604051908101604052809291908181526020018280546109a090613d4b565b80156109ed5780601f106109c2576101008083540402835291602001916109ed565b820191906000526020600020905b8154815290600101906020018083116109d057829003601f168201915b5050505050905090565b6000610a0282612825565b610a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3890613def565b60405180910390fd5b6003600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610a846128ad565b73ffffffffffffffffffffffffffffffffffffffff16610aa2611b02565b73ffffffffffffffffffffffffffffffffffffffff1614610af8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aef90613e5b565b60405180910390fd5b80600a8190555050565b6000610b0d826112e1565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7590613eed565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b9d6128ad565b73ffffffffffffffffffffffffffffffffffffffff161480610bcc5750610bcb81610bc66128ad565b6122f5565b5b610c0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0290613f7f565b60405180910390fd5b610c1583836128b5565b505050565b60085481565b6000600280549050905090565b600b60009054906101000a900460ff1681565b610c486128ad565b73ffffffffffffffffffffffffffffffffffffffff16610c66611b02565b73ffffffffffffffffffffffffffffffffffffffff1614610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb390613e5b565b60405180910390fd5b8060098190555050565b610cd7610cd16128ad565b8261296e565b610d16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0d90614011565b60405180910390fd5b610d21838383612a4c565b505050565b60026006541415610d6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d639061407d565b60405180910390fd5b60026006819055506000610d7e610c20565b9050600b60009054906101000a900460ff16610dcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc6906140e9565b60405180910390fd5b60008211610e12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0990614155565b60405180910390fd5b600a54821115610e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4e906141c1565b60405180910390fd5b6009548282610e669190614210565b1115610ea7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9e906142b2565b60405180910390fd5b81600854610eb591906142d2565b341015610ec157600080fd5b60005b82811015610f0257610ef1848284610edc9190614210565b60405180602001604052806000815250612c05565b80610efb9061432c565b9050610ec4565b50600090505060016006819055505050565b6000610f1f8361172d565b8210610f60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f57906143c1565b60405180910390fd5b6000805b6002805490508110156110135760028181548110610f8557610f846143e1565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156110025783821415610ff5578092505050611057565b81610fff9061432c565b91505b8061100c9061432c565b9050610f64565b506000611055576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104c906143c1565b60405180910390fd5b505b92915050565b6110656128ad565b73ffffffffffffffffffffffffffffffffffffffff16611083611b02565b73ffffffffffffffffffffffffffffffffffffffff16146110d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d090613e5b565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16476040516110ff90614441565b60006040518083038185875af1925050503d806000811461113c576040519150601f19603f3d011682016040523d82523d6000602084013e611141565b606091505b505090508061114f57600080fd5b50565b61116d83838360405180602001604052806000815250612147565b505050565b61117a6128ad565b73ffffffffffffffffffffffffffffffffffffffff16611198611b02565b73ffffffffffffffffffffffffffffffffffffffff16146111ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e590613e5b565b60405180910390fd5b8060088190555050565b6000611202610c20565b8210611243576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123a906144a2565b60405180910390fd5b819050919050565b6112536128ad565b73ffffffffffffffffffffffffffffffffffffffff16611271611b02565b73ffffffffffffffffffffffffffffffffffffffff16146112c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112be90613e5b565b60405180910390fd5b80600790805190602001906112dd929190613307565b5050565b600080600283815481106112f8576112f76143e1565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138c90614534565b60405180910390fd5b80915050919050565b600780546113ab90613d4b565b80601f01602080910402602001604051908101604052809291908181526020018280546113d790613d4b565b80156114245780601f106113f957610100808354040283529160200191611424565b820191906000526020600020905b81548152906001019060200180831161140757829003601f168201915b505050505081565b60026006541415611472576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114699061407d565b60405180910390fd5b600260068190555042600c5411156114bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b6906145a0565b60405180910390fd5b60006114c9610c20565b90506000600d60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600b60009054906101000a900460ff161561155f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611556906140e9565b60405180910390fd5b600081116115a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115999061460c565b60405180910390fd5b808311156115e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115dc90614678565b60405180910390fd5b60095483836115f49190614210565b1115611635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162c906146e4565b60405180910390fd5b348360085461164491906142d2565b14611684576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167b90614750565b60405180910390fd5b82816116909190614770565b600d60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000905060005b8381101561171a576117078582856116f29190614210565b60405180602001604052806000815250612c05565b80806117129061432c565b9150506116da565b5060009150505060016006819055505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561179e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179590614816565b60405180910390fd5b600080600280549050905060005b8181101561184457600281815481106117c8576117c76143e1565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561183357826118309061432c565b92505b8061183d9061432c565b90506117ac565b50600090508192505050919050565b61185b6128ad565b73ffffffffffffffffffffffffffffffffffffffff16611879611b02565b73ffffffffffffffffffffffffffffffffffffffff16146118cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c690613e5b565b60405180910390fd5b6118d96000612c60565b565b6118e36128ad565b73ffffffffffffffffffffffffffffffffffffffff16611901611b02565b73ffffffffffffffffffffffffffffffffffffffff1614611957576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194e90613e5b565b60405180910390fd5b60005b848490508110156119fc57828282818110611978576119776143e1565b5b90506020020135600d6000878785818110611996576119956143e1565b5b90506020020160208101906119ab919061385a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080806119f49061432c565b91505061195a565b5050505050565b600a5481565b6060611a148261172d565b600010611a56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4d906143c1565b60405180910390fd5b6000611a618361172d565b905060008167ffffffffffffffff811115611a7f57611a7e6136e6565b5b604051908082528060200260200182016040528015611aad5781602001602082028036833780820191505090505b50905060005b82811015611af757611ac58582610f14565b828281518110611ad857611ad76143e1565b5b6020026020010181815250508080611aef9061432c565b915050611ab3565b508092505050919050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054611b3b90613d4b565b80601f0160208091040260200160405190810160405280929190818152602001828054611b6790613d4b565b8015611bb45780601f10611b8957610100808354040283529160200191611bb4565b820191906000526020600020905b815481529060010190602001808311611b9757829003601f168201915b5050505050905090565b611bc66128ad565b73ffffffffffffffffffffffffffffffffffffffff16611be4611b02565b73ffffffffffffffffffffffffffffffffffffffff1614611c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3190613e5b565b60405180910390fd5b818190508484905014611c82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c79906148a8565b60405180910390fd5b600080611c8d610c20565b905060005b86869050811015611cd557868682818110611cb057611caf6143e1565b5b9050602002013583611cc29190614210565b925080611cce9061432c565b9050611c92565b506009548282611ce59190614210565b1115611d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1d906141c1565b60405180910390fd5b6000915060005b84849050811015611dcc5760005b878783818110611d4e57611d4d6143e1565b5b90506020020135811015611dba57611da9868684818110611d7257611d716143e1565b5b9050602002016020810190611d87919061385a565b8480611d929061432c565b955060405180602001604052806000815250612c05565b80611db39061432c565b9050611d3b565b5080611dc59061432c565b9050611d2d565b5060009050505050505050565b60026006541415611e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e169061407d565b60405180910390fd5b60026006819055506000611e31610c20565b9050600b60009054906101000a900460ff16611e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e79906140e9565b60405180910390fd5b60008211611ec5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ebc90614155565b60405180910390fd5b600a54821115611f0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f01906141c1565b60405180910390fd5b6009548282611f199190614210565b1115611f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f51906142b2565b60405180910390fd5b81600854611f6891906142d2565b341015611f7457600080fd5b60005b82811015611fb557611fa4338284611f8f9190614210565b60405180602001604052806000815250612c05565b80611fae9061432c565b9050611f77565b506000905050600160068190555050565b611fce6128ad565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561203c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203390614914565b60405180910390fd5b80600460006120496128ad565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166120f66128ad565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161213b919061345e565b60405180910390a35050565b6121586121526128ad565b8361296e565b612197576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218e90614011565b60405180910390fd5b6121a384848484612d26565b50505050565b60606121b482612825565b6121f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ea906149a6565b60405180910390fd5b60006121fd612d82565b9050600081511161221d5760405180602001604052806000815250612248565b8061222784612e14565b604051602001612238929190614a02565b6040516020818303038152906040525b915050919050565b600c5481565b60095481565b6122646128ad565b73ffffffffffffffffffffffffffffffffffffffff16612282611b02565b73ffffffffffffffffffffffffffffffffffffffff16146122d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122cf90613e5b565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d6020528060005260406000206000915090505481565b6123a96128ad565b73ffffffffffffffffffffffffffffffffffffffff166123c7611b02565b73ffffffffffffffffffffffffffffffffffffffff161461241d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241490613e5b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561248d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248490614a98565b60405180910390fd5b61249681612c60565b50565b42600c5411156124de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d5906145a0565b60405180910390fd5b60006124e8610c20565b90506000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600b60009054906101000a900460ff161561257e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612575906140e9565b60405180910390fd5b600081116125c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b89061460c565b60405180910390fd5b80831115612604576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125fb90614678565b60405180910390fd5b60095483836126139190614210565b1115612654576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264b906146e4565b60405180910390fd5b348360085461266391906142d2565b146126a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269a90614750565b60405180910390fd5b82816126af9190614770565b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000905060005b83811015612739576127263382856127119190614210565b60405180602001604052806000815250612c05565b80806127319061432c565b9150506126f9565b5060009150505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061280e57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061281e575061281d82612f75565b5b9050919050565b6000600280549050821080156128a65750600073ffffffffffffffffffffffffffffffffffffffff1660028381548110612862576128616143e1565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614155b9050919050565b600033905090565b816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612928836112e1565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061297982612825565b6129b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129af90614b2a565b60405180910390fd5b60006129c3836112e1565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612a3257508373ffffffffffffffffffffffffffffffffffffffff16612a1a846109f7565b73ffffffffffffffffffffffffffffffffffffffff16145b80612a435750612a4281856122f5565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612a6c826112e1565b73ffffffffffffffffffffffffffffffffffffffff1614612ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ab990614bbc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b2990614c4e565b60405180910390fd5b612b3d838383612fdf565b612b486000826128b5565b8160028281548110612b5d57612b5c6143e1565b5b9060005260206000200160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612c0f8383612fe4565b612c1c600084848461316c565b612c5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5290614ce0565b60405180910390fd5b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612d31848484612a4c565b612d3d8484848461316c565b612d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d7390614ce0565b60405180910390fd5b50505050565b606060078054612d9190613d4b565b80601f0160208091040260200160405190810160405280929190818152602001828054612dbd90613d4b565b8015612e0a5780601f10612ddf57610100808354040283529160200191612e0a565b820191906000526020600020905b815481529060010190602001808311612ded57829003601f168201915b5050505050905090565b60606000821415612e5c576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612f70565b600082905060005b60008214612e8e578080612e779061432c565b915050600a82612e879190614d2f565b9150612e64565b60008167ffffffffffffffff811115612eaa57612ea96136e6565b5b6040519080825280601f01601f191660200182016040528015612edc5781602001600182028036833780820191505090505b5090505b60008514612f6957600182612ef59190614770565b9150600a85612f049190614d60565b6030612f109190614210565b60f81b818381518110612f2657612f256143e1565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612f629190614d2f565b9450612ee0565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613054576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161304b90614ddd565b60405180910390fd5b61305d81612825565b1561309d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309490614e49565b60405180910390fd5b6130a960008383612fdf565b6002829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600061318d8473ffffffffffffffffffffffffffffffffffffffff166132f4565b156132e7578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026131b66128ad565b8786866040518563ffffffff1660e01b81526004016131d89493929190614ebe565b6020604051808303816000875af192505050801561321457506040513d601f19601f820116820180604052508101906132119190614f1f565b60015b613297573d8060008114613244576040519150601f19603f3d011682016040523d82523d6000602084013e613249565b606091505b5060008151141561328f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161328690614ce0565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506132ec565b600190505b949350505050565b600080823b905060008111915050919050565b82805461331390613d4b565b90600052602060002090601f016020900481019282613335576000855561337c565b82601f1061334e57805160ff191683800117855561337c565b8280016001018555821561337c579182015b8281111561337b578251825591602001919060010190613360565b5b509050613389919061338d565b5090565b5b808211156133a657600081600090555060010161338e565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6133f3816133be565b81146133fe57600080fd5b50565b600081359050613410816133ea565b92915050565b60006020828403121561342c5761342b6133b4565b5b600061343a84828501613401565b91505092915050565b60008115159050919050565b61345881613443565b82525050565b6000602082019050613473600083018461344f565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156134b3578082015181840152602081019050613498565b838111156134c2576000848401525b50505050565b6000601f19601f8301169050919050565b60006134e482613479565b6134ee8185613484565b93506134fe818560208601613495565b613507816134c8565b840191505092915050565b6000602082019050818103600083015261352c81846134d9565b905092915050565b6000819050919050565b61354781613534565b811461355257600080fd5b50565b6000813590506135648161353e565b92915050565b6000602082840312156135805761357f6133b4565b5b600061358e84828501613555565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006135c282613597565b9050919050565b6135d2816135b7565b82525050565b60006020820190506135ed60008301846135c9565b92915050565b6135fc816135b7565b811461360757600080fd5b50565b600081359050613619816135f3565b92915050565b60008060408385031215613636576136356133b4565b5b60006136448582860161360a565b925050602061365585828601613555565b9150509250929050565b61366881613534565b82525050565b6000602082019050613683600083018461365f565b92915050565b6000806000606084860312156136a2576136a16133b4565b5b60006136b08682870161360a565b93505060206136c18682870161360a565b92505060406136d286828701613555565b9150509250925092565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61371e826134c8565b810181811067ffffffffffffffff8211171561373d5761373c6136e6565b5b80604052505050565b60006137506133aa565b905061375c8282613715565b919050565b600067ffffffffffffffff82111561377c5761377b6136e6565b5b613785826134c8565b9050602081019050919050565b82818337600083830152505050565b60006137b46137af84613761565b613746565b9050828152602081018484840111156137d0576137cf6136e1565b5b6137db848285613792565b509392505050565b600082601f8301126137f8576137f76136dc565b5b81356138088482602086016137a1565b91505092915050565b600060208284031215613827576138266133b4565b5b600082013567ffffffffffffffff811115613845576138446133b9565b5b613851848285016137e3565b91505092915050565b6000602082840312156138705761386f6133b4565b5b600061387e8482850161360a565b91505092915050565b600080fd5b600080fd5b60008083601f8401126138a7576138a66136dc565b5b8235905067ffffffffffffffff8111156138c4576138c3613887565b5b6020830191508360208202830111156138e0576138df61388c565b5b9250929050565b60008083601f8401126138fd576138fc6136dc565b5b8235905067ffffffffffffffff81111561391a57613919613887565b5b6020830191508360208202830111156139365761393561388c565b5b9250929050565b60008060008060408587031215613957576139566133b4565b5b600085013567ffffffffffffffff811115613975576139746133b9565b5b61398187828801613891565b9450945050602085013567ffffffffffffffff8111156139a4576139a36133b9565b5b6139b0878288016138e7565b925092505092959194509250565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6139f381613534565b82525050565b6000613a0583836139ea565b60208301905092915050565b6000602082019050919050565b6000613a29826139be565b613a3381856139c9565b9350613a3e836139da565b8060005b83811015613a6f578151613a5688826139f9565b9750613a6183613a11565b925050600181019050613a42565b5085935050505092915050565b60006020820190508181036000830152613a968184613a1e565b905092915050565b60008060008060408587031215613ab857613ab76133b4565b5b600085013567ffffffffffffffff811115613ad657613ad56133b9565b5b613ae2878288016138e7565b9450945050602085013567ffffffffffffffff811115613b0557613b046133b9565b5b613b1187828801613891565b925092505092959194509250565b613b2881613443565b8114613b3357600080fd5b50565b600081359050613b4581613b1f565b92915050565b60008060408385031215613b6257613b616133b4565b5b6000613b708582860161360a565b9250506020613b8185828601613b36565b9150509250929050565b600067ffffffffffffffff821115613ba657613ba56136e6565b5b613baf826134c8565b9050602081019050919050565b6000613bcf613bca84613b8b565b613746565b905082815260208101848484011115613beb57613bea6136e1565b5b613bf6848285613792565b509392505050565b600082601f830112613c1357613c126136dc565b5b8135613c23848260208601613bbc565b91505092915050565b60008060008060808587031215613c4657613c456133b4565b5b6000613c548782880161360a565b9450506020613c658782880161360a565b9350506040613c7687828801613555565b925050606085013567ffffffffffffffff811115613c9757613c966133b9565b5b613ca387828801613bfe565b91505092959194509250565b600060208284031215613cc557613cc46133b4565b5b6000613cd384828501613b36565b91505092915050565b60008060408385031215613cf357613cf26133b4565b5b6000613d018582860161360a565b9250506020613d128582860161360a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d6357607f821691505b60208210811415613d7757613d76613d1c565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613dd9602c83613484565b9150613de482613d7d565b604082019050919050565b60006020820190508181036000830152613e0881613dcc565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613e45602083613484565b9150613e5082613e0f565b602082019050919050565b60006020820190508181036000830152613e7481613e38565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000613ed7602183613484565b9150613ee282613e7b565b604082019050919050565b60006020820190508181036000830152613f0681613eca565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000613f69603883613484565b9150613f7482613f0d565b604082019050919050565b60006020820190508181036000830152613f9881613f5c565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000613ffb603183613484565b915061400682613f9f565b604082019050919050565b6000602082019050818103600083015261402a81613fee565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614067601f83613484565b915061407282614031565b602082019050919050565b600060208201905081810360008301526140968161405a565b9050919050565b7f4f66660000000000000000000000000000000000000000000000000000000000600082015250565b60006140d3600383613484565b91506140de8261409d565b602082019050919050565b60006020820190508181036000830152614102816140c6565b9050919050565b7f4475680000000000000000000000000000000000000000000000000000000000600082015250565b600061413f600383613484565b915061414a82614109565b602082019050919050565b6000602082019050818103600083015261416e81614132565b9050919050565b7f546f6f206d616e79000000000000000000000000000000000000000000000000600082015250565b60006141ab600883613484565b91506141b682614175565b602082019050919050565b600060208201905081810360008301526141da8161419e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061421b82613534565b915061422683613534565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561425b5761425a6141e1565b5b828201905092915050565b7f536f727279000000000000000000000000000000000000000000000000000000600082015250565b600061429c600583613484565b91506142a782614266565b602082019050919050565b600060208201905081810360008301526142cb8161428f565b9050919050565b60006142dd82613534565b91506142e883613534565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614321576143206141e1565b5b828202905092915050565b600061433782613534565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561436a576143696141e1565b5b600182019050919050565b7f455243373231456e756d3a206f776e657220696f6f6200000000000000000000600082015250565b60006143ab601683613484565b91506143b682614375565b602082019050919050565b600060208201905081810360008301526143da8161439e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081905092915050565b50565b600061442b600083614410565b91506144368261441b565b600082019050919050565b600061444c8261441e565b9150819050919050565b7f455243373231456e756d3a20676c6f62616c20696f6f62000000000000000000600082015250565b600061448c601783613484565b915061449782614456565b602082019050919050565b600060208201905081810360008301526144bb8161447f565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b600061451e602983613484565b9150614529826144c2565b604082019050919050565b6000602082019050818103600083015261454d81614511565b9050919050565b7f4e6f742079657400000000000000000000000000000000000000000000000000600082015250565b600061458a600783613484565b915061459582614554565b602082019050919050565b600060208201905081810360008301526145b98161457d565b9050919050565b7f4c6f772072657365727665000000000000000000000000000000000000000000600082015250565b60006145f6600b83613484565b9150614601826145c0565b602082019050919050565b60006020820190508181036000830152614625816145e9565b9050919050565b7f547279206c657373000000000000000000000000000000000000000000000000600082015250565b6000614662600883613484565b915061466d8261462c565b602082019050919050565b6000602082019050818103600083015261469181614655565b9050919050565b7f4d6f7265207468616e206d617800000000000000000000000000000000000000600082015250565b60006146ce600d83613484565b91506146d982614698565b602082019050919050565b600060208201905081810360008301526146fd816146c1565b9050919050565b7f57726f6e6720616d6f756e740000000000000000000000000000000000000000600082015250565b600061473a600c83613484565b915061474582614704565b602082019050919050565b600060208201905081810360008301526147698161472d565b9050919050565b600061477b82613534565b915061478683613534565b925082821015614799576147986141e1565b5b828203905092915050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614800602a83613484565b915061480b826147a4565b604082019050919050565b6000602082019050818103600083015261482f816147f3565b9050919050565b7f50726f76696465207175616e74697469657320616e6420726563697069656e7460008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614892602183613484565b915061489d82614836565b604082019050919050565b600060208201905081810360008301526148c181614885565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006148fe601983613484565b9150614909826148c8565b602082019050919050565b6000602082019050818103600083015261492d816148f1565b9050919050565b7f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b6560008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b6000614990602183613484565b915061499b82614934565b604082019050919050565b600060208201905081810360008301526149bf81614983565b9050919050565b600081905092915050565b60006149dc82613479565b6149e681856149c6565b93506149f6818560208601613495565b80840191505092915050565b6000614a0e82856149d1565b9150614a1a82846149d1565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614a82602683613484565b9150614a8d82614a26565b604082019050919050565b60006020820190508181036000830152614ab181614a75565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000614b14602c83613484565b9150614b1f82614ab8565b604082019050919050565b60006020820190508181036000830152614b4381614b07565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000614ba6602983613484565b9150614bb182614b4a565b604082019050919050565b60006020820190508181036000830152614bd581614b99565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614c38602483613484565b9150614c4382614bdc565b604082019050919050565b60006020820190508181036000830152614c6781614c2b565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b6000614cca603283613484565b9150614cd582614c6e565b604082019050919050565b60006020820190508181036000830152614cf981614cbd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000614d3a82613534565b9150614d4583613534565b925082614d5557614d54614d00565b5b828204905092915050565b6000614d6b82613534565b9150614d7683613534565b925082614d8657614d85614d00565b5b828206905092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b6000614dc7602083613484565b9150614dd282614d91565b602082019050919050565b60006020820190508181036000830152614df681614dba565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000614e33601c83613484565b9150614e3e82614dfd565b602082019050919050565b60006020820190508181036000830152614e6281614e26565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614e9082614e69565b614e9a8185614e74565b9350614eaa818560208601613495565b614eb3816134c8565b840191505092915050565b6000608082019050614ed360008301876135c9565b614ee060208301866135c9565b614eed604083018561365f565b8181036060830152614eff8184614e85565b905095945050505050565b600081519050614f19816133ea565b92915050565b600060208284031215614f3557614f346133b4565b5b6000614f4384828501614f0a565b9150509291505056fea2646970667358221220732d1f61c2e78f9f6575a5e5e0880c0575ec56fbf4f1cb403d57cc044a91cbd464736f6c634300080a0033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000001844656c6972696f7573204d696e642054726176656c65727300000000000000000000000000000000000000000000000000000000000000000000000000000004444d547300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005768747470733a2f2f6f6479737365796c6162732e6d7970696e6174612e636c6f75642f697066732f516d64714b34336f7a57433947665077526177323665737434336531364871574a4b41526d656a6f56714a5674572f000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Delirious Mind Travelers
Arg [1] : _symbol (string): DMTs
Arg [2] : _initBaseURI (string): https://odysseylabs.mypinata.cloud/ipfs/QmdqK43ozWC9GfPwRaw26est43e16HqWJKARmejoVqJVtW/

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000018
Arg [4] : 44656c6972696f7573204d696e642054726176656c6572730000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [6] : 444d547300000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000057
Arg [8] : 68747470733a2f2f6f6479737365796c6162732e6d7970696e6174612e636c6f
Arg [9] : 75642f697066732f516d64714b34336f7a574339476650775261773236657374
Arg [10] : 34336531364871574a4b41526d656a6f56714a5674572f000000000000000000


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.