ETH Price: $3,726.41 (+3.69%)

Token

Hodl (HODL)
 

Overview

Max Total Supply

100 HODL

Holders

69

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 HODL
0x4d5b21390d16329fc52f50cba0bdaedcdf879c9c
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:
Hodl

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 16 : Hodl.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Base64.sol";
import "@openzeppelin/contracts/utils/Counters.sol";

contract Hodl is ERC721, ERC721Enumerable, Ownable, ReentrancyGuard {
	using Counters for Counters.Counter;

	Counters.Counter private _tokenIds;
	uint256 private constant PRICE = 0.01 ether;
	uint256 private constant MAX_ELAPSED_TIME = 365 days;
	uint256 private constant MAX_SIZE = 1000;
	uint256 private constant MAX_SUPPLY = 100;
	mapping(uint256 => uint256) private _lastTransferTime;

	//-------------------------------------------

	constructor() ERC721("Hodl", "HODL") {}

	//-------------------------------------------

	function mint() public payable nonReentrant {
		require(_tokenIds.current() + 1 <= MAX_SUPPLY, "Exceeded max supply");
		require(msg.value == PRICE, "Incorrect payable amount");
		_tokenIds.increment();
		_safeMint(_msgSender(), _tokenIds.current());
	}

	function ownerMint(uint256 mintNum) public nonReentrant onlyOwner {
		require(_tokenIds.current() + mintNum <= MAX_SUPPLY, "Exceeded max supply");
		for (uint256 i = 0; i < mintNum; i++) {
			_tokenIds.increment();
			_safeMint(msg.sender, _tokenIds.current());
		}
	}

	//-------------------------------------------

	function getSize(uint256 tokenId) public view returns (uint256) {
		require(_exists(tokenId), "nonexistent token");
		uint256 elapsedTime = block.timestamp - _lastTransferTime[tokenId];
		return this.min(MAX_SIZE, this.max(0, (elapsedTime * MAX_SIZE) / MAX_ELAPSED_TIME));
	}

	function getMaxElapsedTime() external pure returns (uint256) {
		return MAX_ELAPSED_TIME;
	}

	function getMaxSize() external pure returns (uint256) {
		return MAX_SIZE;
	}

	function getPrice() external pure returns (uint256) {
		return PRICE;
	}

	function currentSupply() external view returns (uint256) {
		return _tokenIds.current();
	}

	function maxSupply() external pure returns (uint256) {
		return MAX_SUPPLY;
	}

	function isSoldOut() public view returns (bool) {
		bool _soldOut = false;
		if (_tokenIds.current() >= MAX_SUPPLY) {
			_soldOut = true;
		}
		return _soldOut;
	}

	//-------------------------------------------

	function tokenURI(uint256 tokenId) public view override returns (string memory) {
		require(_exists(tokenId), "nonexistent token");

		string[] memory colorStr = new string[](6);

		{
			uint256 count = 0;
			uint256[] memory totalRGB = new uint256[](3);
			uint256[] memory maxRGB = new uint256[](3);
			uint256[] memory targetRGB = new uint256[](3);

			for (uint256 i = 0; i < 3; i++) {
				maxRGB[i] = 300 + (this.rand(tokenId, ++count) % (600 - 300));
			}

			for (uint256 iy = 0; iy < 6; iy++) {
				for (uint256 ix = 0; ix < 3; ix++) {
					targetRGB[ix] = this.min(255, maxRGB[ix] - totalRGB[ix]);
					if (iy < 5) targetRGB[ix] = this.rand(tokenId, ++count) % targetRGB[ix];
					totalRGB[ix] += targetRGB[ix];
				}
				colorStr[iy] = string(
					abi.encodePacked(
						Strings.toString(targetRGB[0]),
						",",
						Strings.toString(targetRGB[1]),
						",",
						Strings.toString(targetRGB[2])
					)
				);
			}
		}

		uint256 radius;
		uint256 offset;
		string memory glowStr;

		{
			uint256 size = this.getSize(tokenId);

			uint256 minRadius = 50;
			uint256 maxRadius = 850;
			radius = minRadius + ((maxRadius - minRadius) * size) / MAX_SIZE;

			uint256 minOffset = 20;
			uint256 maxOffset = 250;
			offset = minOffset + ((maxOffset - minOffset) * size) / MAX_SIZE;

			uint256 minGlow = 0;
			uint256 maxGlow = 100;
			uint256 glow = minGlow + ((maxGlow - minGlow) * size) / MAX_SIZE;

			if (glow <= 0) glowStr = "0.5";
			else if (glow < 20) glowStr = "0.6";
			else if (glow < 40) glowStr = "0.7";
			else if (glow < 60) glowStr = "0.8";
			else if (glow < 80) glowStr = "0.9";
			else if (glow < 100) glowStr = "1.0";
			else if (glow == 100) glowStr = "2.0";
		}

		bytes memory svg;

		{
			svg = abi.encodePacked(
				'<?xml version="1.0" encoding="UTF-8"?><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 2048 2048"><defs><style>svg { background-color:#000; }g{ transform: translateY(calc(-0.01% * ',
				Strings.toString(offset),
				"));animation: 2.0s linear 0s infinite alternate loop2;}.cls {transform-origin: 50% calc(50% + calc(0.01% * ",
				Strings.toString(offset),
				'));animation: loop1 infinite linear;mix-blend-mode: screen;}@keyframes loop1 {0% { transform: rotate(0deg); }100% { transform: rotate(360deg); }}@keyframes loop2 {from { opacity: 1.0; }to { opacity: 0.9; }}g :nth-child(1) { animation-duration: calc(1.5s + 0.0s); animation-delay: -1.1s; }g :nth-child(2) { animation-duration: calc(1.5s + 0.2s); animation-delay: -0.7s; }g :nth-child(3) { animation-duration: calc(1.5s + 0.3s); animation-delay: -0.5s; }g :nth-child(4) { animation-duration: calc(1.5s + 0.5s); animation-delay: -0.3s; }g :nth-child(5) { animation-duration: calc(1.5s + 0.7s); animation-delay: -0.2s; }g :nth-child(6) { animation-duration: calc(1.5s + 1.1s); animation-delay: -0.0s; }</style><filter id="f" x="-20%" y="-20%" width="130%" height="130%" filterUnits="userSpaceOnUse"><feGaussianBlur in="SourceGraphic" result="f1" stdDeviation="200" /><feColorMatrix in="f1" result="f2" type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0.3 0" /><feGaussianBlur in="SourceGraphic" result="f3" stdDeviation="30" /><feColorMatrix in="f3" result="f4" type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0.7 0" /><feBlend in="f2" in2="f4" result="f5" mode="screen" /><feColorMatrix in="f5" result="f6" type="matrix" values="1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 ',
				glowStr,
				' 0" /><feBlend in="SourceGraphic" in2="f6" mode="screen" /></filter><circle id="c" cx="50%" cy="50%" r="',
				Strings.toString(radius),
				'" filter="url(#f)" /></defs><g><use href="#c" class="cls" fill="rgb(',
				colorStr[0],
				')" /><use href="#c" class="cls" fill="rgb(',
				colorStr[1],
				')" /><use href="#c" class="cls" fill="rgb(',
				colorStr[2],
				')" /><use href="#c" class="cls" fill="rgb(',
				colorStr[3],
				')" /><use href="#c" class="cls" fill="rgb(',
				colorStr[4],
				')" /><use href="#c" class="cls" fill="rgb(',
				colorStr[5],
				')" /></g></svg>'
			);
		}

		bytes memory json;

		{
			uint256 elapsedTime = block.timestamp - _lastTransferTime[tokenId];
			uint256 day = elapsedTime / 86_400;
			string memory dayStr = " DAYS HODL #";
			if (day == 1) dayStr = " DAY HODL #";

			json = abi.encodePacked(
				'{"name": "',
				Strings.toString(day),
				dayStr,
				Strings.toString(tokenId),
				'", "description": "Hold On for Dear Life", "created_by": "bouze", "image_data": "data:image/svg+xml;base64,',
				Base64.encode(svg),
				'","attributes":[{"display_type": "number", "trait_type": "Days HODL", "value": "',
				Strings.toString(day),
				'"}]}'
			);
		}

		return string(abi.encodePacked("data:application/json;base64,", Base64.encode(json)));
	}

	//-------------------------------------------

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

	function _beforeTokenTransfer(
		address from,
		address to,
		uint256 tokenId
	) internal override(ERC721, ERC721Enumerable) {
		super._beforeTokenTransfer(from, to, tokenId);
		_lastTransferTime[tokenId] = block.timestamp;
	}

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

	//-------------------------------------------

	function max(uint256 a, uint256 b) public pure returns (uint256) {
		return a >= b ? a : b;
	}

	function min(uint256 a, uint256 b) public pure returns (uint256) {
		return b >= a ? a : b;
	}

	function rand(uint256 seed0, uint256 seed1) public pure returns (uint256) {
		return uint256(keccak256(abi.encodePacked(seed0, seed1)));
	}
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

File 4 of 16 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 5 of 16 : Base64.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Base64.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides a set of functions to operate with Base64 strings.
 *
 * _Available since v4.5._
 */
library Base64 {
    /**
     * @dev Base64 Encoding/Decoding Table
     */
    string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

    /**
     * @dev Converts a `bytes` to its Bytes64 `string` representation.
     */
    function encode(bytes memory data) internal pure returns (string memory) {
        /**
         * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence
         * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol
         */
        if (data.length == 0) return "";

        // Loads the table into memory
        string memory table = _TABLE;

        // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter
        // and split into 4 numbers of 6 bits.
        // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up
        // - `data.length + 2`  -> Round up
        // - `/ 3`              -> Number of 3-bytes chunks
        // - `4 *`              -> 4 characters for each chunk
        string memory result = new string(4 * ((data.length + 2) / 3));

        assembly {
            // Prepare the lookup table (skip the first "length" byte)
            let tablePtr := add(table, 1)

            // Prepare result pointer, jump over length
            let resultPtr := add(result, 32)

            // Run over the input, 3 bytes at a time
            for {
                let dataPtr := data
                let endPtr := add(data, mload(data))
            } lt(dataPtr, endPtr) {

            } {
                // Advance 3 bytes
                dataPtr := add(dataPtr, 3)
                let input := mload(dataPtr)

                // To write each character, shift the 3 bytes (18 bits) chunk
                // 4 times in blocks of 6 bits for each character (18, 12, 6, 0)
                // and apply logical AND with 0x3F which is the number of
                // the previous character in the ASCII table prior to the Base64 Table
                // The result is then added to the table to get the character to write,
                // and finally write it in the result pointer but with a left shift
                // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits

                mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance

                mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F))))
                resultPtr := add(resultPtr, 1) // Advance
            }

            // When data `bytes` is not exactly 3 bytes long
            // it is padded with `=` characters at the end
            switch mod(mload(data), 3)
            case 1 {
                mstore8(sub(resultPtr, 1), 0x3d)
                mstore8(sub(resultPtr, 2), 0x3d)
            }
            case 2 {
                mstore8(sub(resultPtr, 1), 0x3d)
            }
        }

        return result;
    }
}

File 6 of 16 : Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 7 of 16 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(owner, address(0), tokenId);
    }

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 9 of 16 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

File 10 of 16 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

File 13 of 16 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":"currentSupply","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":[],"name":"getMaxElapsedTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getMaxSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSoldOut","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"a","type":"uint256"},{"internalType":"uint256","name":"b","type":"uint256"}],"name":"max","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"a","type":"uint256"},{"internalType":"uint256","name":"b","type":"uint256"}],"name":"min","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"mintNum","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"seed0","type":"uint256"},{"internalType":"uint256","name":"seed1","type":"uint256"}],"name":"rand","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600481526020017f486f646c000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f484f444c00000000000000000000000000000000000000000000000000000000815250816000908051906020019062000096929190620001ae565b508060019080519060200190620000af929190620001ae565b505050620000d2620000c6620000e060201b60201c565b620000e860201b60201c565b6001600b81905550620002c3565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001bc906200025e565b90600052602060002090601f016020900481019282620001e057600085556200022c565b82601f10620001fb57805160ff19168380011785556200022c565b828001600101855582156200022c579182015b828111156200022b5782518255916020019190600101906200020e565b5b5090506200023b91906200023f565b5090565b5b808211156200025a57600081600090555060010162000240565b5090565b600060028204905060018216806200027757607f821691505b602082108114156200028e576200028d62000294565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b615db480620002d36000396000f3fe6080604052600436106101e35760003560e01c806370a0823111610102578063a22cb46511610095578063d5abeb0111610064578063d5abeb011461070f578063e985e9c51461073a578063f19e75d414610777578063f2fde38b146107a0576101e3565b8063a22cb46514610655578063b3659dee1461067e578063b88d4fde146106a9578063c87b56dd146106d2576101e3565b80638da5cb5b116100d15780638da5cb5b1461059757806395032b62146105c257806395d89b41146105ff57806398d5fdca1461062a576101e3565b806370a08231146104db578063715018a614610518578063771282f61461052f5780637ae2b5c71461055a576101e3565b80632da5ea171161017a5780634f6ccce7116101495780634f6ccce7146103f95780636352211e1461043657806363e1d57c146104735780636d5433e61461049e576101e3565b80632da5ea17146103515780632f745c591461037c5780633ccfd60b146103b957806342842e0e146103d0576101e3565b8063095ea7b3116101b6578063095ea7b3146102ca5780631249c58b146102f357806318160ddd146102fd57806323b872dd14610328576101e3565b806301ffc9a7146101e8578063023c23db1461022557806306fdde0314610262578063081812fc1461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190613beb565b6107c9565b60405161021c91906144f0565b60405180910390f35b34801561023157600080fd5b5061024c60048036038101906102479190613c3d565b6107db565b604051610259919061481f565b60405180910390f35b34801561026e57600080fd5b50610277610984565b604051610284919061455d565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190613c3d565b610a16565b6040516102c19190614489565b60405180910390f35b3480156102d657600080fd5b506102f160048036038101906102ec9190613baf565b610a9b565b005b6102fb610bb3565b005b34801561030957600080fd5b50610312610cd1565b60405161031f919061481f565b60405180910390f35b34801561033457600080fd5b5061034f600480360381019061034a9190613aa9565b610cde565b005b34801561035d57600080fd5b50610366610d3e565b60405161037391906144f0565b60405180910390f35b34801561038857600080fd5b506103a3600480360381019061039e9190613baf565b610d62565b6040516103b0919061481f565b60405180910390f35b3480156103c557600080fd5b506103ce610e07565b005b3480156103dc57600080fd5b506103f760048036038101906103f29190613aa9565b610ed3565b005b34801561040557600080fd5b50610420600480360381019061041b9190613c3d565b610ef3565b60405161042d919061481f565b60405180910390f35b34801561044257600080fd5b5061045d60048036038101906104589190613c3d565b610f8a565b60405161046a9190614489565b60405180910390f35b34801561047f57600080fd5b5061048861103c565b604051610495919061481f565b60405180910390f35b3480156104aa57600080fd5b506104c560048036038101906104c09190613c8f565b611046565b6040516104d2919061481f565b60405180910390f35b3480156104e757600080fd5b5061050260048036038101906104fd9190613a44565b611060565b60405161050f919061481f565b60405180910390f35b34801561052457600080fd5b5061052d611118565b005b34801561053b57600080fd5b506105446111a0565b604051610551919061481f565b60405180910390f35b34801561056657600080fd5b50610581600480360381019061057c9190613c8f565b6111b1565b60405161058e919061481f565b60405180910390f35b3480156105a357600080fd5b506105ac6111cb565b6040516105b99190614489565b60405180910390f35b3480156105ce57600080fd5b506105e960048036038101906105e49190613c8f565b6111f5565b6040516105f6919061481f565b60405180910390f35b34801561060b57600080fd5b5061061461122b565b604051610621919061455d565b60405180910390f35b34801561063657600080fd5b5061063f6112bd565b60405161064c919061481f565b60405180910390f35b34801561066157600080fd5b5061067c60048036038101906106779190613b73565b6112cc565b005b34801561068a57600080fd5b506106936112e2565b6040516106a0919061481f565b60405180910390f35b3480156106b557600080fd5b506106d060048036038101906106cb9190613af8565b6112ee565b005b3480156106de57600080fd5b506106f960048036038101906106f49190613c3d565b611350565b604051610706919061455d565b60405180910390f35b34801561071b57600080fd5b50610724612173565b604051610731919061481f565b60405180910390f35b34801561074657600080fd5b50610761600480360381019061075c9190613a6d565b61217c565b60405161076e91906144f0565b60405180910390f35b34801561078357600080fd5b5061079e60048036038101906107999190613c3d565b612210565b005b3480156107ac57600080fd5b506107c760048036038101906107c29190613a44565b612379565b005b60006107d482612471565b9050919050565b60006107e6826124eb565b610825576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081c9061473f565b60405180910390fd5b6000600d6000848152602001908152602001600020544261084691906149dd565b90503073ffffffffffffffffffffffffffffffffffffffff16637ae2b5c76103e83073ffffffffffffffffffffffffffffffffffffffff16636d5433e660006301e133806103e8886108989190614983565b6108a29190614952565b6040518363ffffffff1660e01b81526004016108bf92919061450b565b60206040518083038186803b1580156108d757600080fd5b505afa1580156108eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061090f9190613c66565b6040518363ffffffff1660e01b815260040161092c92919061483a565b60206040518083038186803b15801561094457600080fd5b505afa158015610958573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061097c9190613c66565b915050919050565b60606000805461099390614aeb565b80601f01602080910402602001604051908101604052809291908181526020018280546109bf90614aeb565b8015610a0c5780601f106109e157610100808354040283529160200191610a0c565b820191906000526020600020905b8154815290600101906020018083116109ef57829003601f168201915b5050505050905090565b6000610a21826124eb565b610a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a579061471f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aa682610f8a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0e9061479f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b36612557565b73ffffffffffffffffffffffffffffffffffffffff161480610b655750610b6481610b5f612557565b61217c565b5b610ba4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9b9061469f565b60405180910390fd5b610bae838361255f565b505050565b6002600b541415610bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf0906147ff565b60405180910390fd5b6002600b8190555060646001610c0f600c612618565b610c1991906148fc565b1115610c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c519061477f565b60405180910390fd5b662386f26fc100003414610ca3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9a9061465f565b60405180910390fd5b610cad600c612626565b610cc7610cb8612557565b610cc2600c612618565b61263c565b6001600b81905550565b6000600880549050905090565b610cef610ce9612557565b8261265a565b610d2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d25906147bf565b60405180910390fd5b610d39838383612738565b505050565b600080600090506064610d51600c612618565b10610d5b57600190505b8091505090565b6000610d6d83611060565b8210610dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da59061457f565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610e0f612557565b73ffffffffffffffffffffffffffffffffffffffff16610e2d6111cb565b73ffffffffffffffffffffffffffffffffffffffff1614610e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7a9061475f565b60405180910390fd5b610e8b6111cb565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610ed0573d6000803e3d6000fd5b50565b610eee838383604051806020016040528060008152506112ee565b505050565b6000610efd610cd1565b8210610f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f35906147df565b60405180910390fd5b60088281548110610f78577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102a906146df565b60405180910390fd5b80915050919050565b60006103e8905090565b6000818310156110565781611058565b825b905092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c8906146bf565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611120612557565b73ffffffffffffffffffffffffffffffffffffffff1661113e6111cb565b73ffffffffffffffffffffffffffffffffffffffff1614611194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118b9061475f565b60405180910390fd5b61119e600061299f565b565b60006111ac600c612618565b905090565b6000828210156111c157816111c3565b825b905092915050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000828260405160200161120a92919061445d565b6040516020818303038152906040528051906020012060001c905092915050565b60606001805461123a90614aeb565b80601f016020809104026020016040519081016040528092919081815260200182805461126690614aeb565b80156112b35780601f10611288576101008083540402835291602001916112b3565b820191906000526020600020905b81548152906001019060200180831161129657829003601f168201915b5050505050905090565b6000662386f26fc10000905090565b6112de6112d7612557565b8383612a65565b5050565b60006301e13380905090565b6112ff6112f9612557565b8361265a565b61133e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611335906147bf565b60405180910390fd5b61134a84848484612bd2565b50505050565b606061135b826124eb565b61139a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113919061473f565b60405180910390fd5b6000600667ffffffffffffffff8111156113dd577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561141057816020015b60608152602001906001900390816113fb5790505b509050600080600367ffffffffffffffff811115611457577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156114855781602001602082028036833780820191505090505b5090506000600367ffffffffffffffff8111156114cb577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156114f95781602001602082028036833780820191505090505b5090506000600367ffffffffffffffff81111561153f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561156d5781602001602082028036833780820191505090505b50905060005b60038110156116855761012c3073ffffffffffffffffffffffffffffffffffffffff166395032b628a886115a690614b4e565b9850886040518363ffffffff1660e01b81526004016115c692919061483a565b60206040518083038186803b1580156115de57600080fd5b505afa1580156115f2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116169190613c66565b6116209190614ba1565b61012c61162d91906148fc565b838281518110611666577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061167d90614b4e565b915050611573565b5060005b6006811015611b2a5760005b60038110156119d3573073ffffffffffffffffffffffffffffffffffffffff16637ae2b5c760ff8784815181106116f5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151878581518110611736577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015161174891906149dd565b6040518363ffffffff1660e01b8152600401611765929190614534565b60206040518083038186803b15801561177d57600080fd5b505afa158015611791573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117b59190613c66565b8382815181106117ee577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050600582101561192b5782818151811061183c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101513073ffffffffffffffffffffffffffffffffffffffff166395032b628b8961186b90614b4e565b9950896040518363ffffffff1660e01b815260040161188b92919061483a565b60206040518083038186803b1580156118a357600080fd5b505afa1580156118b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118db9190613c66565b6118e59190614ba1565b83828151811061191e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250505b828181518110611964577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518582815181106119a5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181516119b991906148fc565b9150818152505080806119cb90614b4e565b915050611695565b50611a1e82600081518110611a11577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151612c2e565b611a6883600181518110611a5b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151612c2e565b611ab284600281518110611aa5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151612c2e565b604051602001611ac493929190614278565b604051602081830303815290604052868281518110611b0c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101819052508080611b2290614b4e565b915050611689565b5050505050600080606060003073ffffffffffffffffffffffffffffffffffffffff1663023c23db886040518263ffffffff1660e01b8152600401611b6f919061481f565b60206040518083038186803b158015611b8757600080fd5b505afa158015611b9b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bbf9190613c66565b9050600060329050600061035290506103e8838383611bde91906149dd565b611be89190614983565b611bf29190614952565b82611bfd91906148fc565b9550600060149050600060fa90506103e8858383611c1b91906149dd565b611c259190614983565b611c2f9190614952565b82611c3a91906148fc565b96506000806064905060006103e8888484611c5591906149dd565b611c5f9190614983565b611c699190614952565b83611c7491906148fc565b905060008111611cbb576040518060400160405280600381526020017f302e3500000000000000000000000000000000000000000000000000000000008152509850611e61565b6014811015611d01576040518060400160405280600381526020017f302e3600000000000000000000000000000000000000000000000000000000008152509850611e60565b6028811015611d47576040518060400160405280600381526020017f302e3700000000000000000000000000000000000000000000000000000000008152509850611e5f565b603c811015611d8d576040518060400160405280600381526020017f302e3800000000000000000000000000000000000000000000000000000000008152509850611e5e565b6050811015611dd3576040518060400160405280600381526020017f302e3900000000000000000000000000000000000000000000000000000000008152509850611e5d565b6064811015611e19576040518060400160405280600381526020017f312e3000000000000000000000000000000000000000000000000000000000008152509850611e5c565b6064811415611e5b576040518060400160405280600381526020017f322e30000000000000000000000000000000000000000000000000000000000081525098505b5b5b5b5b5b5b50505050505050506060611e7483612c2e565b611e7d84612c2e565b83611e8787612c2e565b88600081518110611ec1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015189600181518110611f03577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518a600281518110611f45577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518b600381518110611f87577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518c600481518110611fc9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518d60058151811061200b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160405160200161202c9a999897969594939291906142bf565b604051602081830303815290604052905060606000600d60008a8152602001908152602001600020544261206091906149dd565b9050600062015180826120739190614952565b905060006040518060400160405280600c81526020017f204441595320484f444c20230000000000000000000000000000000000000000815250905060018214156120f1576040518060400160405280600b81526020017f2044415920484f444c202300000000000000000000000000000000000000000081525090505b6120fa82612c2e565b816121048d612c2e565b61210d88612ddb565b61211686612c2e565b60405160200161212a9594939291906143c4565b604051602081830303815290604052935050505061214781612ddb565b604051602001612157919061443b565b6040516020818303038152906040529650505050505050919050565b60006064905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6002600b541415612256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224d906147ff565b60405180910390fd5b6002600b81905550612266612557565b73ffffffffffffffffffffffffffffffffffffffff166122846111cb565b73ffffffffffffffffffffffffffffffffffffffff16146122da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d19061475f565b60405180910390fd5b6064816122e7600c612618565b6122f191906148fc565b1115612332576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123299061477f565b60405180910390fd5b60005b8181101561236d57612347600c612626565b61235a33612355600c612618565b61263c565b808061236590614b4e565b915050612335565b506001600b8190555050565b612381612557565b73ffffffffffffffffffffffffffffffffffffffff1661239f6111cb565b73ffffffffffffffffffffffffffffffffffffffff16146123f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ec9061475f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245c906145bf565b60405180910390fd5b61246e8161299f565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806124e457506124e382612f65565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166125d283610f8a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6001816000016000828254019250508190555050565b612656828260405180602001604052806000815250613047565b5050565b6000612665826124eb565b6126a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269b9061467f565b60405180910390fd5b60006126af83610f8a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806126f157506126f0818561217c565b5b8061272f57508373ffffffffffffffffffffffffffffffffffffffff1661271784610a16565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661275882610f8a565b73ffffffffffffffffffffffffffffffffffffffff16146127ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a5906145df565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561281e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128159061461f565b60405180910390fd5b6128298383836130a2565b61283460008261255f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461288491906149dd565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128db91906148fc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461299a8383836130ca565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612acb9061463f565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612bc591906144f0565b60405180910390a3505050565b612bdd848484612738565b612be9848484846130cf565b612c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1f9061459f565b60405180910390fd5b50505050565b60606000821415612c76576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612dd6565b600082905060005b60008214612ca8578080612c9190614b4e565b915050600a82612ca19190614952565b9150612c7e565b60008167ffffffffffffffff811115612cea577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612d1c5781602001600182028036833780820191505090505b5090505b60008514612dcf57600182612d3591906149dd565b9150600a85612d449190614ba1565b6030612d5091906148fc565b60f81b818381518110612d8c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612dc89190614952565b9450612d20565b8093505050505b919050565b6060600082511415612dfe57604051806020016040528060008152509050612f60565b6000604051806060016040528060408152602001615d3f6040913990506000600360028551612e2d91906148fc565b612e379190614952565b6004612e439190614983565b67ffffffffffffffff811115612e82577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612eb45781602001600182028036833780820191505090505b509050600182016020820185865187015b80821015612f20576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f8116850151845360018401935050612ec5565b5050600386510660018114612f3c5760028114612f4f57612f57565b603d6001830353603d6002830353612f57565b603d60018303535b50505080925050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061303057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80613040575061303f82613266565b5b9050919050565b61305183836132d0565b61305e60008484846130cf565b61309d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130949061459f565b60405180910390fd5b505050565b6130ad8383836134aa565b42600d600083815260200190815260200160002081905550505050565b505050565b60006130f08473ffffffffffffffffffffffffffffffffffffffff166135be565b15613259578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613119612557565b8786866040518563ffffffff1660e01b815260040161313b94939291906144a4565b602060405180830381600087803b15801561315557600080fd5b505af192505050801561318657506040513d601f19601f820116820180604052508101906131839190613c14565b60015b613209573d80600081146131b6576040519150601f19603f3d011682016040523d82523d6000602084013e6131bb565b606091505b50600081511415613201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131f89061459f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061325e565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613340576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613337906146ff565b60405180910390fd5b613349816124eb565b15613389576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613380906145ff565b60405180910390fd5b613395600083836130a2565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133e591906148fc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134a6600083836130ca565b5050565b6134b58383836135e1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156134f8576134f3816135e6565b613537565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461353657613535838261362f565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561357a576135758161379c565b6135b9565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146135b8576135b782826138df565b5b5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161363c84611060565b61364691906149dd565b905060006007600084815260200190815260200160002054905081811461372b576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506137b091906149dd565b9050600060096000848152602001908152602001600020549050600060088381548110613806577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811061384e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806138c3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006138ea83611060565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600061397161396c84614888565b614863565b90508281526020810184848401111561398957600080fd5b613994848285614aa9565b509392505050565b6000813590506139ab81615ce2565b92915050565b6000813590506139c081615cf9565b92915050565b6000813590506139d581615d10565b92915050565b6000815190506139ea81615d10565b92915050565b600082601f830112613a0157600080fd5b8135613a1184826020860161395e565b91505092915050565b600081359050613a2981615d27565b92915050565b600081519050613a3e81615d27565b92915050565b600060208284031215613a5657600080fd5b6000613a648482850161399c565b91505092915050565b60008060408385031215613a8057600080fd5b6000613a8e8582860161399c565b9250506020613a9f8582860161399c565b9150509250929050565b600080600060608486031215613abe57600080fd5b6000613acc8682870161399c565b9350506020613add8682870161399c565b9250506040613aee86828701613a1a565b9150509250925092565b60008060008060808587031215613b0e57600080fd5b6000613b1c8782880161399c565b9450506020613b2d8782880161399c565b9350506040613b3e87828801613a1a565b925050606085013567ffffffffffffffff811115613b5b57600080fd5b613b67878288016139f0565b91505092959194509250565b60008060408385031215613b8657600080fd5b6000613b948582860161399c565b9250506020613ba5858286016139b1565b9150509250929050565b60008060408385031215613bc257600080fd5b6000613bd08582860161399c565b9250506020613be185828601613a1a565b9150509250929050565b600060208284031215613bfd57600080fd5b6000613c0b848285016139c6565b91505092915050565b600060208284031215613c2657600080fd5b6000613c34848285016139db565b91505092915050565b600060208284031215613c4f57600080fd5b6000613c5d84828501613a1a565b91505092915050565b600060208284031215613c7857600080fd5b6000613c8684828501613a2f565b91505092915050565b60008060408385031215613ca257600080fd5b6000613cb085828601613a1a565b9250506020613cc185828601613a1a565b9150509250929050565b613cd481614a11565b82525050565b613ce381614a23565b82525050565b6000613cf4826148b9565b613cfe81856148cf565b9350613d0e818560208601614ab8565b613d1781614c8e565b840191505092915050565b613d2b81614a85565b82525050565b613d3a81614a97565b82525050565b6000613d4b826148c4565b613d5581856148e0565b9350613d65818560208601614ab8565b613d6e81614c8e565b840191505092915050565b6000613d84826148c4565b613d8e81856148f1565b9350613d9e818560208601614ab8565b80840191505092915050565b6000613db76068836148f1565b9150613dc282614c9f565b606882019050919050565b6000613dda602b836148e0565b9150613de582614d3a565b604082019050919050565b6000613dfd6032836148e0565b9150613e0882614d89565b604082019050919050565b6000613e206026836148e0565b9150613e2b82614dd8565b604082019050919050565b6000613e4360b8836148f1565b9150613e4e82614e27565b60b882019050919050565b6000613e666025836148e0565b9150613e7182614f0e565b604082019050919050565b6000613e89601c836148e0565b9150613e9482614f5d565b602082019050919050565b6000613eac6050836148f1565b9150613eb782614f86565b605082019050919050565b6000613ecf6001836148f1565b9150613eda82614ffb565b600182019050919050565b6000613ef26024836148e0565b9150613efd82615024565b604082019050919050565b6000613f156019836148e0565b9150613f2082615073565b602082019050919050565b6000613f386018836148e0565b9150613f438261509c565b602082019050919050565b6000613f5b602c836148e0565b9150613f66826150c5565b604082019050919050565b6000613f7e6038836148e0565b9150613f8982615114565b604082019050919050565b6000613fa1600f836148f1565b9150613fac82615163565b600f82019050919050565b6000613fc4602a836148e0565b9150613fcf8261518c565b604082019050919050565b6000613fe76029836148e0565b9150613ff2826151db565b604082019050919050565b600061400a6020836148e0565b91506140158261522a565b602082019050919050565b600061402d602c836148e0565b915061403882615253565b604082019050919050565b60006140506044836148f1565b915061405b826152a2565b604482019050919050565b60006140736011836148e0565b915061407e82615317565b602082019050919050565b60006140966020836148e0565b91506140a182615340565b602082019050919050565b60006140b9602a836148f1565b91506140c482615369565b602a82019050919050565b60006140dc606b836148f1565b91506140e7826153b8565b606b82019050919050565b60006140ff600a836148f1565b915061410a82615453565b600a82019050919050565b60006141226013836148e0565b915061412d8261547c565b602082019050919050565b6000614145606b836148f1565b9150614150826154a5565b606b82019050919050565b60006141686021836148e0565b915061417382615540565b604082019050919050565b600061418b601d836148f1565b91506141968261558f565b601d82019050919050565b60006141ae6031836148e0565b91506141b9826155b8565b604082019050919050565b60006141d1602c836148e0565b91506141dc82615607565b604082019050919050565b60006141f5610501836148f1565b915061420082615656565b61050182019050919050565b6000614219601f836148e0565b915061422482615c90565b602082019050919050565b600061423c6004836148f1565b915061424782615cb9565b600482019050919050565b61425b81614a7b565b82525050565b61427261426d82614a7b565b614b97565b82525050565b60006142848286613d79565b915061428f82613ec2565b915061429b8285613d79565b91506142a682613ec2565b91506142b28284613d79565b9150819050949350505050565b60006142ca82613e36565b91506142d6828d613d79565b91506142e182614138565b91506142ed828c613d79565b91506142f8826141e7565b9150614304828b613d79565b915061430f82613daa565b915061431b828a613d79565b915061432682614043565b91506143328289613d79565b915061433d826140ac565b91506143498288613d79565b9150614354826140ac565b91506143608287613d79565b915061436b826140ac565b91506143778286613d79565b9150614382826140ac565b915061438e8285613d79565b9150614399826140ac565b91506143a58284613d79565b91506143b082613f94565b91508190509b9a5050505050505050505050565b60006143cf826140f2565b91506143db8288613d79565b91506143e78287613d79565b91506143f38286613d79565b91506143fe826140cf565b915061440a8285613d79565b915061441582613e9f565b91506144218284613d79565b915061442c8261422f565b91508190509695505050505050565b60006144468261417e565b91506144528284613d79565b915081905092915050565b60006144698285614261565b6020820191506144798284614261565b6020820191508190509392505050565b600060208201905061449e6000830184613ccb565b92915050565b60006080820190506144b96000830187613ccb565b6144c66020830186613ccb565b6144d36040830185614252565b81810360608301526144e58184613ce9565b905095945050505050565b60006020820190506145056000830184613cda565b92915050565b60006040820190506145206000830185613d22565b61452d6020830184614252565b9392505050565b60006040820190506145496000830185613d31565b6145566020830184614252565b9392505050565b600060208201905081810360008301526145778184613d40565b905092915050565b6000602082019050818103600083015261459881613dcd565b9050919050565b600060208201905081810360008301526145b881613df0565b9050919050565b600060208201905081810360008301526145d881613e13565b9050919050565b600060208201905081810360008301526145f881613e59565b9050919050565b6000602082019050818103600083015261461881613e7c565b9050919050565b6000602082019050818103600083015261463881613ee5565b9050919050565b6000602082019050818103600083015261465881613f08565b9050919050565b6000602082019050818103600083015261467881613f2b565b9050919050565b6000602082019050818103600083015261469881613f4e565b9050919050565b600060208201905081810360008301526146b881613f71565b9050919050565b600060208201905081810360008301526146d881613fb7565b9050919050565b600060208201905081810360008301526146f881613fda565b9050919050565b6000602082019050818103600083015261471881613ffd565b9050919050565b6000602082019050818103600083015261473881614020565b9050919050565b6000602082019050818103600083015261475881614066565b9050919050565b6000602082019050818103600083015261477881614089565b9050919050565b6000602082019050818103600083015261479881614115565b9050919050565b600060208201905081810360008301526147b88161415b565b9050919050565b600060208201905081810360008301526147d8816141a1565b9050919050565b600060208201905081810360008301526147f8816141c4565b9050919050565b600060208201905081810360008301526148188161420c565b9050919050565b60006020820190506148346000830184614252565b92915050565b600060408201905061484f6000830185614252565b61485c6020830184614252565b9392505050565b600061486d61487e565b90506148798282614b1d565b919050565b6000604051905090565b600067ffffffffffffffff8211156148a3576148a2614c5f565b5b6148ac82614c8e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061490782614a7b565b915061491283614a7b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561494757614946614bd2565b5b828201905092915050565b600061495d82614a7b565b915061496883614a7b565b92508261497857614977614c01565b5b828204905092915050565b600061498e82614a7b565b915061499983614a7b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156149d2576149d1614bd2565b5b828202905092915050565b60006149e882614a7b565b91506149f383614a7b565b925082821015614a0657614a05614bd2565b5b828203905092915050565b6000614a1c82614a5b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000614a9082614a7b565b9050919050565b6000614aa282614a7b565b9050919050565b82818337600083830152505050565b60005b83811015614ad6578082015181840152602081019050614abb565b83811115614ae5576000848401525b50505050565b60006002820490506001821680614b0357607f821691505b60208210811415614b1757614b16614c30565b5b50919050565b614b2682614c8e565b810181811067ffffffffffffffff82111715614b4557614b44614c5f565b5b80604052505050565b6000614b5982614a7b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614b8c57614b8b614bd2565b5b600182019050919050565b6000819050919050565b6000614bac82614a7b565b9150614bb783614a7b565b925082614bc757614bc6614c01565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f203022202f3e3c6665426c656e6420696e3d22536f757263654772617068696360008201527f2220696e323d22663622206d6f64653d2273637265656e22202f3e3c2f66696c60208201527f7465723e3c636972636c652069643d2263222063783d22353025222063793d2260408201527f3530252220723d22000000000000000000000000000000000000000000000000606082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f3c3f786d6c2076657273696f6e3d22312e302220656e636f64696e673d22555460008201527f462d38223f3e3c73766720786d6c6e733d22687474703a2f2f7777772e77332e60208201527f6f72672f323030302f737667222076696577426f783d2230203020323034382060408201527f32303438223e3c646566733e3c7374796c653e737667207b206261636b67726f60608201527f756e642d636f6c6f723a233030303b207d677b207472616e73666f726d3a207460808201527f72616e736c617465592863616c63282d302e303125202a20000000000000000060a082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f222c2261747472696275746573223a5b7b22646973706c61795f74797065223a60008201527f20226e756d626572222c202274726169745f74797065223a202244617973204860208201527f4f444c222c202276616c7565223a202200000000000000000000000000000000604082015250565b7f2c00000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f496e636f72726563742070617961626c6520616d6f756e740000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f2922202f3e3c2f673e3c2f7376673e0000000000000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f222066696c7465723d2275726c2823662922202f3e3c2f646566733e3c673e3c60008201527f75736520687265663d2223632220636c6173733d22636c73222066696c6c3d2260208201527f7267622800000000000000000000000000000000000000000000000000000000604082015250565b7f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f2922202f3e3c75736520687265663d2223632220636c6173733d22636c73222060008201527f66696c6c3d227267622800000000000000000000000000000000000000000000602082015250565b7f222c20226465736372697074696f6e223a2022486f6c64204f6e20666f72204460008201527f656172204c696665222c2022637265617465645f6279223a2022626f757a652260208201527f2c2022696d6167655f64617461223a2022646174613a696d6167652f7376672b60408201527f786d6c3b6261736536342c000000000000000000000000000000000000000000606082015250565b7f7b226e616d65223a202200000000000000000000000000000000000000000000600082015250565b7f4578636565646564206d617820737570706c7900000000000000000000000000600082015250565b7f29293b616e696d6174696f6e3a20322e3073206c696e65617220307320696e6660008201527f696e69746520616c7465726e617465206c6f6f70323b7d2e636c73207b74726160208201527f6e73666f726d2d6f726967696e3a203530252063616c6328353025202b20636160408201527f6c6328302e303125202a20000000000000000000000000000000000000000000606082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f29293b616e696d6174696f6e3a206c6f6f703120696e66696e697465206c696e60008201527f6561723b6d69782d626c656e642d6d6f64653a2073637265656e3b7d406b657960208201527f6672616d6573206c6f6f7031207b3025207b207472616e73666f726d3a20726f60408201527f746174652830646567293b207d31303025207b207472616e73666f726d3a207260608201527f6f7461746528333630646567293b207d7d406b65796672616d6573206c6f6f7060808201527f32207b66726f6d207b206f7061636974793a20312e303b207d746f207b206f7060a08201527f61636974793a20302e393b207d7d67203a6e74682d6368696c64283129207b2060c08201527f616e696d6174696f6e2d6475726174696f6e3a2063616c6328312e3573202b2060e08201527f302e3073293b20616e696d6174696f6e2d64656c61793a202d312e31733b207d6101008201527f67203a6e74682d6368696c64283229207b20616e696d6174696f6e2d647572616101208201527f74696f6e3a2063616c6328312e3573202b20302e3273293b20616e696d6174696101408201527f6f6e2d64656c61793a202d302e37733b207d67203a6e74682d6368696c6428336101608201527f29207b20616e696d6174696f6e2d6475726174696f6e3a2063616c6328312e356101808201527f73202b20302e3373293b20616e696d6174696f6e2d64656c61793a202d302e356101a08201527f733b207d67203a6e74682d6368696c64283429207b20616e696d6174696f6e2d6101c08201527f6475726174696f6e3a2063616c6328312e3573202b20302e3573293b20616e696101e08201527f6d6174696f6e2d64656c61793a202d302e33733b207d67203a6e74682d6368696102008201527f6c64283529207b20616e696d6174696f6e2d6475726174696f6e3a2063616c636102208201527f28312e3573202b20302e3773293b20616e696d6174696f6e2d64656c61793a206102408201527f2d302e32733b207d67203a6e74682d6368696c64283629207b20616e696d61746102608201527f696f6e2d6475726174696f6e3a2063616c6328312e3573202b20312e3173293b6102808201527f20616e696d6174696f6e2d64656c61793a202d302e30733b207d3c2f7374796c6102a08201527f653e3c66696c7465722069643d22662220783d222d3230252220793d222d32306102c08201527f25222077696474683d223133302522206865696768743d2231333025222066696102e08201527f6c746572556e6974733d227573657253706163654f6e557365223e3c666547616103008201527f75737369616e426c757220696e3d22536f7572636547726170686963222072656103208201527f73756c743d2266312220737464446576696174696f6e3d2232303022202f3e3c6103408201527f6665436f6c6f724d617472697820696e3d2266312220726573756c743d2266326103608201527f2220747970653d226d6174726978222076616c7565733d2231203020302030206103808201527f30203020312030203020302030203020312030203020302030203020302e33206103a08201527f3022202f3e3c6665476175737369616e426c757220696e3d22536f75726365476103c08201527f7261706869632220726573756c743d2266332220737464446576696174696f6e6103e08201527f3d22333022202f3e3c6665436f6c6f724d617472697820696e3d2266332220726104008201527f6573756c743d2266342220747970653d226d6174726978222076616c7565733d6104208201527f22312030203020302030203020312030203020302030203020312030203020306104408201527f2030203020302e37203022202f3e3c6665426c656e6420696e3d2266322220696104608201527f6e323d2266342220726573756c743d22663522206d6f64653d2273637265656e6104808201527f22202f3e3c6665436f6c6f724d617472697820696e3d2266352220726573756c6104a08201527f743d2266362220747970653d226d6174726978222076616c7565733d223120306104c08201527f20302030203020302031203020302030203020302031203020302030203020306104e08201527f200000000000000000000000000000000000000000000000000000000000000061050082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f227d5d7d00000000000000000000000000000000000000000000000000000000600082015250565b615ceb81614a11565b8114615cf657600080fd5b50565b615d0281614a23565b8114615d0d57600080fd5b50565b615d1981614a2f565b8114615d2457600080fd5b50565b615d3081614a7b565b8114615d3b57600080fd5b5056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa264697066735822122059cd992c4349996abd342127ec54bab3b3ae9fe6f0319a2fdad88e7d7a9140ce64736f6c63430008040033

Deployed Bytecode

0x6080604052600436106101e35760003560e01c806370a0823111610102578063a22cb46511610095578063d5abeb0111610064578063d5abeb011461070f578063e985e9c51461073a578063f19e75d414610777578063f2fde38b146107a0576101e3565b8063a22cb46514610655578063b3659dee1461067e578063b88d4fde146106a9578063c87b56dd146106d2576101e3565b80638da5cb5b116100d15780638da5cb5b1461059757806395032b62146105c257806395d89b41146105ff57806398d5fdca1461062a576101e3565b806370a08231146104db578063715018a614610518578063771282f61461052f5780637ae2b5c71461055a576101e3565b80632da5ea171161017a5780634f6ccce7116101495780634f6ccce7146103f95780636352211e1461043657806363e1d57c146104735780636d5433e61461049e576101e3565b80632da5ea17146103515780632f745c591461037c5780633ccfd60b146103b957806342842e0e146103d0576101e3565b8063095ea7b3116101b6578063095ea7b3146102ca5780631249c58b146102f357806318160ddd146102fd57806323b872dd14610328576101e3565b806301ffc9a7146101e8578063023c23db1461022557806306fdde0314610262578063081812fc1461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190613beb565b6107c9565b60405161021c91906144f0565b60405180910390f35b34801561023157600080fd5b5061024c60048036038101906102479190613c3d565b6107db565b604051610259919061481f565b60405180910390f35b34801561026e57600080fd5b50610277610984565b604051610284919061455d565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190613c3d565b610a16565b6040516102c19190614489565b60405180910390f35b3480156102d657600080fd5b506102f160048036038101906102ec9190613baf565b610a9b565b005b6102fb610bb3565b005b34801561030957600080fd5b50610312610cd1565b60405161031f919061481f565b60405180910390f35b34801561033457600080fd5b5061034f600480360381019061034a9190613aa9565b610cde565b005b34801561035d57600080fd5b50610366610d3e565b60405161037391906144f0565b60405180910390f35b34801561038857600080fd5b506103a3600480360381019061039e9190613baf565b610d62565b6040516103b0919061481f565b60405180910390f35b3480156103c557600080fd5b506103ce610e07565b005b3480156103dc57600080fd5b506103f760048036038101906103f29190613aa9565b610ed3565b005b34801561040557600080fd5b50610420600480360381019061041b9190613c3d565b610ef3565b60405161042d919061481f565b60405180910390f35b34801561044257600080fd5b5061045d60048036038101906104589190613c3d565b610f8a565b60405161046a9190614489565b60405180910390f35b34801561047f57600080fd5b5061048861103c565b604051610495919061481f565b60405180910390f35b3480156104aa57600080fd5b506104c560048036038101906104c09190613c8f565b611046565b6040516104d2919061481f565b60405180910390f35b3480156104e757600080fd5b5061050260048036038101906104fd9190613a44565b611060565b60405161050f919061481f565b60405180910390f35b34801561052457600080fd5b5061052d611118565b005b34801561053b57600080fd5b506105446111a0565b604051610551919061481f565b60405180910390f35b34801561056657600080fd5b50610581600480360381019061057c9190613c8f565b6111b1565b60405161058e919061481f565b60405180910390f35b3480156105a357600080fd5b506105ac6111cb565b6040516105b99190614489565b60405180910390f35b3480156105ce57600080fd5b506105e960048036038101906105e49190613c8f565b6111f5565b6040516105f6919061481f565b60405180910390f35b34801561060b57600080fd5b5061061461122b565b604051610621919061455d565b60405180910390f35b34801561063657600080fd5b5061063f6112bd565b60405161064c919061481f565b60405180910390f35b34801561066157600080fd5b5061067c60048036038101906106779190613b73565b6112cc565b005b34801561068a57600080fd5b506106936112e2565b6040516106a0919061481f565b60405180910390f35b3480156106b557600080fd5b506106d060048036038101906106cb9190613af8565b6112ee565b005b3480156106de57600080fd5b506106f960048036038101906106f49190613c3d565b611350565b604051610706919061455d565b60405180910390f35b34801561071b57600080fd5b50610724612173565b604051610731919061481f565b60405180910390f35b34801561074657600080fd5b50610761600480360381019061075c9190613a6d565b61217c565b60405161076e91906144f0565b60405180910390f35b34801561078357600080fd5b5061079e60048036038101906107999190613c3d565b612210565b005b3480156107ac57600080fd5b506107c760048036038101906107c29190613a44565b612379565b005b60006107d482612471565b9050919050565b60006107e6826124eb565b610825576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081c9061473f565b60405180910390fd5b6000600d6000848152602001908152602001600020544261084691906149dd565b90503073ffffffffffffffffffffffffffffffffffffffff16637ae2b5c76103e83073ffffffffffffffffffffffffffffffffffffffff16636d5433e660006301e133806103e8886108989190614983565b6108a29190614952565b6040518363ffffffff1660e01b81526004016108bf92919061450b565b60206040518083038186803b1580156108d757600080fd5b505afa1580156108eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061090f9190613c66565b6040518363ffffffff1660e01b815260040161092c92919061483a565b60206040518083038186803b15801561094457600080fd5b505afa158015610958573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061097c9190613c66565b915050919050565b60606000805461099390614aeb565b80601f01602080910402602001604051908101604052809291908181526020018280546109bf90614aeb565b8015610a0c5780601f106109e157610100808354040283529160200191610a0c565b820191906000526020600020905b8154815290600101906020018083116109ef57829003601f168201915b5050505050905090565b6000610a21826124eb565b610a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a579061471f565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610aa682610f8a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0e9061479f565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b36612557565b73ffffffffffffffffffffffffffffffffffffffff161480610b655750610b6481610b5f612557565b61217c565b5b610ba4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9b9061469f565b60405180910390fd5b610bae838361255f565b505050565b6002600b541415610bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf0906147ff565b60405180910390fd5b6002600b8190555060646001610c0f600c612618565b610c1991906148fc565b1115610c5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c519061477f565b60405180910390fd5b662386f26fc100003414610ca3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9a9061465f565b60405180910390fd5b610cad600c612626565b610cc7610cb8612557565b610cc2600c612618565b61263c565b6001600b81905550565b6000600880549050905090565b610cef610ce9612557565b8261265a565b610d2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d25906147bf565b60405180910390fd5b610d39838383612738565b505050565b600080600090506064610d51600c612618565b10610d5b57600190505b8091505090565b6000610d6d83611060565b8210610dae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da59061457f565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610e0f612557565b73ffffffffffffffffffffffffffffffffffffffff16610e2d6111cb565b73ffffffffffffffffffffffffffffffffffffffff1614610e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e7a9061475f565b60405180910390fd5b610e8b6111cb565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610ed0573d6000803e3d6000fd5b50565b610eee838383604051806020016040528060008152506112ee565b505050565b6000610efd610cd1565b8210610f3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f35906147df565b60405180910390fd5b60088281548110610f78577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102a906146df565b60405180910390fd5b80915050919050565b60006103e8905090565b6000818310156110565781611058565b825b905092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c8906146bf565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611120612557565b73ffffffffffffffffffffffffffffffffffffffff1661113e6111cb565b73ffffffffffffffffffffffffffffffffffffffff1614611194576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118b9061475f565b60405180910390fd5b61119e600061299f565b565b60006111ac600c612618565b905090565b6000828210156111c157816111c3565b825b905092915050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000828260405160200161120a92919061445d565b6040516020818303038152906040528051906020012060001c905092915050565b60606001805461123a90614aeb565b80601f016020809104026020016040519081016040528092919081815260200182805461126690614aeb565b80156112b35780601f10611288576101008083540402835291602001916112b3565b820191906000526020600020905b81548152906001019060200180831161129657829003601f168201915b5050505050905090565b6000662386f26fc10000905090565b6112de6112d7612557565b8383612a65565b5050565b60006301e13380905090565b6112ff6112f9612557565b8361265a565b61133e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611335906147bf565b60405180910390fd5b61134a84848484612bd2565b50505050565b606061135b826124eb565b61139a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113919061473f565b60405180910390fd5b6000600667ffffffffffffffff8111156113dd577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561141057816020015b60608152602001906001900390816113fb5790505b509050600080600367ffffffffffffffff811115611457577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156114855781602001602082028036833780820191505090505b5090506000600367ffffffffffffffff8111156114cb577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156114f95781602001602082028036833780820191505090505b5090506000600367ffffffffffffffff81111561153f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561156d5781602001602082028036833780820191505090505b50905060005b60038110156116855761012c3073ffffffffffffffffffffffffffffffffffffffff166395032b628a886115a690614b4e565b9850886040518363ffffffff1660e01b81526004016115c692919061483a565b60206040518083038186803b1580156115de57600080fd5b505afa1580156115f2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906116169190613c66565b6116209190614ba1565b61012c61162d91906148fc565b838281518110611666577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061167d90614b4e565b915050611573565b5060005b6006811015611b2a5760005b60038110156119d3573073ffffffffffffffffffffffffffffffffffffffff16637ae2b5c760ff8784815181106116f5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151878581518110611736577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015161174891906149dd565b6040518363ffffffff1660e01b8152600401611765929190614534565b60206040518083038186803b15801561177d57600080fd5b505afa158015611791573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117b59190613c66565b8382815181106117ee577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050600582101561192b5782818151811061183c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101513073ffffffffffffffffffffffffffffffffffffffff166395032b628b8961186b90614b4e565b9950896040518363ffffffff1660e01b815260040161188b92919061483a565b60206040518083038186803b1580156118a357600080fd5b505afa1580156118b7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118db9190613c66565b6118e59190614ba1565b83828151811061191e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250505b828181518110611964577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518582815181106119a5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181516119b991906148fc565b9150818152505080806119cb90614b4e565b915050611695565b50611a1e82600081518110611a11577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151612c2e565b611a6883600181518110611a5b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151612c2e565b611ab284600281518110611aa5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151612c2e565b604051602001611ac493929190614278565b604051602081830303815290604052868281518110611b0c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101819052508080611b2290614b4e565b915050611689565b5050505050600080606060003073ffffffffffffffffffffffffffffffffffffffff1663023c23db886040518263ffffffff1660e01b8152600401611b6f919061481f565b60206040518083038186803b158015611b8757600080fd5b505afa158015611b9b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bbf9190613c66565b9050600060329050600061035290506103e8838383611bde91906149dd565b611be89190614983565b611bf29190614952565b82611bfd91906148fc565b9550600060149050600060fa90506103e8858383611c1b91906149dd565b611c259190614983565b611c2f9190614952565b82611c3a91906148fc565b96506000806064905060006103e8888484611c5591906149dd565b611c5f9190614983565b611c699190614952565b83611c7491906148fc565b905060008111611cbb576040518060400160405280600381526020017f302e3500000000000000000000000000000000000000000000000000000000008152509850611e61565b6014811015611d01576040518060400160405280600381526020017f302e3600000000000000000000000000000000000000000000000000000000008152509850611e60565b6028811015611d47576040518060400160405280600381526020017f302e3700000000000000000000000000000000000000000000000000000000008152509850611e5f565b603c811015611d8d576040518060400160405280600381526020017f302e3800000000000000000000000000000000000000000000000000000000008152509850611e5e565b6050811015611dd3576040518060400160405280600381526020017f302e3900000000000000000000000000000000000000000000000000000000008152509850611e5d565b6064811015611e19576040518060400160405280600381526020017f312e3000000000000000000000000000000000000000000000000000000000008152509850611e5c565b6064811415611e5b576040518060400160405280600381526020017f322e30000000000000000000000000000000000000000000000000000000000081525098505b5b5b5b5b5b5b50505050505050506060611e7483612c2e565b611e7d84612c2e565b83611e8787612c2e565b88600081518110611ec1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015189600181518110611f03577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518a600281518110611f45577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518b600381518110611f87577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518c600481518110611fc9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518d60058151811061200b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160405160200161202c9a999897969594939291906142bf565b604051602081830303815290604052905060606000600d60008a8152602001908152602001600020544261206091906149dd565b9050600062015180826120739190614952565b905060006040518060400160405280600c81526020017f204441595320484f444c20230000000000000000000000000000000000000000815250905060018214156120f1576040518060400160405280600b81526020017f2044415920484f444c202300000000000000000000000000000000000000000081525090505b6120fa82612c2e565b816121048d612c2e565b61210d88612ddb565b61211686612c2e565b60405160200161212a9594939291906143c4565b604051602081830303815290604052935050505061214781612ddb565b604051602001612157919061443b565b6040516020818303038152906040529650505050505050919050565b60006064905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6002600b541415612256576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224d906147ff565b60405180910390fd5b6002600b81905550612266612557565b73ffffffffffffffffffffffffffffffffffffffff166122846111cb565b73ffffffffffffffffffffffffffffffffffffffff16146122da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d19061475f565b60405180910390fd5b6064816122e7600c612618565b6122f191906148fc565b1115612332576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123299061477f565b60405180910390fd5b60005b8181101561236d57612347600c612626565b61235a33612355600c612618565b61263c565b808061236590614b4e565b915050612335565b506001600b8190555050565b612381612557565b73ffffffffffffffffffffffffffffffffffffffff1661239f6111cb565b73ffffffffffffffffffffffffffffffffffffffff16146123f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ec9061475f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245c906145bf565b60405180910390fd5b61246e8161299f565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806124e457506124e382612f65565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166125d283610f8a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b6001816000016000828254019250508190555050565b612656828260405180602001604052806000815250613047565b5050565b6000612665826124eb565b6126a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269b9061467f565b60405180910390fd5b60006126af83610f8a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806126f157506126f0818561217c565b5b8061272f57508373ffffffffffffffffffffffffffffffffffffffff1661271784610a16565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661275882610f8a565b73ffffffffffffffffffffffffffffffffffffffff16146127ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127a5906145df565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561281e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128159061461f565b60405180910390fd5b6128298383836130a2565b61283460008261255f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461288491906149dd565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546128db91906148fc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461299a8383836130ca565b505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612acb9061463f565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612bc591906144f0565b60405180910390a3505050565b612bdd848484612738565b612be9848484846130cf565b612c28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c1f9061459f565b60405180910390fd5b50505050565b60606000821415612c76576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612dd6565b600082905060005b60008214612ca8578080612c9190614b4e565b915050600a82612ca19190614952565b9150612c7e565b60008167ffffffffffffffff811115612cea577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612d1c5781602001600182028036833780820191505090505b5090505b60008514612dcf57600182612d3591906149dd565b9150600a85612d449190614ba1565b6030612d5091906148fc565b60f81b818381518110612d8c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612dc89190614952565b9450612d20565b8093505050505b919050565b6060600082511415612dfe57604051806020016040528060008152509050612f60565b6000604051806060016040528060408152602001615d3f6040913990506000600360028551612e2d91906148fc565b612e379190614952565b6004612e439190614983565b67ffffffffffffffff811115612e82577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612eb45781602001600182028036833780820191505090505b509050600182016020820185865187015b80821015612f20576003820191508151603f8160121c168501518453600184019350603f81600c1c168501518453600184019350603f8160061c168501518453600184019350603f8116850151845360018401935050612ec5565b5050600386510660018114612f3c5760028114612f4f57612f57565b603d6001830353603d6002830353612f57565b603d60018303535b50505080925050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061303057507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80613040575061303f82613266565b5b9050919050565b61305183836132d0565b61305e60008484846130cf565b61309d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130949061459f565b60405180910390fd5b505050565b6130ad8383836134aa565b42600d600083815260200190815260200160002081905550505050565b505050565b60006130f08473ffffffffffffffffffffffffffffffffffffffff166135be565b15613259578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613119612557565b8786866040518563ffffffff1660e01b815260040161313b94939291906144a4565b602060405180830381600087803b15801561315557600080fd5b505af192505050801561318657506040513d601f19601f820116820180604052508101906131839190613c14565b60015b613209573d80600081146131b6576040519150601f19603f3d011682016040523d82523d6000602084013e6131bb565b606091505b50600081511415613201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131f89061459f565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061325e565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613340576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613337906146ff565b60405180910390fd5b613349816124eb565b15613389576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613380906145ff565b60405180910390fd5b613395600083836130a2565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133e591906148fc565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134a6600083836130ca565b5050565b6134b58383836135e1565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156134f8576134f3816135e6565b613537565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461353657613535838261362f565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561357a576135758161379c565b6135b9565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146135b8576135b782826138df565b5b5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161363c84611060565b61364691906149dd565b905060006007600084815260200190815260200160002054905081811461372b576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506137b091906149dd565b9050600060096000848152602001908152602001600020549050600060088381548110613806577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050806008838154811061384e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806138c3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006138ea83611060565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600061397161396c84614888565b614863565b90508281526020810184848401111561398957600080fd5b613994848285614aa9565b509392505050565b6000813590506139ab81615ce2565b92915050565b6000813590506139c081615cf9565b92915050565b6000813590506139d581615d10565b92915050565b6000815190506139ea81615d10565b92915050565b600082601f830112613a0157600080fd5b8135613a1184826020860161395e565b91505092915050565b600081359050613a2981615d27565b92915050565b600081519050613a3e81615d27565b92915050565b600060208284031215613a5657600080fd5b6000613a648482850161399c565b91505092915050565b60008060408385031215613a8057600080fd5b6000613a8e8582860161399c565b9250506020613a9f8582860161399c565b9150509250929050565b600080600060608486031215613abe57600080fd5b6000613acc8682870161399c565b9350506020613add8682870161399c565b9250506040613aee86828701613a1a565b9150509250925092565b60008060008060808587031215613b0e57600080fd5b6000613b1c8782880161399c565b9450506020613b2d8782880161399c565b9350506040613b3e87828801613a1a565b925050606085013567ffffffffffffffff811115613b5b57600080fd5b613b67878288016139f0565b91505092959194509250565b60008060408385031215613b8657600080fd5b6000613b948582860161399c565b9250506020613ba5858286016139b1565b9150509250929050565b60008060408385031215613bc257600080fd5b6000613bd08582860161399c565b9250506020613be185828601613a1a565b9150509250929050565b600060208284031215613bfd57600080fd5b6000613c0b848285016139c6565b91505092915050565b600060208284031215613c2657600080fd5b6000613c34848285016139db565b91505092915050565b600060208284031215613c4f57600080fd5b6000613c5d84828501613a1a565b91505092915050565b600060208284031215613c7857600080fd5b6000613c8684828501613a2f565b91505092915050565b60008060408385031215613ca257600080fd5b6000613cb085828601613a1a565b9250506020613cc185828601613a1a565b9150509250929050565b613cd481614a11565b82525050565b613ce381614a23565b82525050565b6000613cf4826148b9565b613cfe81856148cf565b9350613d0e818560208601614ab8565b613d1781614c8e565b840191505092915050565b613d2b81614a85565b82525050565b613d3a81614a97565b82525050565b6000613d4b826148c4565b613d5581856148e0565b9350613d65818560208601614ab8565b613d6e81614c8e565b840191505092915050565b6000613d84826148c4565b613d8e81856148f1565b9350613d9e818560208601614ab8565b80840191505092915050565b6000613db76068836148f1565b9150613dc282614c9f565b606882019050919050565b6000613dda602b836148e0565b9150613de582614d3a565b604082019050919050565b6000613dfd6032836148e0565b9150613e0882614d89565b604082019050919050565b6000613e206026836148e0565b9150613e2b82614dd8565b604082019050919050565b6000613e4360b8836148f1565b9150613e4e82614e27565b60b882019050919050565b6000613e666025836148e0565b9150613e7182614f0e565b604082019050919050565b6000613e89601c836148e0565b9150613e9482614f5d565b602082019050919050565b6000613eac6050836148f1565b9150613eb782614f86565b605082019050919050565b6000613ecf6001836148f1565b9150613eda82614ffb565b600182019050919050565b6000613ef26024836148e0565b9150613efd82615024565b604082019050919050565b6000613f156019836148e0565b9150613f2082615073565b602082019050919050565b6000613f386018836148e0565b9150613f438261509c565b602082019050919050565b6000613f5b602c836148e0565b9150613f66826150c5565b604082019050919050565b6000613f7e6038836148e0565b9150613f8982615114565b604082019050919050565b6000613fa1600f836148f1565b9150613fac82615163565b600f82019050919050565b6000613fc4602a836148e0565b9150613fcf8261518c565b604082019050919050565b6000613fe76029836148e0565b9150613ff2826151db565b604082019050919050565b600061400a6020836148e0565b91506140158261522a565b602082019050919050565b600061402d602c836148e0565b915061403882615253565b604082019050919050565b60006140506044836148f1565b915061405b826152a2565b604482019050919050565b60006140736011836148e0565b915061407e82615317565b602082019050919050565b60006140966020836148e0565b91506140a182615340565b602082019050919050565b60006140b9602a836148f1565b91506140c482615369565b602a82019050919050565b60006140dc606b836148f1565b91506140e7826153b8565b606b82019050919050565b60006140ff600a836148f1565b915061410a82615453565b600a82019050919050565b60006141226013836148e0565b915061412d8261547c565b602082019050919050565b6000614145606b836148f1565b9150614150826154a5565b606b82019050919050565b60006141686021836148e0565b915061417382615540565b604082019050919050565b600061418b601d836148f1565b91506141968261558f565b601d82019050919050565b60006141ae6031836148e0565b91506141b9826155b8565b604082019050919050565b60006141d1602c836148e0565b91506141dc82615607565b604082019050919050565b60006141f5610501836148f1565b915061420082615656565b61050182019050919050565b6000614219601f836148e0565b915061422482615c90565b602082019050919050565b600061423c6004836148f1565b915061424782615cb9565b600482019050919050565b61425b81614a7b565b82525050565b61427261426d82614a7b565b614b97565b82525050565b60006142848286613d79565b915061428f82613ec2565b915061429b8285613d79565b91506142a682613ec2565b91506142b28284613d79565b9150819050949350505050565b60006142ca82613e36565b91506142d6828d613d79565b91506142e182614138565b91506142ed828c613d79565b91506142f8826141e7565b9150614304828b613d79565b915061430f82613daa565b915061431b828a613d79565b915061432682614043565b91506143328289613d79565b915061433d826140ac565b91506143498288613d79565b9150614354826140ac565b91506143608287613d79565b915061436b826140ac565b91506143778286613d79565b9150614382826140ac565b915061438e8285613d79565b9150614399826140ac565b91506143a58284613d79565b91506143b082613f94565b91508190509b9a5050505050505050505050565b60006143cf826140f2565b91506143db8288613d79565b91506143e78287613d79565b91506143f38286613d79565b91506143fe826140cf565b915061440a8285613d79565b915061441582613e9f565b91506144218284613d79565b915061442c8261422f565b91508190509695505050505050565b60006144468261417e565b91506144528284613d79565b915081905092915050565b60006144698285614261565b6020820191506144798284614261565b6020820191508190509392505050565b600060208201905061449e6000830184613ccb565b92915050565b60006080820190506144b96000830187613ccb565b6144c66020830186613ccb565b6144d36040830185614252565b81810360608301526144e58184613ce9565b905095945050505050565b60006020820190506145056000830184613cda565b92915050565b60006040820190506145206000830185613d22565b61452d6020830184614252565b9392505050565b60006040820190506145496000830185613d31565b6145566020830184614252565b9392505050565b600060208201905081810360008301526145778184613d40565b905092915050565b6000602082019050818103600083015261459881613dcd565b9050919050565b600060208201905081810360008301526145b881613df0565b9050919050565b600060208201905081810360008301526145d881613e13565b9050919050565b600060208201905081810360008301526145f881613e59565b9050919050565b6000602082019050818103600083015261461881613e7c565b9050919050565b6000602082019050818103600083015261463881613ee5565b9050919050565b6000602082019050818103600083015261465881613f08565b9050919050565b6000602082019050818103600083015261467881613f2b565b9050919050565b6000602082019050818103600083015261469881613f4e565b9050919050565b600060208201905081810360008301526146b881613f71565b9050919050565b600060208201905081810360008301526146d881613fb7565b9050919050565b600060208201905081810360008301526146f881613fda565b9050919050565b6000602082019050818103600083015261471881613ffd565b9050919050565b6000602082019050818103600083015261473881614020565b9050919050565b6000602082019050818103600083015261475881614066565b9050919050565b6000602082019050818103600083015261477881614089565b9050919050565b6000602082019050818103600083015261479881614115565b9050919050565b600060208201905081810360008301526147b88161415b565b9050919050565b600060208201905081810360008301526147d8816141a1565b9050919050565b600060208201905081810360008301526147f8816141c4565b9050919050565b600060208201905081810360008301526148188161420c565b9050919050565b60006020820190506148346000830184614252565b92915050565b600060408201905061484f6000830185614252565b61485c6020830184614252565b9392505050565b600061486d61487e565b90506148798282614b1d565b919050565b6000604051905090565b600067ffffffffffffffff8211156148a3576148a2614c5f565b5b6148ac82614c8e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061490782614a7b565b915061491283614a7b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561494757614946614bd2565b5b828201905092915050565b600061495d82614a7b565b915061496883614a7b565b92508261497857614977614c01565b5b828204905092915050565b600061498e82614a7b565b915061499983614a7b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156149d2576149d1614bd2565b5b828202905092915050565b60006149e882614a7b565b91506149f383614a7b565b925082821015614a0657614a05614bd2565b5b828203905092915050565b6000614a1c82614a5b565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000614a9082614a7b565b9050919050565b6000614aa282614a7b565b9050919050565b82818337600083830152505050565b60005b83811015614ad6578082015181840152602081019050614abb565b83811115614ae5576000848401525b50505050565b60006002820490506001821680614b0357607f821691505b60208210811415614b1757614b16614c30565b5b50919050565b614b2682614c8e565b810181811067ffffffffffffffff82111715614b4557614b44614c5f565b5b80604052505050565b6000614b5982614a7b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614b8c57614b8b614bd2565b5b600182019050919050565b6000819050919050565b6000614bac82614a7b565b9150614bb783614a7b565b925082614bc757614bc6614c01565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f203022202f3e3c6665426c656e6420696e3d22536f757263654772617068696360008201527f2220696e323d22663622206d6f64653d2273637265656e22202f3e3c2f66696c60208201527f7465723e3c636972636c652069643d2263222063783d22353025222063793d2260408201527f3530252220723d22000000000000000000000000000000000000000000000000606082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f3c3f786d6c2076657273696f6e3d22312e302220656e636f64696e673d22555460008201527f462d38223f3e3c73766720786d6c6e733d22687474703a2f2f7777772e77332e60208201527f6f72672f323030302f737667222076696577426f783d2230203020323034382060408201527f32303438223e3c646566733e3c7374796c653e737667207b206261636b67726f60608201527f756e642d636f6c6f723a233030303b207d677b207472616e73666f726d3a207460808201527f72616e736c617465592863616c63282d302e303125202a20000000000000000060a082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f222c2261747472696275746573223a5b7b22646973706c61795f74797065223a60008201527f20226e756d626572222c202274726169745f74797065223a202244617973204860208201527f4f444c222c202276616c7565223a202200000000000000000000000000000000604082015250565b7f2c00000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f496e636f72726563742070617961626c6520616d6f756e740000000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f2922202f3e3c2f673e3c2f7376673e0000000000000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f222066696c7465723d2275726c2823662922202f3e3c2f646566733e3c673e3c60008201527f75736520687265663d2223632220636c6173733d22636c73222066696c6c3d2260208201527f7267622800000000000000000000000000000000000000000000000000000000604082015250565b7f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f2922202f3e3c75736520687265663d2223632220636c6173733d22636c73222060008201527f66696c6c3d227267622800000000000000000000000000000000000000000000602082015250565b7f222c20226465736372697074696f6e223a2022486f6c64204f6e20666f72204460008201527f656172204c696665222c2022637265617465645f6279223a2022626f757a652260208201527f2c2022696d6167655f64617461223a2022646174613a696d6167652f7376672b60408201527f786d6c3b6261736536342c000000000000000000000000000000000000000000606082015250565b7f7b226e616d65223a202200000000000000000000000000000000000000000000600082015250565b7f4578636565646564206d617820737570706c7900000000000000000000000000600082015250565b7f29293b616e696d6174696f6e3a20322e3073206c696e65617220307320696e6660008201527f696e69746520616c7465726e617465206c6f6f70323b7d2e636c73207b74726160208201527f6e73666f726d2d6f726967696e3a203530252063616c6328353025202b20636160408201527f6c6328302e303125202a20000000000000000000000000000000000000000000606082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f29293b616e696d6174696f6e3a206c6f6f703120696e66696e697465206c696e60008201527f6561723b6d69782d626c656e642d6d6f64653a2073637265656e3b7d406b657960208201527f6672616d6573206c6f6f7031207b3025207b207472616e73666f726d3a20726f60408201527f746174652830646567293b207d31303025207b207472616e73666f726d3a207260608201527f6f7461746528333630646567293b207d7d406b65796672616d6573206c6f6f7060808201527f32207b66726f6d207b206f7061636974793a20312e303b207d746f207b206f7060a08201527f61636974793a20302e393b207d7d67203a6e74682d6368696c64283129207b2060c08201527f616e696d6174696f6e2d6475726174696f6e3a2063616c6328312e3573202b2060e08201527f302e3073293b20616e696d6174696f6e2d64656c61793a202d312e31733b207d6101008201527f67203a6e74682d6368696c64283229207b20616e696d6174696f6e2d647572616101208201527f74696f6e3a2063616c6328312e3573202b20302e3273293b20616e696d6174696101408201527f6f6e2d64656c61793a202d302e37733b207d67203a6e74682d6368696c6428336101608201527f29207b20616e696d6174696f6e2d6475726174696f6e3a2063616c6328312e356101808201527f73202b20302e3373293b20616e696d6174696f6e2d64656c61793a202d302e356101a08201527f733b207d67203a6e74682d6368696c64283429207b20616e696d6174696f6e2d6101c08201527f6475726174696f6e3a2063616c6328312e3573202b20302e3573293b20616e696101e08201527f6d6174696f6e2d64656c61793a202d302e33733b207d67203a6e74682d6368696102008201527f6c64283529207b20616e696d6174696f6e2d6475726174696f6e3a2063616c636102208201527f28312e3573202b20302e3773293b20616e696d6174696f6e2d64656c61793a206102408201527f2d302e32733b207d67203a6e74682d6368696c64283629207b20616e696d61746102608201527f696f6e2d6475726174696f6e3a2063616c6328312e3573202b20312e3173293b6102808201527f20616e696d6174696f6e2d64656c61793a202d302e30733b207d3c2f7374796c6102a08201527f653e3c66696c7465722069643d22662220783d222d3230252220793d222d32306102c08201527f25222077696474683d223133302522206865696768743d2231333025222066696102e08201527f6c746572556e6974733d227573657253706163654f6e557365223e3c666547616103008201527f75737369616e426c757220696e3d22536f7572636547726170686963222072656103208201527f73756c743d2266312220737464446576696174696f6e3d2232303022202f3e3c6103408201527f6665436f6c6f724d617472697820696e3d2266312220726573756c743d2266326103608201527f2220747970653d226d6174726978222076616c7565733d2231203020302030206103808201527f30203020312030203020302030203020312030203020302030203020302e33206103a08201527f3022202f3e3c6665476175737369616e426c757220696e3d22536f75726365476103c08201527f7261706869632220726573756c743d2266332220737464446576696174696f6e6103e08201527f3d22333022202f3e3c6665436f6c6f724d617472697820696e3d2266332220726104008201527f6573756c743d2266342220747970653d226d6174726978222076616c7565733d6104208201527f22312030203020302030203020312030203020302030203020312030203020306104408201527f2030203020302e37203022202f3e3c6665426c656e6420696e3d2266322220696104608201527f6e323d2266342220726573756c743d22663522206d6f64653d2273637265656e6104808201527f22202f3e3c6665436f6c6f724d617472697820696e3d2266352220726573756c6104a08201527f743d2266362220747970653d226d6174726978222076616c7565733d223120306104c08201527f20302030203020302031203020302030203020302031203020302030203020306104e08201527f200000000000000000000000000000000000000000000000000000000000000061050082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f227d5d7d00000000000000000000000000000000000000000000000000000000600082015250565b615ceb81614a11565b8114615cf657600080fd5b50565b615d0281614a23565b8114615d0d57600080fd5b50565b615d1981614a2f565b8114615d2457600080fd5b50565b615d3081614a7b565b8114615d3b57600080fd5b5056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2fa264697066735822122059cd992c4349996abd342127ec54bab3b3ae9fe6f0319a2fdad88e7d7a9140ce64736f6c63430008040033

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.