ETH Price: $3,388.69 (-1.56%)
Gas: 2 Gwei

Token

FuckYous (FU)
 

Overview

Max Total Supply

2,056 FU

Holders

783

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 FU
0xd09be3296fba19f337a67487ccd6f0b7b3faffe1
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Cartoon middle-fingers because fuck you, that's why. Generative and 100% on-chain.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
FuckYous

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 15 : FuckYous.sol
// SPDX-License-Identifier: UNLICENSE
pragma solidity ^0.8.0;

import '@openzeppelin/contracts/token/ERC721/ERC721.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol';

import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/utils/Counters.sol';
import '@openzeppelin/contracts/utils/Strings.sol';

import 'base64-sol/base64.sol';

// An fuck you, to you and you and you.

contract FuckYous is Ownable, ERC721Enumerable {
	using Counters for Counters.Counter;
	using Strings for uint256;
	Counters.Counter private _tokenIdTracker;

	// Truth:
	string public constant R = 'Fuck you and you and you. I hate your friends and they hate too.';

	// sales shit
	bool public fuckStart; // sale started (default false)
	uint public fuckPrice = 0.02 ether; // price per NFT
	uint public fuckTotal = 9669; // max number in total
	// 10K - 319 CryptoJunks.wtf owners - 12 Hexis.wtf owners 
	uint public fuckLimit = 50; // max mints per transaction

	//
	constructor() ERC721('FuckYous', "FU") {
		//
	}

	//
	// managing
	//

	// withdraw balance
	function getPaid() public payable onlyOwner {
		require(payable(_msgSender()).send(address(this).balance));
	}

	function setStart(bool start) external onlyOwner { fuckStart = start; }
	function setPrice(uint price) external onlyOwner { fuckPrice = price; }
	function setTotal(uint total) external onlyOwner { fuckTotal = total; }
	function setLimit(uint limit) external onlyOwner { fuckLimit = limit; }

	//
	// main
	//

	function getFucked(uint _timesFucked) public payable {
		require(
			// ensure minting is only possible once sale has started
			fuckStart == true,
			'TOO EARLY: the fucking has not started.'
		);

		require(
			// ensure mintting is less than the limit constrained by gas
			_timesFucked <= fuckLimit,
			'TOO MUCH: you cannot fuck this much.'
		);

		require(
			// ensure the price was paid in full
			msg.value >= _timesFucked * fuckPrice,
			'TOO POOR: send moar ether.'
		);

		require(
			// ensure there are enough fucks left
			_tokenIdTracker.current() + _timesFucked < fuckTotal,
			'TOO MANY: not enough fucks to give.'
		);

    mint(msg.sender, _timesFucked);
	}

	// devMints - for CryptoJunks.wtf & Hexis.wtf
	function giveAFuck(address _to, uint _howManyFucks) external onlyOwner {
		mint(_to, _howManyFucks);
	}
	
	function giveManyFucks(address[] calldata _to) external onlyOwner {
		for (uint i = 0; i < _to.length; i++) {
			mint(_to[i]);
		}
	}

	// internal - mint loop
	function mint(address _to, uint _fucks) internal {
    for (uint i = 0; i < _fucks; i++) {            
      mint(_to);
    }
	}
	// internal - mint once
	function mint(address _to) internal {
		uint newTokenId = _tokenIdTracker.current();
		_safeMint(_to, newTokenId);
		// increment AFTER because starts at 0
		_tokenIdTracker.increment();
	}

	//
	// displaying
	//

	// future stuff for onchain stuff

	address public graphicsAddress;
	address public metadataAddress;
	FuckYousGraphics graphics;
	FuckYousMetadata metadata;

	function setGraphics(address _address) external onlyOwner {
		// set the adress
		graphicsAddress = _address;
		// set the contract 
		graphics = FuckYousGraphics(_address);
	}

	function getGraphics(uint tokenId)
		public
		view
		returns (string memory)
	{
		return graphics.getGraphics(tokenId);
	}

	function setMetadata(address _address) external onlyOwner {
		// set the adress
		metadataAddress = _address;
		// set the contract
		metadata = FuckYousMetadata(_address);
	}

	function getMetadata(uint tokenId)
		public
		view
		returns (string memory)
	{
		return metadata.getMetadata(tokenId);
	}

	function tokenURI(uint256 _tokenId)
		public
		view
		override
		returns (string memory)
	{
		return getMetadata(_tokenId);
	}

	// accept ether sent
	receive() external payable {}
}

contract FuckYousGraphics {

	string public name = "FuckYousGraphics";

  function getGraphics(uint)
		public
		pure
		returns (string memory)
	{
		return getGraphics();
	}
	
	function getGraphics()
		public
		pure
		returns (string memory)
	{
		return "ipfs://QmXbgNxtqB3r8YNjzxN5kmL3fykoAMhGVpcL7n7gvtdb2v";
	}
}

contract FuckYousMetadata {
	using Strings for uint256;

	string public name = "FuckYousMetadata";

	function getMetadata(uint256 _tokenId)
		public
		pure
		returns (string memory)
	{
		string memory desc = "Unite around the one thing we can all agree on - FUCK YOU! Get one or give one at https://fuckyous.wtf";
		string memory image = "ipfs://QmXbgNxtqB3r8YNjzxN5kmL3fykoAMhGVpcL7n7gvtdb2v";

		return string(abi.encodePacked(
			'data:application/json;base64,',
			Base64.encode(
				bytes(abi.encodePacked(
					'{',
						'"name": "Fuck Yous #', _tokenId.toString(), '",',
						'"description": "', desc, '",',
						'"image": "', image, '",',
						'"external_url": "https://fuckyous.wtf"',
					'}'
				))
			)
		));
	}
}

File 2 of 15 : ERC721.sol
// SPDX-License-Identifier: MIT

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 overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 3 of 15 : ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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() {
        _setOwner(_msgSender());
    }

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

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

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

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

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

File 5 of 15 : Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

File 7 of 15 : base64.sol
// SPDX-License-Identifier: MIT

/// @title Base64
/// @author Brecht Devos - <[email protected]>
/// @notice Provides a function for encoding some bytes in base64
library Base64 {
    string internal constant TABLE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/';

    function encode(bytes memory data) internal pure returns (string memory) {
        if (data.length == 0) return '';
        
        // load the table into memory
        string memory table = TABLE;

        // multiply by 4/3 rounded up
        uint256 encodedLen = 4 * ((data.length + 2) / 3);

        // add some extra buffer at the end required for the writing
        string memory result = new string(encodedLen + 32);

        assembly {
            // set the actual output length
            mstore(result, encodedLen)
            
            // prepare the lookup table
            let tablePtr := add(table, 1)
            
            // input ptr
            let dataPtr := data
            let endPtr := add(dataPtr, mload(data))
            
            // result ptr, jump over length
            let resultPtr := add(result, 32)
            
            // run over the input, 3 bytes at a time
            for {} lt(dataPtr, endPtr) {}
            {
               dataPtr := add(dataPtr, 3)
               
               // read 3 bytes
               let input := mload(dataPtr)
               
               // write 4 characters
               mstore(resultPtr, shl(248, mload(add(tablePtr, and(shr(18, input), 0x3F)))))
               resultPtr := add(resultPtr, 1)
               mstore(resultPtr, shl(248, mload(add(tablePtr, and(shr(12, input), 0x3F)))))
               resultPtr := add(resultPtr, 1)
               mstore(resultPtr, shl(248, mload(add(tablePtr, and(shr( 6, input), 0x3F)))))
               resultPtr := add(resultPtr, 1)
               mstore(resultPtr, shl(248, mload(add(tablePtr, and(        input,  0x3F)))))
               resultPtr := add(resultPtr, 1)
            }
            
            // padding with '='
            switch mod(mload(data), 3)
            case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) }
            case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) }
        }
        
        return result;
    }
}

File 8 of 15 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 15 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 10 of 15 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 11 of 15 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 12 of 15 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 13 of 15 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 14 of 15 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "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":[],"name":"R","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fuckLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fuckPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fuckStart","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fuckTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_timesFucked","type":"uint256"}],"name":"getFucked","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getGraphics","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getMetadata","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPaid","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_howManyFucks","type":"uint256"}],"name":"giveAFuck","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_to","type":"address[]"}],"name":"giveManyFucks","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"graphicsAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"metadataAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setGraphics","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"limit","type":"uint256"}],"name":"setLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"start","type":"bool"}],"name":"setStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"total","type":"uint256"}],"name":"setTotal","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"},{"stateMutability":"payable","type":"receive"}]

608060405266470de4df820000600d556125c5600e556032600f553480156200002757600080fd5b506040518060400160405280600881526020017f4675636b596f75730000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f4655000000000000000000000000000000000000000000000000000000000000815250620000b4620000a8620000ee60201b60201c565b620000f660201b60201c565b8160019080519060200190620000cc929190620001ba565b508060029080519060200190620000e5929190620001ba565b505050620002cf565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620001c8906200026a565b90600052602060002090601f016020900481019282620001ec576000855562000238565b82601f106200020757805160ff191683800117855562000238565b8280016001018555821562000238579182015b82811115620002375782518255916020019190600101906200021a565b5b5090506200024791906200024b565b5090565b5b80821115620002665760008160009055506001016200024c565b5090565b600060028204905060018216806200028357607f821691505b602082108114156200029a5762000299620002a0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61429080620002df6000396000f3fe6080604052600436106102295760003560e01c8063715018a611610123578063b13985ab116100ab578063e0e9c02f1161006f578063e0e9c02f14610806578063e985e9c514610831578063e9f9aaf01461086e578063f2fde38b14610899578063f3cb8385146108c257610230565b8063b13985ab14610751578063b39a90011461076d578063b88d4fde14610796578063c87b56dd146107bf578063cf41d6f8146107fc57610230565b806395d89b41116100f257806395d89b411461066c5780639c1ada7414610697578063a22cb465146106c0578063a574cea4146106e9578063a7a180c91461072657610230565b8063715018a6146105c457806378a882e8146105db5780638da5cb5b1461061857806391b7f5ed1461064357610230565b806327ea6f2b116101b157806358b3453a1161017557806358b3453a146104cd5780636352211e146104f657806368e24327146105335780636eb3500d1461055c57806370a082311461058757610230565b806327ea6f2b146103d65780632f745c59146103ff57806342842e0e1461043c5780634980e1be146104655780634f6ccce71461049057610230565b80631005f90e116101f85780631005f90e1461030357806313b21bac1461032e57806318160ddd146103595780631f8d1d501461038457806323b872dd146103ad57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da57610230565b3661023057005b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613035565b6108eb565b60405161026991906134ea565b60405180910390f35b34801561027e57600080fd5b50610287610965565b6040516102949190613505565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf91906130d8565b6109f7565b6040516102d19190613483565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc9190612f7b565b610a7c565b005b34801561030f57600080fd5b50610318610b94565b60405161032591906137c7565b60405180910390f35b34801561033a57600080fd5b50610343610b9a565b6040516103509190613483565b60405180910390f35b34801561036557600080fd5b5061036e610bc0565b60405161037b91906137c7565b60405180910390f35b34801561039057600080fd5b506103ab60048036038101906103a691906130d8565b610bcd565b005b3480156103b957600080fd5b506103d460048036038101906103cf9190612e65565b610c53565b005b3480156103e257600080fd5b506103fd60048036038101906103f891906130d8565b610cb3565b005b34801561040b57600080fd5b5061042660048036038101906104219190612f7b565b610d39565b60405161043391906137c7565b60405180910390f35b34801561044857600080fd5b50610463600480360381019061045e9190612e65565b610dde565b005b34801561047157600080fd5b5061047a610dfe565b6040516104879190613505565b60405180910390f35b34801561049c57600080fd5b506104b760048036038101906104b291906130d8565b610e1a565b6040516104c491906137c7565b60405180910390f35b3480156104d957600080fd5b506104f460048036038101906104ef9190612fbb565b610e8b565b005b34801561050257600080fd5b5061051d600480360381019061051891906130d8565b610f5d565b60405161052a9190613483565b60405180910390f35b34801561053f57600080fd5b5061055a60048036038101906105559190613008565b61100f565b005b34801561056857600080fd5b506105716110a8565b60405161057e9190613483565b60405180910390f35b34801561059357600080fd5b506105ae60048036038101906105a99190612df8565b6110ce565b6040516105bb91906137c7565b60405180910390f35b3480156105d057600080fd5b506105d9611186565b005b3480156105e757600080fd5b5061060260048036038101906105fd91906130d8565b61120e565b60405161060f9190613505565b60405180910390f35b34801561062457600080fd5b5061062d6112c7565b60405161063a9190613483565b60405180910390f35b34801561064f57600080fd5b5061066a600480360381019061066591906130d8565b6112f0565b005b34801561067857600080fd5b50610681611376565b60405161068e9190613505565b60405180910390f35b3480156106a357600080fd5b506106be60048036038101906106b99190612df8565b611408565b005b3480156106cc57600080fd5b506106e760048036038101906106e29190612f3b565b611509565b005b3480156106f557600080fd5b50610710600480360381019061070b91906130d8565b61168a565b60405161071d9190613505565b60405180910390f35b34801561073257600080fd5b5061073b611743565b60405161074891906134ea565b60405180910390f35b61076b600480360381019061076691906130d8565b611756565b005b34801561077957600080fd5b50610794600480360381019061078f9190612f7b565b6118a6565b005b3480156107a257600080fd5b506107bd60048036038101906107b89190612eb8565b611930565b005b3480156107cb57600080fd5b506107e660048036038101906107e191906130d8565b611992565b6040516107f39190613505565b60405180910390f35b6108046119a4565b005b34801561081257600080fd5b5061081b611a67565b60405161082891906137c7565b60405180910390f35b34801561083d57600080fd5b5061085860048036038101906108539190612e25565b611a6d565b60405161086591906134ea565b60405180910390f35b34801561087a57600080fd5b50610883611b01565b60405161089091906137c7565b60405180910390f35b3480156108a557600080fd5b506108c060048036038101906108bb9190612df8565b611b07565b005b3480156108ce57600080fd5b506108e960048036038101906108e49190612df8565b611bff565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061095e575061095d82611d00565b5b9050919050565b60606001805461097490613a3b565b80601f01602080910402602001604051908101604052809291908181526020018280546109a090613a3b565b80156109ed5780601f106109c2576101008083540402835291602001916109ed565b820191906000526020600020905b8154815290600101906020018083116109d057829003601f168201915b5050505050905090565b6000610a0282611de2565b610a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a38906136c7565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8782610f5d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610af8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aef90613747565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b17611e4e565b73ffffffffffffffffffffffffffffffffffffffff161480610b465750610b4581610b40611e4e565b611a6d565b5b610b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7c90613627565b60405180910390fd5b610b8f8383611e56565b505050565b600f5481565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600980549050905090565b610bd5611e4e565b73ffffffffffffffffffffffffffffffffffffffff16610bf36112c7565b73ffffffffffffffffffffffffffffffffffffffff1614610c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c40906136e7565b60405180910390fd5b80600e8190555050565b610c64610c5e611e4e565b82611f0f565b610ca3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9a90613767565b60405180910390fd5b610cae838383611fed565b505050565b610cbb611e4e565b73ffffffffffffffffffffffffffffffffffffffff16610cd96112c7565b73ffffffffffffffffffffffffffffffffffffffff1614610d2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d26906136e7565b60405180910390fd5b80600f8190555050565b6000610d44836110ce565b8210610d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7c90613527565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610df983838360405180602001604052806000815250611930565b505050565b60405180606001604052806040815260200161421b6040913981565b6000610e24610bc0565b8210610e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5c90613787565b60405180910390fd5b60098281548110610e7957610e78613b74565b5b90600052602060002001549050919050565b610e93611e4e565b73ffffffffffffffffffffffffffffffffffffffff16610eb16112c7565b73ffffffffffffffffffffffffffffffffffffffff1614610f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efe906136e7565b60405180910390fd5b60005b82829050811015610f5857610f45838383818110610f2b57610f2a613b74565b5b9050602002016020810190610f409190612df8565b612249565b8080610f5090613a9e565b915050610f0a565b505050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffd90613667565b60405180910390fd5b80915050919050565b611017611e4e565b73ffffffffffffffffffffffffffffffffffffffff166110356112c7565b73ffffffffffffffffffffffffffffffffffffffff161461108b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611082906136e7565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561113f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113690613647565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61118e611e4e565b73ffffffffffffffffffffffffffffffffffffffff166111ac6112c7565b73ffffffffffffffffffffffffffffffffffffffff1614611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f9906136e7565b60405180910390fd5b61120c600061226f565b565b6060601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166378a882e8836040518263ffffffff1660e01b815260040161126b91906137c7565b60006040518083038186803b15801561128357600080fd5b505afa158015611297573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906112c0919061308f565b9050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112f8611e4e565b73ffffffffffffffffffffffffffffffffffffffff166113166112c7565b73ffffffffffffffffffffffffffffffffffffffff161461136c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611363906136e7565b60405180910390fd5b80600d8190555050565b60606002805461138590613a3b565b80601f01602080910402602001604051908101604052809291908181526020018280546113b190613a3b565b80156113fe5780601f106113d3576101008083540402835291602001916113fe565b820191906000526020600020905b8154815290600101906020018083116113e157829003601f168201915b5050505050905090565b611410611e4e565b73ffffffffffffffffffffffffffffffffffffffff1661142e6112c7565b73ffffffffffffffffffffffffffffffffffffffff1614611484576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147b906136e7565b60405180910390fd5b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611511611e4e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561157f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611576906135c7565b60405180910390fd5b806006600061158c611e4e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611639611e4e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161167e91906134ea565b60405180910390a35050565b6060601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a574cea4836040518263ffffffff1660e01b81526004016116e791906137c7565b60006040518083038186803b1580156116ff57600080fd5b505afa158015611713573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f8201168201806040525081019061173c919061308f565b9050919050565b600c60009054906101000a900460ff1681565b60011515600c60009054906101000a900460ff161515146117ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a390613727565b60405180910390fd5b600f548111156117f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e8906137a7565b60405180910390fd5b600d54816117ff91906138f7565b341015611841576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183890613607565b60405180910390fd5b600e548161184f600b612333565b61185991906138a1565b10611899576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189090613687565b60405180910390fd5b6118a33382612341565b50565b6118ae611e4e565b73ffffffffffffffffffffffffffffffffffffffff166118cc6112c7565b73ffffffffffffffffffffffffffffffffffffffff1614611922576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611919906136e7565b60405180910390fd5b61192c8282612341565b5050565b61194161193b611e4e565b83611f0f565b611980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197790613767565b60405180910390fd5b61198c8484848461236d565b50505050565b606061199d8261168a565b9050919050565b6119ac611e4e565b73ffffffffffffffffffffffffffffffffffffffff166119ca6112c7565b73ffffffffffffffffffffffffffffffffffffffff1614611a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a17906136e7565b60405180910390fd5b611a28611e4e565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050611a6557600080fd5b565b600e5481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d5481565b611b0f611e4e565b73ffffffffffffffffffffffffffffffffffffffff16611b2d6112c7565b73ffffffffffffffffffffffffffffffffffffffff1614611b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7a906136e7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bea90613567565b60405180910390fd5b611bfc8161226f565b50565b611c07611e4e565b73ffffffffffffffffffffffffffffffffffffffff16611c256112c7565b73ffffffffffffffffffffffffffffffffffffffff1614611c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c72906136e7565b60405180910390fd5b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611dcb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611ddb5750611dda826123c9565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ec983610f5d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611f1a82611de2565b611f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f50906135e7565b60405180910390fd5b6000611f6483610f5d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611fd357508373ffffffffffffffffffffffffffffffffffffffff16611fbb846109f7565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fe45750611fe38185611a6d565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661200d82610f5d565b73ffffffffffffffffffffffffffffffffffffffff1614612063576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205a90613707565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ca906135a7565b60405180910390fd5b6120de838383612433565b6120e9600082611e56565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121399190613951565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461219091906138a1565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612255600b612333565b90506122618282612547565b61226b600b612565565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b60005b818110156123685761235583612249565b808061236090613a9e565b915050612344565b505050565b612378848484611fed565b6123848484848461257b565b6123c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ba90613547565b60405180910390fd5b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61243e838383612712565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124815761247c81612717565b6124c0565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146124bf576124be8382612760565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612503576124fe816128cd565b612542565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461254157612540828261299e565b5b5b505050565b612561828260405180602001604052806000815250612a1d565b5050565b6001816000016000828254019250508190555050565b600061259c8473ffffffffffffffffffffffffffffffffffffffff16612a78565b15612705578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125c5611e4e565b8786866040518563ffffffff1660e01b81526004016125e7949392919061349e565b602060405180830381600087803b15801561260157600080fd5b505af192505050801561263257506040513d601f19601f8201168201806040525081019061262f9190613062565b60015b6126b5573d8060008114612662576040519150601f19603f3d011682016040523d82523d6000602084013e612667565b606091505b506000815114156126ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a490613547565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061270a565b600190505b949350505050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161276d846110ce565b6127779190613951565b905060006008600084815260200190815260200160002054905081811461285c576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506128e19190613951565b90506000600a600084815260200190815260200160002054905060006009838154811061291157612910613b74565b5b90600052602060002001549050806009838154811061293357612932613b74565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a600085815260200190815260200160002060009055600980548061298257612981613b45565b5b6001900381819060005260206000200160009055905550505050565b60006129a9836110ce565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b612a278383612a8b565b612a34600084848461257b565b612a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6a90613547565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af2906136a7565b60405180910390fd5b612b0481611de2565b15612b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3b90613587565b60405180910390fd5b612b5060008383612433565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ba091906138a1565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000612c6c612c6784613807565b6137e2565b905082815260208101848484011115612c8857612c87613be1565b5b612c938482856139f9565b509392505050565b6000612cae612ca984613838565b6137e2565b905082815260208101848484011115612cca57612cc9613be1565b5b612cd5848285613a08565b509392505050565b600081359050612cec816141be565b92915050565b60008083601f840112612d0857612d07613bd7565b5b8235905067ffffffffffffffff811115612d2557612d24613bd2565b5b602083019150836020820283011115612d4157612d40613bdc565b5b9250929050565b600081359050612d57816141d5565b92915050565b600081359050612d6c816141ec565b92915050565b600081519050612d81816141ec565b92915050565b600082601f830112612d9c57612d9b613bd7565b5b8135612dac848260208601612c59565b91505092915050565b600082601f830112612dca57612dc9613bd7565b5b8151612dda848260208601612c9b565b91505092915050565b600081359050612df281614203565b92915050565b600060208284031215612e0e57612e0d613beb565b5b6000612e1c84828501612cdd565b91505092915050565b60008060408385031215612e3c57612e3b613beb565b5b6000612e4a85828601612cdd565b9250506020612e5b85828601612cdd565b9150509250929050565b600080600060608486031215612e7e57612e7d613beb565b5b6000612e8c86828701612cdd565b9350506020612e9d86828701612cdd565b9250506040612eae86828701612de3565b9150509250925092565b60008060008060808587031215612ed257612ed1613beb565b5b6000612ee087828801612cdd565b9450506020612ef187828801612cdd565b9350506040612f0287828801612de3565b925050606085013567ffffffffffffffff811115612f2357612f22613be6565b5b612f2f87828801612d87565b91505092959194509250565b60008060408385031215612f5257612f51613beb565b5b6000612f6085828601612cdd565b9250506020612f7185828601612d48565b9150509250929050565b60008060408385031215612f9257612f91613beb565b5b6000612fa085828601612cdd565b9250506020612fb185828601612de3565b9150509250929050565b60008060208385031215612fd257612fd1613beb565b5b600083013567ffffffffffffffff811115612ff057612fef613be6565b5b612ffc85828601612cf2565b92509250509250929050565b60006020828403121561301e5761301d613beb565b5b600061302c84828501612d48565b91505092915050565b60006020828403121561304b5761304a613beb565b5b600061305984828501612d5d565b91505092915050565b60006020828403121561307857613077613beb565b5b600061308684828501612d72565b91505092915050565b6000602082840312156130a5576130a4613beb565b5b600082015167ffffffffffffffff8111156130c3576130c2613be6565b5b6130cf84828501612db5565b91505092915050565b6000602082840312156130ee576130ed613beb565b5b60006130fc84828501612de3565b91505092915050565b61310e81613985565b82525050565b61311d81613997565b82525050565b600061312e82613869565b613138818561387f565b9350613148818560208601613a08565b61315181613bf0565b840191505092915050565b600061316782613874565b6131718185613890565b9350613181818560208601613a08565b61318a81613bf0565b840191505092915050565b60006131a2602b83613890565b91506131ad82613c01565b604082019050919050565b60006131c5603283613890565b91506131d082613c50565b604082019050919050565b60006131e8602683613890565b91506131f382613c9f565b604082019050919050565b600061320b601c83613890565b915061321682613cee565b602082019050919050565b600061322e602483613890565b915061323982613d17565b604082019050919050565b6000613251601983613890565b915061325c82613d66565b602082019050919050565b6000613274602c83613890565b915061327f82613d8f565b604082019050919050565b6000613297601a83613890565b91506132a282613dde565b602082019050919050565b60006132ba603883613890565b91506132c582613e07565b604082019050919050565b60006132dd602a83613890565b91506132e882613e56565b604082019050919050565b6000613300602983613890565b915061330b82613ea5565b604082019050919050565b6000613323602383613890565b915061332e82613ef4565b604082019050919050565b6000613346602083613890565b915061335182613f43565b602082019050919050565b6000613369602c83613890565b915061337482613f6c565b604082019050919050565b600061338c602083613890565b915061339782613fbb565b602082019050919050565b60006133af602983613890565b91506133ba82613fe4565b604082019050919050565b60006133d2602783613890565b91506133dd82614033565b604082019050919050565b60006133f5602183613890565b915061340082614082565b604082019050919050565b6000613418603183613890565b9150613423826140d1565b604082019050919050565b600061343b602c83613890565b915061344682614120565b604082019050919050565b600061345e602483613890565b91506134698261416f565b604082019050919050565b61347d816139ef565b82525050565b60006020820190506134986000830184613105565b92915050565b60006080820190506134b36000830187613105565b6134c06020830186613105565b6134cd6040830185613474565b81810360608301526134df8184613123565b905095945050505050565b60006020820190506134ff6000830184613114565b92915050565b6000602082019050818103600083015261351f818461315c565b905092915050565b6000602082019050818103600083015261354081613195565b9050919050565b60006020820190508181036000830152613560816131b8565b9050919050565b60006020820190508181036000830152613580816131db565b9050919050565b600060208201905081810360008301526135a0816131fe565b9050919050565b600060208201905081810360008301526135c081613221565b9050919050565b600060208201905081810360008301526135e081613244565b9050919050565b6000602082019050818103600083015261360081613267565b9050919050565b600060208201905081810360008301526136208161328a565b9050919050565b60006020820190508181036000830152613640816132ad565b9050919050565b60006020820190508181036000830152613660816132d0565b9050919050565b60006020820190508181036000830152613680816132f3565b9050919050565b600060208201905081810360008301526136a081613316565b9050919050565b600060208201905081810360008301526136c081613339565b9050919050565b600060208201905081810360008301526136e08161335c565b9050919050565b600060208201905081810360008301526137008161337f565b9050919050565b60006020820190508181036000830152613720816133a2565b9050919050565b60006020820190508181036000830152613740816133c5565b9050919050565b60006020820190508181036000830152613760816133e8565b9050919050565b600060208201905081810360008301526137808161340b565b9050919050565b600060208201905081810360008301526137a08161342e565b9050919050565b600060208201905081810360008301526137c081613451565b9050919050565b60006020820190506137dc6000830184613474565b92915050565b60006137ec6137fd565b90506137f88282613a6d565b919050565b6000604051905090565b600067ffffffffffffffff82111561382257613821613ba3565b5b61382b82613bf0565b9050602081019050919050565b600067ffffffffffffffff82111561385357613852613ba3565b5b61385c82613bf0565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006138ac826139ef565b91506138b7836139ef565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138ec576138eb613ae7565b5b828201905092915050565b6000613902826139ef565b915061390d836139ef565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561394657613945613ae7565b5b828202905092915050565b600061395c826139ef565b9150613967836139ef565b92508282101561397a57613979613ae7565b5b828203905092915050565b6000613990826139cf565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613a26578082015181840152602081019050613a0b565b83811115613a35576000848401525b50505050565b60006002820490506001821680613a5357607f821691505b60208210811415613a6757613a66613b16565b5b50919050565b613a7682613bf0565b810181811067ffffffffffffffff82111715613a9557613a94613ba3565b5b80604052505050565b6000613aa9826139ef565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613adc57613adb613ae7565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f544f4f20504f4f523a2073656e64206d6f61722065746865722e000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f544f4f204d414e593a206e6f7420656e6f756768206675636b7320746f20676960008201527f76652e0000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f544f4f204541524c593a20746865206675636b696e6720686173206e6f74207360008201527f7461727465642e00000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f544f4f204d5543483a20796f752063616e6e6f74206675636b2074686973206d60008201527f7563682e00000000000000000000000000000000000000000000000000000000602082015250565b6141c781613985565b81146141d257600080fd5b50565b6141de81613997565b81146141e957600080fd5b50565b6141f5816139a3565b811461420057600080fd5b50565b61420c816139ef565b811461421757600080fd5b5056fe4675636b20796f7520616e6420796f7520616e6420796f752e2049206861746520796f757220667269656e647320616e642074686579206861746520746f6f2ea2646970667358221220309b1d045c9af9dc82c04dcf5811bce7f13d174fcc46719516be4ca2da5a827664736f6c63430008060033

Deployed Bytecode

0x6080604052600436106102295760003560e01c8063715018a611610123578063b13985ab116100ab578063e0e9c02f1161006f578063e0e9c02f14610806578063e985e9c514610831578063e9f9aaf01461086e578063f2fde38b14610899578063f3cb8385146108c257610230565b8063b13985ab14610751578063b39a90011461076d578063b88d4fde14610796578063c87b56dd146107bf578063cf41d6f8146107fc57610230565b806395d89b41116100f257806395d89b411461066c5780639c1ada7414610697578063a22cb465146106c0578063a574cea4146106e9578063a7a180c91461072657610230565b8063715018a6146105c457806378a882e8146105db5780638da5cb5b1461061857806391b7f5ed1461064357610230565b806327ea6f2b116101b157806358b3453a1161017557806358b3453a146104cd5780636352211e146104f657806368e24327146105335780636eb3500d1461055c57806370a082311461058757610230565b806327ea6f2b146103d65780632f745c59146103ff57806342842e0e1461043c5780634980e1be146104655780634f6ccce71461049057610230565b80631005f90e116101f85780631005f90e1461030357806313b21bac1461032e57806318160ddd146103595780631f8d1d501461038457806323b872dd146103ad57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da57610230565b3661023057005b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613035565b6108eb565b60405161026991906134ea565b60405180910390f35b34801561027e57600080fd5b50610287610965565b6040516102949190613505565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf91906130d8565b6109f7565b6040516102d19190613483565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc9190612f7b565b610a7c565b005b34801561030f57600080fd5b50610318610b94565b60405161032591906137c7565b60405180910390f35b34801561033a57600080fd5b50610343610b9a565b6040516103509190613483565b60405180910390f35b34801561036557600080fd5b5061036e610bc0565b60405161037b91906137c7565b60405180910390f35b34801561039057600080fd5b506103ab60048036038101906103a691906130d8565b610bcd565b005b3480156103b957600080fd5b506103d460048036038101906103cf9190612e65565b610c53565b005b3480156103e257600080fd5b506103fd60048036038101906103f891906130d8565b610cb3565b005b34801561040b57600080fd5b5061042660048036038101906104219190612f7b565b610d39565b60405161043391906137c7565b60405180910390f35b34801561044857600080fd5b50610463600480360381019061045e9190612e65565b610dde565b005b34801561047157600080fd5b5061047a610dfe565b6040516104879190613505565b60405180910390f35b34801561049c57600080fd5b506104b760048036038101906104b291906130d8565b610e1a565b6040516104c491906137c7565b60405180910390f35b3480156104d957600080fd5b506104f460048036038101906104ef9190612fbb565b610e8b565b005b34801561050257600080fd5b5061051d600480360381019061051891906130d8565b610f5d565b60405161052a9190613483565b60405180910390f35b34801561053f57600080fd5b5061055a60048036038101906105559190613008565b61100f565b005b34801561056857600080fd5b506105716110a8565b60405161057e9190613483565b60405180910390f35b34801561059357600080fd5b506105ae60048036038101906105a99190612df8565b6110ce565b6040516105bb91906137c7565b60405180910390f35b3480156105d057600080fd5b506105d9611186565b005b3480156105e757600080fd5b5061060260048036038101906105fd91906130d8565b61120e565b60405161060f9190613505565b60405180910390f35b34801561062457600080fd5b5061062d6112c7565b60405161063a9190613483565b60405180910390f35b34801561064f57600080fd5b5061066a600480360381019061066591906130d8565b6112f0565b005b34801561067857600080fd5b50610681611376565b60405161068e9190613505565b60405180910390f35b3480156106a357600080fd5b506106be60048036038101906106b99190612df8565b611408565b005b3480156106cc57600080fd5b506106e760048036038101906106e29190612f3b565b611509565b005b3480156106f557600080fd5b50610710600480360381019061070b91906130d8565b61168a565b60405161071d9190613505565b60405180910390f35b34801561073257600080fd5b5061073b611743565b60405161074891906134ea565b60405180910390f35b61076b600480360381019061076691906130d8565b611756565b005b34801561077957600080fd5b50610794600480360381019061078f9190612f7b565b6118a6565b005b3480156107a257600080fd5b506107bd60048036038101906107b89190612eb8565b611930565b005b3480156107cb57600080fd5b506107e660048036038101906107e191906130d8565b611992565b6040516107f39190613505565b60405180910390f35b6108046119a4565b005b34801561081257600080fd5b5061081b611a67565b60405161082891906137c7565b60405180910390f35b34801561083d57600080fd5b5061085860048036038101906108539190612e25565b611a6d565b60405161086591906134ea565b60405180910390f35b34801561087a57600080fd5b50610883611b01565b60405161089091906137c7565b60405180910390f35b3480156108a557600080fd5b506108c060048036038101906108bb9190612df8565b611b07565b005b3480156108ce57600080fd5b506108e960048036038101906108e49190612df8565b611bff565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061095e575061095d82611d00565b5b9050919050565b60606001805461097490613a3b565b80601f01602080910402602001604051908101604052809291908181526020018280546109a090613a3b565b80156109ed5780601f106109c2576101008083540402835291602001916109ed565b820191906000526020600020905b8154815290600101906020018083116109d057829003601f168201915b5050505050905090565b6000610a0282611de2565b610a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a38906136c7565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8782610f5d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610af8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aef90613747565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b17611e4e565b73ffffffffffffffffffffffffffffffffffffffff161480610b465750610b4581610b40611e4e565b611a6d565b5b610b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7c90613627565b60405180910390fd5b610b8f8383611e56565b505050565b600f5481565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600980549050905090565b610bd5611e4e565b73ffffffffffffffffffffffffffffffffffffffff16610bf36112c7565b73ffffffffffffffffffffffffffffffffffffffff1614610c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c40906136e7565b60405180910390fd5b80600e8190555050565b610c64610c5e611e4e565b82611f0f565b610ca3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9a90613767565b60405180910390fd5b610cae838383611fed565b505050565b610cbb611e4e565b73ffffffffffffffffffffffffffffffffffffffff16610cd96112c7565b73ffffffffffffffffffffffffffffffffffffffff1614610d2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d26906136e7565b60405180910390fd5b80600f8190555050565b6000610d44836110ce565b8210610d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7c90613527565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610df983838360405180602001604052806000815250611930565b505050565b60405180606001604052806040815260200161421b6040913981565b6000610e24610bc0565b8210610e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5c90613787565b60405180910390fd5b60098281548110610e7957610e78613b74565b5b90600052602060002001549050919050565b610e93611e4e565b73ffffffffffffffffffffffffffffffffffffffff16610eb16112c7565b73ffffffffffffffffffffffffffffffffffffffff1614610f07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efe906136e7565b60405180910390fd5b60005b82829050811015610f5857610f45838383818110610f2b57610f2a613b74565b5b9050602002016020810190610f409190612df8565b612249565b8080610f5090613a9e565b915050610f0a565b505050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611006576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffd90613667565b60405180910390fd5b80915050919050565b611017611e4e565b73ffffffffffffffffffffffffffffffffffffffff166110356112c7565b73ffffffffffffffffffffffffffffffffffffffff161461108b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611082906136e7565b60405180910390fd5b80600c60006101000a81548160ff02191690831515021790555050565b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561113f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113690613647565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61118e611e4e565b73ffffffffffffffffffffffffffffffffffffffff166111ac6112c7565b73ffffffffffffffffffffffffffffffffffffffff1614611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f9906136e7565b60405180910390fd5b61120c600061226f565b565b6060601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166378a882e8836040518263ffffffff1660e01b815260040161126b91906137c7565b60006040518083038186803b15801561128357600080fd5b505afa158015611297573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906112c0919061308f565b9050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112f8611e4e565b73ffffffffffffffffffffffffffffffffffffffff166113166112c7565b73ffffffffffffffffffffffffffffffffffffffff161461136c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611363906136e7565b60405180910390fd5b80600d8190555050565b60606002805461138590613a3b565b80601f01602080910402602001604051908101604052809291908181526020018280546113b190613a3b565b80156113fe5780601f106113d3576101008083540402835291602001916113fe565b820191906000526020600020905b8154815290600101906020018083116113e157829003601f168201915b5050505050905090565b611410611e4e565b73ffffffffffffffffffffffffffffffffffffffff1661142e6112c7565b73ffffffffffffffffffffffffffffffffffffffff1614611484576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147b906136e7565b60405180910390fd5b80601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611511611e4e565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561157f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611576906135c7565b60405180910390fd5b806006600061158c611e4e565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611639611e4e565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161167e91906134ea565b60405180910390a35050565b6060601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a574cea4836040518263ffffffff1660e01b81526004016116e791906137c7565b60006040518083038186803b1580156116ff57600080fd5b505afa158015611713573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f8201168201806040525081019061173c919061308f565b9050919050565b600c60009054906101000a900460ff1681565b60011515600c60009054906101000a900460ff161515146117ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a390613727565b60405180910390fd5b600f548111156117f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e8906137a7565b60405180910390fd5b600d54816117ff91906138f7565b341015611841576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183890613607565b60405180910390fd5b600e548161184f600b612333565b61185991906138a1565b10611899576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189090613687565b60405180910390fd5b6118a33382612341565b50565b6118ae611e4e565b73ffffffffffffffffffffffffffffffffffffffff166118cc6112c7565b73ffffffffffffffffffffffffffffffffffffffff1614611922576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611919906136e7565b60405180910390fd5b61192c8282612341565b5050565b61194161193b611e4e565b83611f0f565b611980576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197790613767565b60405180910390fd5b61198c8484848461236d565b50505050565b606061199d8261168a565b9050919050565b6119ac611e4e565b73ffffffffffffffffffffffffffffffffffffffff166119ca6112c7565b73ffffffffffffffffffffffffffffffffffffffff1614611a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a17906136e7565b60405180910390fd5b611a28611e4e565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050611a6557600080fd5b565b600e5481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600d5481565b611b0f611e4e565b73ffffffffffffffffffffffffffffffffffffffff16611b2d6112c7565b73ffffffffffffffffffffffffffffffffffffffff1614611b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7a906136e7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bea90613567565b60405180910390fd5b611bfc8161226f565b50565b611c07611e4e565b73ffffffffffffffffffffffffffffffffffffffff16611c256112c7565b73ffffffffffffffffffffffffffffffffffffffff1614611c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c72906136e7565b60405180910390fd5b80601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611dcb57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611ddb5750611dda826123c9565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ec983610f5d565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611f1a82611de2565b611f59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f50906135e7565b60405180910390fd5b6000611f6483610f5d565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611fd357508373ffffffffffffffffffffffffffffffffffffffff16611fbb846109f7565b73ffffffffffffffffffffffffffffffffffffffff16145b80611fe45750611fe38185611a6d565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661200d82610f5d565b73ffffffffffffffffffffffffffffffffffffffff1614612063576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205a90613707565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156120d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120ca906135a7565b60405180910390fd5b6120de838383612433565b6120e9600082611e56565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121399190613951565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461219091906138a1565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000612255600b612333565b90506122618282612547565b61226b600b612565565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600001549050919050565b60005b818110156123685761235583612249565b808061236090613a9e565b915050612344565b505050565b612378848484611fed565b6123848484848461257b565b6123c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ba90613547565b60405180910390fd5b50505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61243e838383612712565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156124815761247c81612717565b6124c0565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146124bf576124be8382612760565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612503576124fe816128cd565b612542565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461254157612540828261299e565b5b5b505050565b612561828260405180602001604052806000815250612a1d565b5050565b6001816000016000828254019250508190555050565b600061259c8473ffffffffffffffffffffffffffffffffffffffff16612a78565b15612705578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026125c5611e4e565b8786866040518563ffffffff1660e01b81526004016125e7949392919061349e565b602060405180830381600087803b15801561260157600080fd5b505af192505050801561263257506040513d601f19601f8201168201806040525081019061262f9190613062565b60015b6126b5573d8060008114612662576040519150601f19603f3d011682016040523d82523d6000602084013e612667565b606091505b506000815114156126ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126a490613547565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061270a565b600190505b949350505050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161276d846110ce565b6127779190613951565b905060006008600084815260200190815260200160002054905081811461285c576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506128e19190613951565b90506000600a600084815260200190815260200160002054905060006009838154811061291157612910613b74565b5b90600052602060002001549050806009838154811061293357612932613b74565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a600085815260200190815260200160002060009055600980548061298257612981613b45565b5b6001900381819060005260206000200160009055905550505050565b60006129a9836110ce565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b612a278383612a8b565b612a34600084848461257b565b612a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6a90613547565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612afb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612af2906136a7565b60405180910390fd5b612b0481611de2565b15612b44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b3b90613587565b60405180910390fd5b612b5060008383612433565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ba091906138a1565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6000612c6c612c6784613807565b6137e2565b905082815260208101848484011115612c8857612c87613be1565b5b612c938482856139f9565b509392505050565b6000612cae612ca984613838565b6137e2565b905082815260208101848484011115612cca57612cc9613be1565b5b612cd5848285613a08565b509392505050565b600081359050612cec816141be565b92915050565b60008083601f840112612d0857612d07613bd7565b5b8235905067ffffffffffffffff811115612d2557612d24613bd2565b5b602083019150836020820283011115612d4157612d40613bdc565b5b9250929050565b600081359050612d57816141d5565b92915050565b600081359050612d6c816141ec565b92915050565b600081519050612d81816141ec565b92915050565b600082601f830112612d9c57612d9b613bd7565b5b8135612dac848260208601612c59565b91505092915050565b600082601f830112612dca57612dc9613bd7565b5b8151612dda848260208601612c9b565b91505092915050565b600081359050612df281614203565b92915050565b600060208284031215612e0e57612e0d613beb565b5b6000612e1c84828501612cdd565b91505092915050565b60008060408385031215612e3c57612e3b613beb565b5b6000612e4a85828601612cdd565b9250506020612e5b85828601612cdd565b9150509250929050565b600080600060608486031215612e7e57612e7d613beb565b5b6000612e8c86828701612cdd565b9350506020612e9d86828701612cdd565b9250506040612eae86828701612de3565b9150509250925092565b60008060008060808587031215612ed257612ed1613beb565b5b6000612ee087828801612cdd565b9450506020612ef187828801612cdd565b9350506040612f0287828801612de3565b925050606085013567ffffffffffffffff811115612f2357612f22613be6565b5b612f2f87828801612d87565b91505092959194509250565b60008060408385031215612f5257612f51613beb565b5b6000612f6085828601612cdd565b9250506020612f7185828601612d48565b9150509250929050565b60008060408385031215612f9257612f91613beb565b5b6000612fa085828601612cdd565b9250506020612fb185828601612de3565b9150509250929050565b60008060208385031215612fd257612fd1613beb565b5b600083013567ffffffffffffffff811115612ff057612fef613be6565b5b612ffc85828601612cf2565b92509250509250929050565b60006020828403121561301e5761301d613beb565b5b600061302c84828501612d48565b91505092915050565b60006020828403121561304b5761304a613beb565b5b600061305984828501612d5d565b91505092915050565b60006020828403121561307857613077613beb565b5b600061308684828501612d72565b91505092915050565b6000602082840312156130a5576130a4613beb565b5b600082015167ffffffffffffffff8111156130c3576130c2613be6565b5b6130cf84828501612db5565b91505092915050565b6000602082840312156130ee576130ed613beb565b5b60006130fc84828501612de3565b91505092915050565b61310e81613985565b82525050565b61311d81613997565b82525050565b600061312e82613869565b613138818561387f565b9350613148818560208601613a08565b61315181613bf0565b840191505092915050565b600061316782613874565b6131718185613890565b9350613181818560208601613a08565b61318a81613bf0565b840191505092915050565b60006131a2602b83613890565b91506131ad82613c01565b604082019050919050565b60006131c5603283613890565b91506131d082613c50565b604082019050919050565b60006131e8602683613890565b91506131f382613c9f565b604082019050919050565b600061320b601c83613890565b915061321682613cee565b602082019050919050565b600061322e602483613890565b915061323982613d17565b604082019050919050565b6000613251601983613890565b915061325c82613d66565b602082019050919050565b6000613274602c83613890565b915061327f82613d8f565b604082019050919050565b6000613297601a83613890565b91506132a282613dde565b602082019050919050565b60006132ba603883613890565b91506132c582613e07565b604082019050919050565b60006132dd602a83613890565b91506132e882613e56565b604082019050919050565b6000613300602983613890565b915061330b82613ea5565b604082019050919050565b6000613323602383613890565b915061332e82613ef4565b604082019050919050565b6000613346602083613890565b915061335182613f43565b602082019050919050565b6000613369602c83613890565b915061337482613f6c565b604082019050919050565b600061338c602083613890565b915061339782613fbb565b602082019050919050565b60006133af602983613890565b91506133ba82613fe4565b604082019050919050565b60006133d2602783613890565b91506133dd82614033565b604082019050919050565b60006133f5602183613890565b915061340082614082565b604082019050919050565b6000613418603183613890565b9150613423826140d1565b604082019050919050565b600061343b602c83613890565b915061344682614120565b604082019050919050565b600061345e602483613890565b91506134698261416f565b604082019050919050565b61347d816139ef565b82525050565b60006020820190506134986000830184613105565b92915050565b60006080820190506134b36000830187613105565b6134c06020830186613105565b6134cd6040830185613474565b81810360608301526134df8184613123565b905095945050505050565b60006020820190506134ff6000830184613114565b92915050565b6000602082019050818103600083015261351f818461315c565b905092915050565b6000602082019050818103600083015261354081613195565b9050919050565b60006020820190508181036000830152613560816131b8565b9050919050565b60006020820190508181036000830152613580816131db565b9050919050565b600060208201905081810360008301526135a0816131fe565b9050919050565b600060208201905081810360008301526135c081613221565b9050919050565b600060208201905081810360008301526135e081613244565b9050919050565b6000602082019050818103600083015261360081613267565b9050919050565b600060208201905081810360008301526136208161328a565b9050919050565b60006020820190508181036000830152613640816132ad565b9050919050565b60006020820190508181036000830152613660816132d0565b9050919050565b60006020820190508181036000830152613680816132f3565b9050919050565b600060208201905081810360008301526136a081613316565b9050919050565b600060208201905081810360008301526136c081613339565b9050919050565b600060208201905081810360008301526136e08161335c565b9050919050565b600060208201905081810360008301526137008161337f565b9050919050565b60006020820190508181036000830152613720816133a2565b9050919050565b60006020820190508181036000830152613740816133c5565b9050919050565b60006020820190508181036000830152613760816133e8565b9050919050565b600060208201905081810360008301526137808161340b565b9050919050565b600060208201905081810360008301526137a08161342e565b9050919050565b600060208201905081810360008301526137c081613451565b9050919050565b60006020820190506137dc6000830184613474565b92915050565b60006137ec6137fd565b90506137f88282613a6d565b919050565b6000604051905090565b600067ffffffffffffffff82111561382257613821613ba3565b5b61382b82613bf0565b9050602081019050919050565b600067ffffffffffffffff82111561385357613852613ba3565b5b61385c82613bf0565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b60006138ac826139ef565b91506138b7836139ef565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156138ec576138eb613ae7565b5b828201905092915050565b6000613902826139ef565b915061390d836139ef565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561394657613945613ae7565b5b828202905092915050565b600061395c826139ef565b9150613967836139ef565b92508282101561397a57613979613ae7565b5b828203905092915050565b6000613990826139cf565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613a26578082015181840152602081019050613a0b565b83811115613a35576000848401525b50505050565b60006002820490506001821680613a5357607f821691505b60208210811415613a6757613a66613b16565b5b50919050565b613a7682613bf0565b810181811067ffffffffffffffff82111715613a9557613a94613ba3565b5b80604052505050565b6000613aa9826139ef565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613adc57613adb613ae7565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f544f4f20504f4f523a2073656e64206d6f61722065746865722e000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f544f4f204d414e593a206e6f7420656e6f756768206675636b7320746f20676960008201527f76652e0000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f544f4f204541524c593a20746865206675636b696e6720686173206e6f74207360008201527f7461727465642e00000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f544f4f204d5543483a20796f752063616e6e6f74206675636b2074686973206d60008201527f7563682e00000000000000000000000000000000000000000000000000000000602082015250565b6141c781613985565b81146141d257600080fd5b50565b6141de81613997565b81146141e957600080fd5b50565b6141f5816139a3565b811461420057600080fd5b50565b61420c816139ef565b811461421757600080fd5b5056fe4675636b20796f7520616e6420796f7520616e6420796f752e2049206861746520796f757220667269656e647320616e642074686579206861746520746f6f2ea2646970667358221220309b1d045c9af9dc82c04dcf5811bce7f13d174fcc46719516be4ca2da5a827664736f6c63430008060033

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.