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

Token

Meta Monsters (MM)
 

Overview

Max Total Supply

1,500 MM

Holders

289

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
scottharvey.eth
Balance
10 MM
0x12bE1594144737D6739C9570f8f1188CE742c06E
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
DropspaceSale

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : DropspaceSale.sol
//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.4;

import "./IDropspaceSale.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/Strings.sol";

contract DropspaceSale is IDropspaceSale, ERC721, Ownable {
    using SafeMath for uint256;
    using Strings for uint256;

    uint256 public override totalSupply = 0;
    uint256 public override mintLimit;
    uint256 public override mintPrice;
    uint256 public override supplyLimit;

    string public override baseURI;

    bool public override smartContractAllowance = false;
    bool public override saleActive;
    bool public override presaleActive;
    bool public override whitelistSaleActive;

    address payable public override withdrawalWallet;
    address payable public override devWallet;
    address public override ticketAddress;

    uint256 devSaleShare;
    uint256 ownerSaleShare;

    mapping(uint256 => bool) public override usedTickets;
    mapping(address => bool) public override whitelist;

    constructor(
        uint256 _supplyLimit, 
        uint256 _mintLimit,
        uint256 _mintPrice,
        uint256 _devSaleShare,
        address payable _withdrawalWallet,
        address payable _devWallet,
        address _ticketAddress,
        string memory _name,
        string memory _ticker,
        string memory _baseURI
    ) ERC721(_name, _ticker) {
        supplyLimit = _supplyLimit;
        mintLimit = _mintLimit;
        mintPrice = _mintPrice;
        withdrawalWallet = _withdrawalWallet;
        devWallet = _devWallet;
        ticketAddress = _ticketAddress;
        baseURI = _baseURI;
        devSaleShare = _devSaleShare;
        ownerSaleShare = uint256(10000).sub(devSaleShare);
    }

    modifier onlyWithdrawalWallet() {
        require(address(withdrawalWallet) == _msgSender(), 
            "DropspaceSale: caller is not the withdrawal wallet");
        _;
    }

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

    function changeSupplyLimit(uint256 _supplyLimit) external onlyOwner override {
        supplyLimit = _supplyLimit;
        emit SupplyLimitChanged(_supplyLimit);
    }

    function setMintPrice(uint256 _mintPrice) external onlyOwner override {
        mintPrice = _mintPrice;
        emit MintPriceChanged(_mintPrice);
    }

    function setWhitelistStatus(address _user, bool _status) external onlyOwner override {
        whitelist[_user] = _status;
        emit WhitelistStatusChanged(_user, _status);
    }

    function addWhitelist(address[] memory _userList) external onlyOwner override {
        for(uint256 i = 0; i < _userList.length; i++) {
            whitelist[_userList[i]] = true;
            emit WhiteListAdded(_userList[i], true);
        }
    }

    function setDevSaleShare(uint256 _devSaleShare) external override onlyOwner {
        devSaleShare = _devSaleShare;
        ownerSaleShare = uint256(10000).sub(devSaleShare);
        emit DevShareSaleChanged(devSaleShare);
    }

    function toggleSaleActive() external onlyOwner override {
        saleActive = !saleActive;
        emit ToggleSaleState(saleActive);
        mintPrice = 0.025 ether;
        emit MintPriceChanged(mintPrice);
        mintLimit = 20;
        emit MintLimitChanged(mintLimit);
    }

    function toggleWhitelistSaleActive() external onlyOwner override {
        whitelistSaleActive = !whitelistSaleActive;
        emit ToggleWhitelistSaleState(whitelistSaleActive);
    }

    function setBaseURI(string memory _baseURI) external onlyOwner override {
        baseURI = _baseURI;
        emit BaseURIChanged(baseURI);
    }

    function setSmartContractAllowance(bool _smartContractAllowance) external onlyOwner override {
        smartContractAllowance = _smartContractAllowance;
        emit SmartContractAllowanceChanged(smartContractAllowance);
    }

    function setWithdrawalWallet(address payable _withdrawalWallet) external onlyOwner override {
        withdrawalWallet = _withdrawalWallet;
        emit WithdrawalWalletChanged(withdrawalWallet);
    }

    function setDevWallet(address payable _devWallet) external onlyOwner override {
        devWallet = _devWallet;
        emit DevWalletChanged(devWallet);
    }

    function setMintLimit(uint256 _mintLimit) external onlyOwner override {
        mintLimit = _mintLimit;
        emit MintLimitChanged(mintLimit);
    }

    function withdraw() external onlyOwner override  {
        uint256 contractBalance = address(this).balance;
        devWallet.transfer(contractBalance.mul(devSaleShare).div(10000));
        withdrawalWallet.transfer(contractBalance.mul(ownerSaleShare).div(10000));
    }

    function reserve(uint256 _amount) external onlyOwner override {
        _mint(_amount);
        emit Reserve(_amount);
    }

    function buy(uint256 _amount) external override payable {
        require(saleActive, "Dropspace::buy: Sale is not active.");
        require(_amount <= mintLimit, "Dropspace::buy: Too many tokens for one transaction.");
        require(msg.value >= mintPrice.mul(_amount), "Dropspace::buy: Insufficient payment.");

        if (!smartContractAllowance) {
            require(tx.origin == msg.sender, "Dropspace::buy: Smart contracts are not allowed to buy.");
        }

        _mint(_amount);
    }

    function _mint(uint256 _amount) internal {
        require(totalSupply.add(_amount) <= supplyLimit, "Not enough tokens left.");

        uint256 newId = totalSupply;
        for(uint i = 0; i < _amount; i++) {
            newId = newId.add(1);
            totalSupply = totalSupply.add(1);

            _safeMint(msg.sender, newId);
            emit Mint(msg.sender, newId, tokenURI(newId));
        }
    }

    function tokenURI(uint256 _tokenId) public view override returns(string memory) {
        require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token");

        return bytes(baseURI).length > 0 ? 
            string(abi.encodePacked(baseURI, _tokenId.toString())) : "";
    }

    function togglePresaleActive() external onlyOwner override {
        presaleActive = !presaleActive;
        emit TogglePresaleState(presaleActive);
    }

    function setTicketAddress(address _ticketAddress) external onlyOwner override {
        require(_ticketAddress != address(0), "DropSpaceSale::setTicketAddress: Invalid address.");
        ticketAddress = _ticketAddress;
        emit TicketAddressChanged(_ticketAddress);
    }

    function presaleBuy(uint256 _ticketId, uint _amount) external payable override {
        require(presaleActive, "Dropspace::presaleBuy: Presale is not Active.");
        require(ERC721(ticketAddress).ownerOf(_ticketId) == msg.sender, "Dropspace::presaleBuy: invalid ticket.");
        require(!usedTickets[_ticketId], "Dropspace::presaleBuy: Ticket already used.");
        require(_amount <= mintLimit, "Dropspace::presaleBuy: Too many tokens for one transaction.");
        require(msg.value >= 0, "Dropspace::presaleBuy: Insufficient payment.");

        usedTickets[_ticketId] = true;
        _mint(_amount);
        emit PresaleBuy(msg.sender, _ticketId, _amount);
    }

    function whitelistBuy(uint256 _amount) external payable override {
        require(whitelistSaleActive, "DropSpaceSale::whitelistBuy: Whitelist Buy is not Active.");
        require(_amount <= mintLimit, "Dropspace::presaleBuy: Too many tokens for one transaction.");
        require(msg.value >= mintPrice.mul(_amount), "Dropspace::presaleBuy: Insufficient payment.");
        require(whitelist[msg.sender], "Dropspace::whitelistBuy: You are not whitelisted."); 

        emit WhitelistBuy(msg.sender, _amount);
        _mint(_amount);
    }

    function clearTicket(uint256 _ticketId) external override onlyOwner{
        require(usedTickets[_ticketId], "Dropspace::clearTicket: Ticket is not used");
        usedTickets[_ticketId] = false;
        emit TicketCleared(_ticketId);
    }

    receive() external override payable {}
}

File 2 of 13 : IDropspaceSale.sol
// SPDX-License-Identifier: Unlicense

pragma solidity ^0.8.4;

interface IDropspaceSale {
    // OWNER ONLY
    function toggleSaleActive() external;
    function togglePresaleActive() external;
    function setBaseURI(string memory _baseURI) external;
    function setWithdrawalWallet(address payable _withdrawalWallet) external;
    function setDevWallet(address payable _devWallet) external;
    function setDevSaleShare(uint256 _devSaleShare) external;
    function setMintLimit(uint256 _mintLimit) external;
    function setSmartContractAllowance(bool _smartContractAllowance) external;
    function setTicketAddress(address _ticketAddress) external;
    function reserve(uint256 _amount) external;
    function withdraw() external;
    function toggleWhitelistSaleActive() external;
    function setWhitelistStatus(address _user, bool _status) external;
    function addWhitelist(address[] memory _userList) external;
    function clearTicket(uint256 _ticketId) external;
    function changeSupplyLimit(uint256 _supplyLimit) external;
    function emergencyWithdraw() external;
    function setMintPrice(uint256 _mintPrice) external;    

    // EXTERNAL
    function buy(uint256 _amount) external payable;
    function presaleBuy(uint256 _ticketId, uint256 _amount) external payable;
    function whitelistBuy(uint256 _amount) external payable;

    // VIEW
    function totalSupply() view external returns(uint256);
    function supplyLimit() view external returns(uint256);
    function mintPrice() view external returns(uint256);
    function mintLimit() view external returns(uint256);
    function baseURI() view external returns(string memory);
    function saleActive() view external returns(bool);
    function presaleActive() view external returns(bool);
    function whitelistSaleActive() view external returns(bool);
    function smartContractAllowance() view external returns(bool);
    function devWallet() view external returns(address payable);
    function withdrawalWallet() view external returns(address payable);
    function ticketAddress() view external returns(address);
    function usedTickets(uint256 _ticketId) view external returns(bool);
    function whitelist(address _user) view external returns(bool);
    


    // EVENTS
    event Reserve(uint256 _amount);
    event Mint(address indexed _user, uint256 indexed _tokenId, string _tokenURI);
    event ToggleSaleState(bool _state);
    event BaseURIChanged(string _baseURI);
    event WithdrawalWalletChanged(address payable _newWithdrawalWallet);
    event DevWalletChanged(address payable _newDevWallet);
    event DevShareSaleChanged(uint256 _devSaleShare);
    event MintLimitChanged(uint256 _newMintLimit);
    event MintPriceChanged(uint256 _mintPrice);
    event SmartContractAllowanceChanged(bool _newSmartContractAllowance);
    event TogglePresaleState(bool _preSaleState);
    event TicketAddressChanged(address _ticketAddress);
    event PresaleBuy(address _user, uint256 _ticketId, uint256 _amount);
    event WhitelistBuy(address _user, uint256 _amount);
    event WhitelistStatusChanged(address _user, bool _status);
    event ToggleWhitelistSaleState(bool _whitelistSaleActive);
    event SupplyLimitChanged(uint256 _supplyLimit);
    event TicketCleared(uint256 _ticketId);
    event WhiteListAdded(address _user, bool _status);

    receive() external payable;
}

File 3 of 13 : 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.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 4 of 13 : 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 13 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 6 of 13 : 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 13 : 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 8 of 13 : 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 9 of 13 : 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 10 of 13 : 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);
    }

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

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

File 11 of 13 : 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 12 of 13 : 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 13 of 13 : 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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_supplyLimit","type":"uint256"},{"internalType":"uint256","name":"_mintLimit","type":"uint256"},{"internalType":"uint256","name":"_mintPrice","type":"uint256"},{"internalType":"uint256","name":"_devSaleShare","type":"uint256"},{"internalType":"address payable","name":"_withdrawalWallet","type":"address"},{"internalType":"address payable","name":"_devWallet","type":"address"},{"internalType":"address","name":"_ticketAddress","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_ticker","type":"string"},{"internalType":"string","name":"_baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_baseURI","type":"string"}],"name":"BaseURIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_devSaleShare","type":"uint256"}],"name":"DevShareSaleChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address payable","name":"_newDevWallet","type":"address"}],"name":"DevWalletChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_user","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"_tokenURI","type":"string"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_newMintLimit","type":"uint256"}],"name":"MintLimitChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"MintPriceChanged","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":false,"internalType":"address","name":"_user","type":"address"},{"indexed":false,"internalType":"uint256","name":"_ticketId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"PresaleBuy","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"Reserve","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_newSmartContractAllowance","type":"bool"}],"name":"SmartContractAllowanceChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_supplyLimit","type":"uint256"}],"name":"SupplyLimitChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_ticketAddress","type":"address"}],"name":"TicketAddressChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_ticketId","type":"uint256"}],"name":"TicketCleared","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_preSaleState","type":"bool"}],"name":"TogglePresaleState","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_state","type":"bool"}],"name":"ToggleSaleState","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_whitelistSaleActive","type":"bool"}],"name":"ToggleWhitelistSaleState","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_user","type":"address"},{"indexed":false,"internalType":"bool","name":"_status","type":"bool"}],"name":"WhiteListAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_user","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"WhitelistBuy","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_user","type":"address"},{"indexed":false,"internalType":"bool","name":"_status","type":"bool"}],"name":"WhitelistStatusChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address payable","name":"_newWithdrawalWallet","type":"address"}],"name":"WithdrawalWalletChanged","type":"event"},{"inputs":[{"internalType":"address[]","name":"_userList","type":"address[]"}],"name":"addWhitelist","outputs":[],"stateMutability":"nonpayable","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supplyLimit","type":"uint256"}],"name":"changeSupplyLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_ticketId","type":"uint256"}],"name":"clearTicket","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_ticketId","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"presaleBuy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"reserve","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":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devSaleShare","type":"uint256"}],"name":"setDevSaleShare","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_devWallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintLimit","type":"uint256"}],"name":"setMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_smartContractAllowance","type":"bool"}],"name":"setSmartContractAllowance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_ticketAddress","type":"address"}],"name":"setTicketAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setWhitelistStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_withdrawalWallet","type":"address"}],"name":"setWithdrawalWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"smartContractAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"supplyLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ticketAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePresaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhitelistSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"usedTickets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"whitelistBuy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawalWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405260006007556000600c60006101000a81548160ff0219169083151502179055503480156200003157600080fd5b506040516200642638038062006426833981810160405281019062000057919062000426565b8282816000908051906020019062000071929190620002bf565b5080600190805190602001906200008a929190620002bf565b505050620000ad620000a1620001d960201b60201c565b620001e160201b60201c565b89600a81905550886008819055508760098190555085600c60046101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555083600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600b90805190602001906200019d929190620002bf565b5086600f81905550620001c3600f54612710620002a760201b620030201790919060201c565b60108190555050505050505050505050620007db565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183620002b79190620005c0565b905092915050565b828054620002cd9062000683565b90600052602060002090601f016020900481019282620002f157600085556200033d565b82601f106200030c57805160ff19168380011785556200033d565b828001600101855582156200033d579182015b828111156200033c5782518255916020019190600101906200031f565b5b5090506200034c919062000350565b5090565b5b808211156200036b57600081600090555060010162000351565b5090565b60006200038662000380846200058a565b62000561565b9050828152602081018484840111156200039f57600080fd5b620003ac8482856200064d565b509392505050565b600081519050620003c5816200078d565b92915050565b600081519050620003dc81620007a7565b92915050565b600082601f830112620003f457600080fd5b8151620004068482602086016200036f565b91505092915050565b6000815190506200042081620007c1565b92915050565b6000806000806000806000806000806101408b8d0312156200044757600080fd5b6000620004578d828e016200040f565b9a505060206200046a8d828e016200040f565b99505060406200047d8d828e016200040f565b9850506060620004908d828e016200040f565b9750506080620004a38d828e01620003cb565b96505060a0620004b68d828e01620003cb565b95505060c0620004c98d828e01620003b4565b94505060e08b015167ffffffffffffffff811115620004e757600080fd5b620004f58d828e01620003e2565b9350506101008b015167ffffffffffffffff8111156200051457600080fd5b620005228d828e01620003e2565b9250506101208b015167ffffffffffffffff8111156200054157600080fd5b6200054f8d828e01620003e2565b9150509295989b9194979a5092959850565b60006200056d62000580565b90506200057b8282620006b9565b919050565b6000604051905090565b600067ffffffffffffffff821115620005a857620005a76200074d565b5b620005b3826200077c565b9050602081019050919050565b6000620005cd8262000643565b9150620005da8362000643565b925082821015620005f057620005ef620006ef565b5b828203905092915050565b6000620006088262000623565b9050919050565b60006200061c8262000623565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200066d57808201518184015260208101905062000650565b838111156200067d576000848401525b50505050565b600060028204905060018216806200069c57607f821691505b60208210811415620006b357620006b26200071e565b5b50919050565b620006c4826200077c565b810181811067ffffffffffffffff82111715620006e657620006e56200074d565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6200079881620005fb565b8114620007a457600080fd5b50565b620007b2816200060f565b8114620007be57600080fd5b50565b620007cc8162000643565b8114620007d857600080fd5b50565b615c3b80620007eb6000396000f3fe6080604052600436106102e85760003560e01c80636c0360eb11610190578063a22cb465116100dc578063d96a094a11610095578063ed9a5bbb1161006f578063ed9a5bbb14610aa6578063edac985b14610acf578063f2fde38b14610af8578063f4a0a52814610b21576102ef565b8063d96a094a14610a36578063db2e21bc14610a52578063e985e9c514610a69576102ef565b8063a22cb4651461093e578063ab26320e14610967578063b88d4fde14610990578063b89fe999146109b9578063c87b56dd146109d0578063d44e357314610a0d576102ef565b806389b0649b1161014957806395d89b411161012357806395d89b4114610882578063996517cf146108ad5780639b19251a146108d85780639e6a1d7d14610915576102ef565b806389b0649b146108155780638da5cb5b1461082c5780638ea5220f14610857576102ef565b80636c0360eb1461070757806370a0823114610732578063715018a61461076f57806371efdc211461078657806375796f76146107c3578063819b25ba146107ec576102ef565b80633100a5351161024f57806355f804b3116102085780636352211e116101e25780636352211e14610649578063646d7a7f146106865780636817c76c146106b157806368428a1b146106dc576102ef565b806355f804b3146105cc57806357a8e3fe146105f55780635c4e7e0614610620576102ef565b80633100a535146104f45780633ad7f56c1461050b5780633ccfd60b1461053657806342842e0e1461054d5780634a7d80b31461057657806353135ca0146105a1576102ef565b80630c424284116102a15780630c4242841461040757806318160ddd1461043057806319d1997a1461045b5780631f53ac021461048657806323b872dd146104af5780632ac7a2b3146104d8576102ef565b806301ffc9a7146102f457806306fdde0314610331578063081812fc1461035c57806308e9928714610399578063095ea7b3146103c25780630983061c146103eb576102ef565b366102ef57005b600080fd5b34801561030057600080fd5b5061031b60048036038101906103169190614223565b610b4a565b6040516103289190614a42565b60405180910390f35b34801561033d57600080fd5b50610346610c2c565b6040516103539190614a5d565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e91906142b6565b610cbe565b6040516103909190614937565b60405180910390f35b3480156103a557600080fd5b506103c060048036038101906103bb91906141fa565b610d43565b005b3480156103ce57600080fd5b506103e960048036038101906103e4919061417d565b610e22565b005b610405600480360381019061040091906142df565b610f3a565b005b34801561041357600080fd5b5061042e60048036038101906104299190614141565b6111ff565b005b34801561043c57600080fd5b5061044561130f565b6040516104529190614e61565b60405180910390f35b34801561046757600080fd5b50610470611315565b60405161047d9190614e61565b60405180910390f35b34801561049257600080fd5b506104ad60048036038101906104a89190614012565b61131b565b005b3480156104bb57600080fd5b506104d660048036038101906104d19190614077565b611434565b005b6104f260048036038101906104ed91906142b6565b611494565b005b34801561050057600080fd5b50610509611650565b005b34801561051757600080fd5b506105206117c6565b60405161052d9190614a42565b60405180910390f35b34801561054257600080fd5b5061054b6117d9565b005b34801561055957600080fd5b50610574600480360381019061056f9190614077565b61197f565b005b34801561058257600080fd5b5061058b61199f565b6040516105989190614952565b60405180910390f35b3480156105ad57600080fd5b506105b66119c5565b6040516105c39190614a42565b60405180910390f35b3480156105d857600080fd5b506105f360048036038101906105ee9190614275565b6119d8565b005b34801561060157600080fd5b5061060a611aa6565b6040516106179190614937565b60405180910390f35b34801561062c57600080fd5b50610647600480360381019061064291906142b6565b611acc565b005b34801561065557600080fd5b50610670600480360381019061066b91906142b6565b611ba8565b60405161067d9190614937565b60405180910390f35b34801561069257600080fd5b5061069b611c5a565b6040516106a89190614a42565b60405180910390f35b3480156106bd57600080fd5b506106c6611c6d565b6040516106d39190614e61565b60405180910390f35b3480156106e857600080fd5b506106f1611c73565b6040516106fe9190614a42565b60405180910390f35b34801561071357600080fd5b5061071c611c86565b6040516107299190614a5d565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190613fc0565b611d14565b6040516107669190614e61565b60405180910390f35b34801561077b57600080fd5b50610784611dcc565b005b34801561079257600080fd5b506107ad60048036038101906107a891906142b6565b611e54565b6040516107ba9190614a42565b60405180910390f35b3480156107cf57600080fd5b506107ea60048036038101906107e59190614012565b611e74565b005b3480156107f857600080fd5b50610813600480360381019061080e91906142b6565b611f8d565b005b34801561082157600080fd5b5061082a61204c565b005b34801561083857600080fd5b5061084161213a565b60405161084e9190614937565b60405180910390f35b34801561086357600080fd5b5061086c612164565b6040516108799190614952565b60405180910390f35b34801561088e57600080fd5b5061089761218a565b6040516108a49190614a5d565b60405180910390f35b3480156108b957600080fd5b506108c261221c565b6040516108cf9190614e61565b60405180910390f35b3480156108e457600080fd5b506108ff60048036038101906108fa9190613fc0565b612222565b60405161090c9190614a42565b60405180910390f35b34801561092157600080fd5b5061093c600480360381019061093791906142b6565b612242565b005b34801561094a57600080fd5b5061096560048036038101906109609190614141565b612301565b005b34801561097357600080fd5b5061098e600480360381019061098991906142b6565b612482565b005b34801561099c57600080fd5b506109b760048036038101906109b291906140c6565b6125c4565b005b3480156109c557600080fd5b506109ce612626565b005b3480156109dc57600080fd5b506109f760048036038101906109f291906142b6565b612714565b604051610a049190614a5d565b60405180910390f35b348015610a1957600080fd5b50610a346004803603810190610a2f91906142b6565b6127bc565b005b610a506004803603810190610a4b91906142b6565b612879565b005b348015610a5e57600080fd5b50610a676129f3565b005b348015610a7557600080fd5b50610a906004803603810190610a8b919061403b565b612abf565b604051610a9d9190614a42565b60405180910390f35b348015610ab257600080fd5b50610acd6004803603810190610ac89190613fc0565b612b53565b005b348015610adb57600080fd5b50610af66004803603810190610af191906141b9565b612cba565b005b348015610b0457600080fd5b50610b1f6004803603810190610b1a9190613fc0565b612e6b565b005b348015610b2d57600080fd5b50610b486004803603810190610b4391906142b6565b612f63565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c1557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c255750610c2482613036565b5b9050919050565b606060008054610c3b90615164565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6790615164565b8015610cb45780601f10610c8957610100808354040283529160200191610cb4565b820191906000526020600020905b815481529060010190602001808311610c9757829003601f168201915b5050505050905090565b6000610cc9826130a0565b610d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cff90614ca1565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610d4b61310c565b73ffffffffffffffffffffffffffffffffffffffff16610d6961213a565b73ffffffffffffffffffffffffffffffffffffffff1614610dbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db690614cc1565b60405180910390fd5b80600c60006101000a81548160ff0219169083151502179055507f2a5bfbb68782e57b3242e612145304c845af3404e2d328a12dd2e7c078cd0117600c60009054906101000a900460ff16604051610e179190614a42565b60405180910390a150565b6000610e2d82611ba8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9590614d81565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ebd61310c565b73ffffffffffffffffffffffffffffffffffffffff161480610eec5750610eeb81610ee661310c565b612abf565b5b610f2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2290614be1565b60405180910390fd5b610f358383613114565b505050565b600c60029054906101000a900460ff16610f89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8090614da1565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b8152600401610ffb9190614e61565b60206040518083038186803b15801561101357600080fd5b505afa158015611027573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061104b9190613fe9565b73ffffffffffffffffffffffffffffffffffffffff16146110a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109890614aa1565b60405180910390fd5b6011600083815260200190815260200160002060009054906101000a900460ff1615611102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f990614c61565b60405180910390fd5b600854811115611147576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113e90614e01565b60405180910390fd5b600034101561118b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118290614ba1565b60405180910390fd5b60016011600084815260200190815260200160002060006101000a81548160ff0219169083151502179055506111c0816131cd565b7fb77d41b776d1d5cc75b500402614335da616afa8aa95b49325e22db7f1ca86cc3383836040516111f393929190614a0b565b60405180910390a15050565b61120761310c565b73ffffffffffffffffffffffffffffffffffffffff1661122561213a565b73ffffffffffffffffffffffffffffffffffffffff161461127b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127290614cc1565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f8daaf060c3306c38e068a75c054bf96ecd85a3db1252712c4d93632744c42e0d82826040516113039291906149b9565b60405180910390a15050565b60075481565b600a5481565b61132361310c565b73ffffffffffffffffffffffffffffffffffffffff1661134161213a565b73ffffffffffffffffffffffffffffffffffffffff1614611397576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138e90614cc1565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f268c00f4ec08b34fdde24b52e47a09d62f3f3837eb3b8ac7206cefb3bb5e5345600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040516114299190614952565b60405180910390a150565b61144561143f61310c565b826132e3565b611484576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147b90614de1565b60405180910390fd5b61148f8383836133c1565b505050565b600c60039054906101000a900460ff166114e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114da90614e21565b60405180910390fd5b600854811115611528576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151f90614e01565b60405180910390fd5b61153d8160095461361d90919063ffffffff16565b34101561157f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157690614ba1565b60405180910390fd5b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661160b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160290614d21565b60405180910390fd5b7f8714612a507e7fcd9f26d997e561a61611f4bad945c787b8865dc23823ef037b338260405161163c9291906149e2565b60405180910390a161164d816131cd565b50565b61165861310c565b73ffffffffffffffffffffffffffffffffffffffff1661167661213a565b73ffffffffffffffffffffffffffffffffffffffff16146116cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c390614cc1565b60405180910390fd5b600c60019054906101000a900460ff1615600c60016101000a81548160ff0219169083151502179055507f5a454f976028c400c4159ac85c61452441fcf06b9888c7c780c5980e3c3123dd600c60019054906101000a900460ff166040516117349190614a42565b60405180910390a16658d15e176280006009819055507f25b1f9f6b6e61dfca5575239769e4450ed2e49176670837f5d1a82a9a2fc693f60095460405161177b9190614e61565b60405180910390a160146008819055507f9ae30a041b5f2244849dc754c675b09aef4ad230b48995476fd6e6415d1fe8ab6008546040516117bc9190614e61565b60405180910390a1565b600c60039054906101000a900460ff1681565b6117e161310c565b73ffffffffffffffffffffffffffffffffffffffff166117ff61213a565b73ffffffffffffffffffffffffffffffffffffffff1614611855576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184c90614cc1565b60405180910390fd5b6000479050600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6118bf6127106118b1600f548661361d90919063ffffffff16565b61363390919063ffffffff16565b9081150290604051600060405180830381858888f193505050501580156118ea573d6000803e3d6000fd5b50600c60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6119506127106119426010548661361d90919063ffffffff16565b61363390919063ffffffff16565b9081150290604051600060405180830381858888f1935050505015801561197b573d6000803e3d6000fd5b5050565b61199a838383604051806020016040528060008152506125c4565b505050565b600c60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c60029054906101000a900460ff1681565b6119e061310c565b73ffffffffffffffffffffffffffffffffffffffff166119fe61213a565b73ffffffffffffffffffffffffffffffffffffffff1614611a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4b90614cc1565b60405180910390fd5b80600b9080519060200190611a6a929190613d24565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf6600b604051611a9b9190614a7f565b60405180910390a150565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611ad461310c565b73ffffffffffffffffffffffffffffffffffffffff16611af261213a565b73ffffffffffffffffffffffffffffffffffffffff1614611b48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3f90614cc1565b60405180910390fd5b80600f81905550611b66600f5461271061302090919063ffffffff16565b6010819055507fd20ab7c161b1f8ebfab00e747660c0fa31ae9123063e580b5be0aeab18623db2600f54604051611b9d9190614e61565b60405180910390a150565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4890614c21565b60405180910390fd5b80915050919050565b600c60009054906101000a900460ff1681565b60095481565b600c60019054906101000a900460ff1681565b600b8054611c9390615164565b80601f0160208091040260200160405190810160405280929190818152602001828054611cbf90615164565b8015611d0c5780601f10611ce157610100808354040283529160200191611d0c565b820191906000526020600020905b815481529060010190602001808311611cef57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7c90614c01565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611dd461310c565b73ffffffffffffffffffffffffffffffffffffffff16611df261213a565b73ffffffffffffffffffffffffffffffffffffffff1614611e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3f90614cc1565b60405180910390fd5b611e526000613649565b565b60116020528060005260406000206000915054906101000a900460ff1681565b611e7c61310c565b73ffffffffffffffffffffffffffffffffffffffff16611e9a61213a565b73ffffffffffffffffffffffffffffffffffffffff1614611ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee790614cc1565b60405180910390fd5b80600c60046101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fb470355146314037ce5186813b4b7c65bff2b87f98d44ff063570d0e22d65ba3600c60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff16604051611f829190614952565b60405180910390a150565b611f9561310c565b73ffffffffffffffffffffffffffffffffffffffff16611fb361213a565b73ffffffffffffffffffffffffffffffffffffffff1614612009576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200090614cc1565b60405180910390fd5b612012816131cd565b7fdb7b64a879507c32bda4d0cf22dee29ed875c7157ecbbc10fe11bf14fab06d12816040516120419190614e61565b60405180910390a150565b61205461310c565b73ffffffffffffffffffffffffffffffffffffffff1661207261213a565b73ffffffffffffffffffffffffffffffffffffffff16146120c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120bf90614cc1565b60405180910390fd5b600c60029054906101000a900460ff1615600c60026101000a81548160ff0219169083151502179055507f38822fae85453c65b78e1b7d02e45cae5eb0d7961e34226fb29c49dab9d3a357600c60029054906101000a900460ff166040516121309190614a42565b60405180910390a1565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606001805461219990615164565b80601f01602080910402602001604051908101604052809291908181526020018280546121c590615164565b80156122125780601f106121e757610100808354040283529160200191612212565b820191906000526020600020905b8154815290600101906020018083116121f557829003601f168201915b5050505050905090565b60085481565b60126020528060005260406000206000915054906101000a900460ff1681565b61224a61310c565b73ffffffffffffffffffffffffffffffffffffffff1661226861213a565b73ffffffffffffffffffffffffffffffffffffffff16146122be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b590614cc1565b60405180910390fd5b806008819055507f9ae30a041b5f2244849dc754c675b09aef4ad230b48995476fd6e6415d1fe8ab6008546040516122f69190614e61565b60405180910390a150565b61230961310c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236e90614b81565b60405180910390fd5b806005600061238461310c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661243161310c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124769190614a42565b60405180910390a35050565b61248a61310c565b73ffffffffffffffffffffffffffffffffffffffff166124a861213a565b73ffffffffffffffffffffffffffffffffffffffff16146124fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f590614cc1565b60405180910390fd5b6011600082815260200190815260200160002060009054906101000a900460ff1661255e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255590614dc1565b60405180910390fd5b60006011600083815260200190815260200160002060006101000a81548160ff0219169083151502179055507f256e63760868166c3f047c49d3e1614c1ca6c620d715c552c54ddb4ba428719c816040516125b99190614e61565b60405180910390a150565b6125d56125cf61310c565b836132e3565b612614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260b90614de1565b60405180910390fd5b6126208484848461370f565b50505050565b61262e61310c565b73ffffffffffffffffffffffffffffffffffffffff1661264c61213a565b73ffffffffffffffffffffffffffffffffffffffff16146126a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269990614cc1565b60405180910390fd5b600c60039054906101000a900460ff1615600c60036101000a81548160ff0219169083151502179055507ffabb6e4b24bd8ac3a08555e569d13590c5006dc61e4aae65e74296d3df6759ed600c60039054906101000a900460ff1660405161270a9190614a42565b60405180910390a1565b606061271f826130a0565b61275e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275590614d01565b60405180910390fd5b6000600b805461276d90615164565b90501161278957604051806020016040528060008152506127b5565b600b6127948361376b565b6040516020016127a5929190614913565b6040516020818303038152906040525b9050919050565b6127c461310c565b73ffffffffffffffffffffffffffffffffffffffff166127e261213a565b73ffffffffffffffffffffffffffffffffffffffff1614612838576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282f90614cc1565b60405180910390fd5b80600a819055507f178f2d92de18f124251b08e25bacba56eda0716625c1e799fc6c8ed1ee7d1d078160405161286e9190614e61565b60405180910390a150565b600c60019054906101000a900460ff166128c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128bf90614e41565b60405180910390fd5b60085481111561290d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290490614c41565b60405180910390fd5b6129228160095461361d90919063ffffffff16565b341015612964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295b90614d61565b60405180910390fd5b600c60009054906101000a900460ff166129e7573373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146129e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129dd90614b01565b60405180910390fd5b5b6129f0816131cd565b50565b6129fb61310c565b73ffffffffffffffffffffffffffffffffffffffff16612a1961213a565b73ffffffffffffffffffffffffffffffffffffffff1614612a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6690614cc1565b60405180910390fd5b612a7761213a565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015612abc573d6000803e3d6000fd5b50565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612b5b61310c565b73ffffffffffffffffffffffffffffffffffffffff16612b7961213a565b73ffffffffffffffffffffffffffffffffffffffff1614612bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc690614cc1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3690614d41565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f4846b8d14a603fbd3567c63384f41a947d787c004e59ce39ee755d0485ae5ed881604051612caf9190614937565b60405180910390a150565b612cc261310c565b73ffffffffffffffffffffffffffffffffffffffff16612ce061213a565b73ffffffffffffffffffffffffffffffffffffffff1614612d36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2d90614cc1565b60405180910390fd5b60005b8151811015612e6757600160126000848481518110612d81577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507faec42ac7f1bb8651906ae6522f50a19429e124e8ea678ef59fd27750759288a2828281518110612e34577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516001604051612e4c9291906149b9565b60405180910390a18080612e5f906151c7565b915050612d39565b5050565b612e7361310c565b73ffffffffffffffffffffffffffffffffffffffff16612e9161213a565b73ffffffffffffffffffffffffffffffffffffffff1614612ee7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ede90614cc1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4e90614ae1565b60405180910390fd5b612f6081613649565b50565b612f6b61310c565b73ffffffffffffffffffffffffffffffffffffffff16612f8961213a565b73ffffffffffffffffffffffffffffffffffffffff1614612fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fd690614cc1565b60405180910390fd5b806009819055507f25b1f9f6b6e61dfca5575239769e4450ed2e49176670837f5d1a82a9a2fc693f816040516130159190614e61565b60405180910390a150565b6000818361302e9190615068565b905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661318783611ba8565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600a546131e58260075461391890919063ffffffff16565b1115613226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321d90614b41565b60405180910390fd5b6000600754905060005b828110156132de5761324c60018361391890919063ffffffff16565b9150613264600160075461391890919063ffffffff16565b600781905550613274338361392e565b813373ffffffffffffffffffffffffffffffffffffffff167f85a66b9141978db9980f7e0ce3b468cebf4f7999f32b23091c5c03e798b1ba7a6132b685612714565b6040516132c39190614a5d565b60405180910390a380806132d6906151c7565b915050613230565b505050565b60006132ee826130a0565b61332d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332490614bc1565b60405180910390fd5b600061333883611ba8565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806133a757508373ffffffffffffffffffffffffffffffffffffffff1661338f84610cbe565b73ffffffffffffffffffffffffffffffffffffffff16145b806133b857506133b78185612abf565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166133e182611ba8565b73ffffffffffffffffffffffffffffffffffffffff1614613437576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161342e90614ce1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161349e90614b61565b60405180910390fd5b6134b283838361394c565b6134bd600082613114565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461350d9190615068565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135649190614f87565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000818361362b919061500e565b905092915050565b600081836136419190614fdd565b905092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61371a8484846133c1565b61372684848484613951565b613765576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161375c90614ac1565b60405180910390fd5b50505050565b606060008214156137b3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613913565b600082905060005b600082146137e55780806137ce906151c7565b915050600a826137de9190614fdd565b91506137bb565b60008167ffffffffffffffff811115613827577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156138595781602001600182028036833780820191505090505b5090505b6000851461390c576001826138729190615068565b9150600a856138819190615210565b603061388d9190614f87565b60f81b8183815181106138c9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856139059190614fdd565b945061385d565b8093505050505b919050565b600081836139269190614f87565b905092915050565b613948828260405180602001604052806000815250613ae8565b5050565b505050565b60006139728473ffffffffffffffffffffffffffffffffffffffff16613b43565b15613adb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261399b61310c565b8786866040518563ffffffff1660e01b81526004016139bd949392919061496d565b602060405180830381600087803b1580156139d757600080fd5b505af1925050508015613a0857506040513d601f19601f82011682018060405250810190613a05919061424c565b60015b613a8b573d8060008114613a38576040519150601f19603f3d011682016040523d82523d6000602084013e613a3d565b606091505b50600081511415613a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a7a90614ac1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613ae0565b600190505b949350505050565b613af28383613b56565b613aff6000848484613951565b613b3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b3590614ac1565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613bc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bbd90614c81565b60405180910390fd5b613bcf816130a0565b15613c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c0690614b21565b60405180910390fd5b613c1b6000838361394c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613c6b9190614f87565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613d3090615164565b90600052602060002090601f016020900481019282613d525760008555613d99565b82601f10613d6b57805160ff1916838001178555613d99565b82800160010185558215613d99579182015b82811115613d98578251825591602001919060010190613d7d565b5b509050613da69190613daa565b5090565b5b80821115613dc3576000816000905550600101613dab565b5090565b6000613dda613dd584614ea1565b614e7c565b90508083825260208201905082856020860282011115613df957600080fd5b60005b85811015613e295781613e0f8882613eaf565b845260208401935060208301925050600181019050613dfc565b5050509392505050565b6000613e46613e4184614ecd565b614e7c565b905082815260208101848484011115613e5e57600080fd5b613e69848285615122565b509392505050565b6000613e84613e7f84614efe565b614e7c565b905082815260208101848484011115613e9c57600080fd5b613ea7848285615122565b509392505050565b600081359050613ebe81615b92565b92915050565b600081519050613ed381615b92565b92915050565b600081359050613ee881615ba9565b92915050565b600082601f830112613eff57600080fd5b8135613f0f848260208601613dc7565b91505092915050565b600081359050613f2781615bc0565b92915050565b600081359050613f3c81615bd7565b92915050565b600081519050613f5181615bd7565b92915050565b600082601f830112613f6857600080fd5b8135613f78848260208601613e33565b91505092915050565b600082601f830112613f9257600080fd5b8135613fa2848260208601613e71565b91505092915050565b600081359050613fba81615bee565b92915050565b600060208284031215613fd257600080fd5b6000613fe084828501613eaf565b91505092915050565b600060208284031215613ffb57600080fd5b600061400984828501613ec4565b91505092915050565b60006020828403121561402457600080fd5b600061403284828501613ed9565b91505092915050565b6000806040838503121561404e57600080fd5b600061405c85828601613eaf565b925050602061406d85828601613eaf565b9150509250929050565b60008060006060848603121561408c57600080fd5b600061409a86828701613eaf565b93505060206140ab86828701613eaf565b92505060406140bc86828701613fab565b9150509250925092565b600080600080608085870312156140dc57600080fd5b60006140ea87828801613eaf565b94505060206140fb87828801613eaf565b935050604061410c87828801613fab565b925050606085013567ffffffffffffffff81111561412957600080fd5b61413587828801613f57565b91505092959194509250565b6000806040838503121561415457600080fd5b600061416285828601613eaf565b925050602061417385828601613f18565b9150509250929050565b6000806040838503121561419057600080fd5b600061419e85828601613eaf565b92505060206141af85828601613fab565b9150509250929050565b6000602082840312156141cb57600080fd5b600082013567ffffffffffffffff8111156141e557600080fd5b6141f184828501613eee565b91505092915050565b60006020828403121561420c57600080fd5b600061421a84828501613f18565b91505092915050565b60006020828403121561423557600080fd5b600061424384828501613f2d565b91505092915050565b60006020828403121561425e57600080fd5b600061426c84828501613f42565b91505092915050565b60006020828403121561428757600080fd5b600082013567ffffffffffffffff8111156142a157600080fd5b6142ad84828501613f81565b91505092915050565b6000602082840312156142c857600080fd5b60006142d684828501613fab565b91505092915050565b600080604083850312156142f257600080fd5b600061430085828601613fab565b925050602061431185828601613fab565b9150509250929050565b614324816150ae565b82525050565b6143338161509c565b82525050565b614342816150c0565b82525050565b600061435382614f44565b61435d8185614f5a565b935061436d818560208601615131565b614376816152fd565b840191505092915050565b600061438c82614f4f565b6143968185614f6b565b93506143a6818560208601615131565b6143af816152fd565b840191505092915050565b60006143c582614f4f565b6143cf8185614f7c565b93506143df818560208601615131565b80840191505092915050565b600081546143f881615164565b6144028186614f6b565b9450600182166000811461441d576001811461442f57614462565b60ff1983168652602086019350614462565b61443885614f2f565b60005b8381101561445a5781548189015260018201915060208101905061443b565b808801955050505b50505092915050565b6000815461447881615164565b6144828186614f7c565b9450600182166000811461449d57600181146144ae576144e1565b60ff198316865281860193506144e1565b6144b785614f2f565b60005b838110156144d9578154818901526001820191506020810190506144ba565b838801955050505b50505092915050565b60006144f7602683614f6b565b91506145028261530e565b604082019050919050565b600061451a603283614f6b565b91506145258261535d565b604082019050919050565b600061453d602683614f6b565b9150614548826153ac565b604082019050919050565b6000614560603783614f6b565b915061456b826153fb565b604082019050919050565b6000614583601c83614f6b565b915061458e8261544a565b602082019050919050565b60006145a6601783614f6b565b91506145b182615473565b602082019050919050565b60006145c9602483614f6b565b91506145d48261549c565b604082019050919050565b60006145ec601983614f6b565b91506145f7826154eb565b602082019050919050565b600061460f602c83614f6b565b915061461a82615514565b604082019050919050565b6000614632602c83614f6b565b915061463d82615563565b604082019050919050565b6000614655603883614f6b565b9150614660826155b2565b604082019050919050565b6000614678602a83614f6b565b915061468382615601565b604082019050919050565b600061469b602983614f6b565b91506146a682615650565b604082019050919050565b60006146be603483614f6b565b91506146c98261569f565b604082019050919050565b60006146e1602b83614f6b565b91506146ec826156ee565b604082019050919050565b6000614704602083614f6b565b915061470f8261573d565b602082019050919050565b6000614727602c83614f6b565b915061473282615766565b604082019050919050565b600061474a602083614f6b565b9150614755826157b5565b602082019050919050565b600061476d602983614f6b565b9150614778826157de565b604082019050919050565b6000614790602f83614f6b565b915061479b8261582d565b604082019050919050565b60006147b3603183614f6b565b91506147be8261587c565b604082019050919050565b60006147d6603183614f6b565b91506147e1826158cb565b604082019050919050565b60006147f9602583614f6b565b91506148048261591a565b604082019050919050565b600061481c602183614f6b565b915061482782615969565b604082019050919050565b600061483f602d83614f6b565b915061484a826159b8565b604082019050919050565b6000614862602a83614f6b565b915061486d82615a07565b604082019050919050565b6000614885603183614f6b565b915061489082615a56565b604082019050919050565b60006148a8603b83614f6b565b91506148b382615aa5565b604082019050919050565b60006148cb603983614f6b565b91506148d682615af4565b604082019050919050565b60006148ee602383614f6b565b91506148f982615b43565b604082019050919050565b61490d81615118565b82525050565b600061491f828561446b565b915061492b82846143ba565b91508190509392505050565b600060208201905061494c600083018461432a565b92915050565b6000602082019050614967600083018461431b565b92915050565b6000608082019050614982600083018761432a565b61498f602083018661432a565b61499c6040830185614904565b81810360608301526149ae8184614348565b905095945050505050565b60006040820190506149ce600083018561432a565b6149db6020830184614339565b9392505050565b60006040820190506149f7600083018561432a565b614a046020830184614904565b9392505050565b6000606082019050614a20600083018661432a565b614a2d6020830185614904565b614a3a6040830184614904565b949350505050565b6000602082019050614a576000830184614339565b92915050565b60006020820190508181036000830152614a778184614381565b905092915050565b60006020820190508181036000830152614a9981846143eb565b905092915050565b60006020820190508181036000830152614aba816144ea565b9050919050565b60006020820190508181036000830152614ada8161450d565b9050919050565b60006020820190508181036000830152614afa81614530565b9050919050565b60006020820190508181036000830152614b1a81614553565b9050919050565b60006020820190508181036000830152614b3a81614576565b9050919050565b60006020820190508181036000830152614b5a81614599565b9050919050565b60006020820190508181036000830152614b7a816145bc565b9050919050565b60006020820190508181036000830152614b9a816145df565b9050919050565b60006020820190508181036000830152614bba81614602565b9050919050565b60006020820190508181036000830152614bda81614625565b9050919050565b60006020820190508181036000830152614bfa81614648565b9050919050565b60006020820190508181036000830152614c1a8161466b565b9050919050565b60006020820190508181036000830152614c3a8161468e565b9050919050565b60006020820190508181036000830152614c5a816146b1565b9050919050565b60006020820190508181036000830152614c7a816146d4565b9050919050565b60006020820190508181036000830152614c9a816146f7565b9050919050565b60006020820190508181036000830152614cba8161471a565b9050919050565b60006020820190508181036000830152614cda8161473d565b9050919050565b60006020820190508181036000830152614cfa81614760565b9050919050565b60006020820190508181036000830152614d1a81614783565b9050919050565b60006020820190508181036000830152614d3a816147a6565b9050919050565b60006020820190508181036000830152614d5a816147c9565b9050919050565b60006020820190508181036000830152614d7a816147ec565b9050919050565b60006020820190508181036000830152614d9a8161480f565b9050919050565b60006020820190508181036000830152614dba81614832565b9050919050565b60006020820190508181036000830152614dda81614855565b9050919050565b60006020820190508181036000830152614dfa81614878565b9050919050565b60006020820190508181036000830152614e1a8161489b565b9050919050565b60006020820190508181036000830152614e3a816148be565b9050919050565b60006020820190508181036000830152614e5a816148e1565b9050919050565b6000602082019050614e766000830184614904565b92915050565b6000614e86614e97565b9050614e928282615196565b919050565b6000604051905090565b600067ffffffffffffffff821115614ebc57614ebb6152ce565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614ee857614ee76152ce565b5b614ef1826152fd565b9050602081019050919050565b600067ffffffffffffffff821115614f1957614f186152ce565b5b614f22826152fd565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614f9282615118565b9150614f9d83615118565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614fd257614fd1615241565b5b828201905092915050565b6000614fe882615118565b9150614ff383615118565b92508261500357615002615270565b5b828204905092915050565b600061501982615118565b915061502483615118565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561505d5761505c615241565b5b828202905092915050565b600061507382615118565b915061507e83615118565b92508282101561509157615090615241565b5b828203905092915050565b60006150a7826150f8565b9050919050565b60006150b9826150f8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561514f578082015181840152602081019050615134565b8381111561515e576000848401525b50505050565b6000600282049050600182168061517c57607f821691505b602082108114156151905761518f61529f565b5b50919050565b61519f826152fd565b810181811067ffffffffffffffff821117156151be576151bd6152ce565b5b80604052505050565b60006151d282615118565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561520557615204615241565b5b600182019050919050565b600061521b82615118565b915061522683615118565b92508261523657615235615270565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f44726f7073706163653a3a70726573616c654275793a20696e76616c6964207460008201527f69636b65742e0000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f44726f7073706163653a3a6275793a20536d61727420636f6e7472616374732060008201527f617265206e6f7420616c6c6f77656420746f206275792e000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e6f7420656e6f75676820746f6b656e73206c6566742e000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f44726f7073706163653a3a70726573616c654275793a20496e7375666669636960008201527f656e74207061796d656e742e0000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f44726f7073706163653a3a6275793a20546f6f206d616e7920746f6b656e732060008201527f666f72206f6e65207472616e73616374696f6e2e000000000000000000000000602082015250565b7f44726f7073706163653a3a70726573616c654275793a205469636b657420616c60008201527f726561647920757365642e000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f44726f7073706163653a3a77686974656c6973744275793a20596f752061726560008201527f206e6f742077686974656c69737465642e000000000000000000000000000000602082015250565b7f44726f70537061636553616c653a3a7365745469636b6574416464726573733a60008201527f20496e76616c696420616464726573732e000000000000000000000000000000602082015250565b7f44726f7073706163653a3a6275793a20496e73756666696369656e742070617960008201527f6d656e742e000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f44726f7073706163653a3a70726573616c654275793a2050726573616c65206960008201527f73206e6f74204163746976652e00000000000000000000000000000000000000602082015250565b7f44726f7073706163653a3a636c6561725469636b65743a205469636b6574206960008201527f73206e6f74207573656400000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f44726f7073706163653a3a70726573616c654275793a20546f6f206d616e792060008201527f746f6b656e7320666f72206f6e65207472616e73616374696f6e2e0000000000602082015250565b7f44726f70537061636553616c653a3a77686974656c6973744275793a2057686960008201527f74656c69737420427579206973206e6f74204163746976652e00000000000000602082015250565b7f44726f7073706163653a3a6275793a2053616c65206973206e6f74206163746960008201527f76652e0000000000000000000000000000000000000000000000000000000000602082015250565b615b9b8161509c565b8114615ba657600080fd5b50565b615bb2816150ae565b8114615bbd57600080fd5b50565b615bc9816150c0565b8114615bd457600080fd5b50565b615be0816150cc565b8114615beb57600080fd5b50565b615bf781615118565b8114615c0257600080fd5b5056fea264697066735822122094ab527515940e160576ba4845a373f45fd2bc6bb43315ab482f7cff3876047d64736f6c634300080400330000000000000000000000000000000000000000000000000000000000001a0a000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002710000000000000000000000000856701083ed11a0d35bac3b769b4c8efe3330d17000000000000000000000000856701083ed11a0d35bac3b769b4c8efe3330d170000000000000000000000007ba0a79ec30259e2792a43989edd97c6e40bb3360000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000000d4d657461204d6f6e73746572730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024d4d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005568747470733a2f2f64726f7073706163652e6d7970696e6174612e636c6f75642f697066732f516d62414b4453734c36344e77586f4757736573625259374b77317142364d6a48465974627865615152316441442f0000000000000000000000

Deployed Bytecode

0x6080604052600436106102e85760003560e01c80636c0360eb11610190578063a22cb465116100dc578063d96a094a11610095578063ed9a5bbb1161006f578063ed9a5bbb14610aa6578063edac985b14610acf578063f2fde38b14610af8578063f4a0a52814610b21576102ef565b8063d96a094a14610a36578063db2e21bc14610a52578063e985e9c514610a69576102ef565b8063a22cb4651461093e578063ab26320e14610967578063b88d4fde14610990578063b89fe999146109b9578063c87b56dd146109d0578063d44e357314610a0d576102ef565b806389b0649b1161014957806395d89b411161012357806395d89b4114610882578063996517cf146108ad5780639b19251a146108d85780639e6a1d7d14610915576102ef565b806389b0649b146108155780638da5cb5b1461082c5780638ea5220f14610857576102ef565b80636c0360eb1461070757806370a0823114610732578063715018a61461076f57806371efdc211461078657806375796f76146107c3578063819b25ba146107ec576102ef565b80633100a5351161024f57806355f804b3116102085780636352211e116101e25780636352211e14610649578063646d7a7f146106865780636817c76c146106b157806368428a1b146106dc576102ef565b806355f804b3146105cc57806357a8e3fe146105f55780635c4e7e0614610620576102ef565b80633100a535146104f45780633ad7f56c1461050b5780633ccfd60b1461053657806342842e0e1461054d5780634a7d80b31461057657806353135ca0146105a1576102ef565b80630c424284116102a15780630c4242841461040757806318160ddd1461043057806319d1997a1461045b5780631f53ac021461048657806323b872dd146104af5780632ac7a2b3146104d8576102ef565b806301ffc9a7146102f457806306fdde0314610331578063081812fc1461035c57806308e9928714610399578063095ea7b3146103c25780630983061c146103eb576102ef565b366102ef57005b600080fd5b34801561030057600080fd5b5061031b60048036038101906103169190614223565b610b4a565b6040516103289190614a42565b60405180910390f35b34801561033d57600080fd5b50610346610c2c565b6040516103539190614a5d565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e91906142b6565b610cbe565b6040516103909190614937565b60405180910390f35b3480156103a557600080fd5b506103c060048036038101906103bb91906141fa565b610d43565b005b3480156103ce57600080fd5b506103e960048036038101906103e4919061417d565b610e22565b005b610405600480360381019061040091906142df565b610f3a565b005b34801561041357600080fd5b5061042e60048036038101906104299190614141565b6111ff565b005b34801561043c57600080fd5b5061044561130f565b6040516104529190614e61565b60405180910390f35b34801561046757600080fd5b50610470611315565b60405161047d9190614e61565b60405180910390f35b34801561049257600080fd5b506104ad60048036038101906104a89190614012565b61131b565b005b3480156104bb57600080fd5b506104d660048036038101906104d19190614077565b611434565b005b6104f260048036038101906104ed91906142b6565b611494565b005b34801561050057600080fd5b50610509611650565b005b34801561051757600080fd5b506105206117c6565b60405161052d9190614a42565b60405180910390f35b34801561054257600080fd5b5061054b6117d9565b005b34801561055957600080fd5b50610574600480360381019061056f9190614077565b61197f565b005b34801561058257600080fd5b5061058b61199f565b6040516105989190614952565b60405180910390f35b3480156105ad57600080fd5b506105b66119c5565b6040516105c39190614a42565b60405180910390f35b3480156105d857600080fd5b506105f360048036038101906105ee9190614275565b6119d8565b005b34801561060157600080fd5b5061060a611aa6565b6040516106179190614937565b60405180910390f35b34801561062c57600080fd5b50610647600480360381019061064291906142b6565b611acc565b005b34801561065557600080fd5b50610670600480360381019061066b91906142b6565b611ba8565b60405161067d9190614937565b60405180910390f35b34801561069257600080fd5b5061069b611c5a565b6040516106a89190614a42565b60405180910390f35b3480156106bd57600080fd5b506106c6611c6d565b6040516106d39190614e61565b60405180910390f35b3480156106e857600080fd5b506106f1611c73565b6040516106fe9190614a42565b60405180910390f35b34801561071357600080fd5b5061071c611c86565b6040516107299190614a5d565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190613fc0565b611d14565b6040516107669190614e61565b60405180910390f35b34801561077b57600080fd5b50610784611dcc565b005b34801561079257600080fd5b506107ad60048036038101906107a891906142b6565b611e54565b6040516107ba9190614a42565b60405180910390f35b3480156107cf57600080fd5b506107ea60048036038101906107e59190614012565b611e74565b005b3480156107f857600080fd5b50610813600480360381019061080e91906142b6565b611f8d565b005b34801561082157600080fd5b5061082a61204c565b005b34801561083857600080fd5b5061084161213a565b60405161084e9190614937565b60405180910390f35b34801561086357600080fd5b5061086c612164565b6040516108799190614952565b60405180910390f35b34801561088e57600080fd5b5061089761218a565b6040516108a49190614a5d565b60405180910390f35b3480156108b957600080fd5b506108c261221c565b6040516108cf9190614e61565b60405180910390f35b3480156108e457600080fd5b506108ff60048036038101906108fa9190613fc0565b612222565b60405161090c9190614a42565b60405180910390f35b34801561092157600080fd5b5061093c600480360381019061093791906142b6565b612242565b005b34801561094a57600080fd5b5061096560048036038101906109609190614141565b612301565b005b34801561097357600080fd5b5061098e600480360381019061098991906142b6565b612482565b005b34801561099c57600080fd5b506109b760048036038101906109b291906140c6565b6125c4565b005b3480156109c557600080fd5b506109ce612626565b005b3480156109dc57600080fd5b506109f760048036038101906109f291906142b6565b612714565b604051610a049190614a5d565b60405180910390f35b348015610a1957600080fd5b50610a346004803603810190610a2f91906142b6565b6127bc565b005b610a506004803603810190610a4b91906142b6565b612879565b005b348015610a5e57600080fd5b50610a676129f3565b005b348015610a7557600080fd5b50610a906004803603810190610a8b919061403b565b612abf565b604051610a9d9190614a42565b60405180910390f35b348015610ab257600080fd5b50610acd6004803603810190610ac89190613fc0565b612b53565b005b348015610adb57600080fd5b50610af66004803603810190610af191906141b9565b612cba565b005b348015610b0457600080fd5b50610b1f6004803603810190610b1a9190613fc0565b612e6b565b005b348015610b2d57600080fd5b50610b486004803603810190610b4391906142b6565b612f63565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c1557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c255750610c2482613036565b5b9050919050565b606060008054610c3b90615164565b80601f0160208091040260200160405190810160405280929190818152602001828054610c6790615164565b8015610cb45780601f10610c8957610100808354040283529160200191610cb4565b820191906000526020600020905b815481529060010190602001808311610c9757829003601f168201915b5050505050905090565b6000610cc9826130a0565b610d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cff90614ca1565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610d4b61310c565b73ffffffffffffffffffffffffffffffffffffffff16610d6961213a565b73ffffffffffffffffffffffffffffffffffffffff1614610dbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db690614cc1565b60405180910390fd5b80600c60006101000a81548160ff0219169083151502179055507f2a5bfbb68782e57b3242e612145304c845af3404e2d328a12dd2e7c078cd0117600c60009054906101000a900460ff16604051610e179190614a42565b60405180910390a150565b6000610e2d82611ba8565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9590614d81565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ebd61310c565b73ffffffffffffffffffffffffffffffffffffffff161480610eec5750610eeb81610ee661310c565b612abf565b5b610f2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2290614be1565b60405180910390fd5b610f358383613114565b505050565b600c60029054906101000a900460ff16610f89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8090614da1565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b8152600401610ffb9190614e61565b60206040518083038186803b15801561101357600080fd5b505afa158015611027573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061104b9190613fe9565b73ffffffffffffffffffffffffffffffffffffffff16146110a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109890614aa1565b60405180910390fd5b6011600083815260200190815260200160002060009054906101000a900460ff1615611102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f990614c61565b60405180910390fd5b600854811115611147576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113e90614e01565b60405180910390fd5b600034101561118b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118290614ba1565b60405180910390fd5b60016011600084815260200190815260200160002060006101000a81548160ff0219169083151502179055506111c0816131cd565b7fb77d41b776d1d5cc75b500402614335da616afa8aa95b49325e22db7f1ca86cc3383836040516111f393929190614a0b565b60405180910390a15050565b61120761310c565b73ffffffffffffffffffffffffffffffffffffffff1661122561213a565b73ffffffffffffffffffffffffffffffffffffffff161461127b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127290614cc1565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f8daaf060c3306c38e068a75c054bf96ecd85a3db1252712c4d93632744c42e0d82826040516113039291906149b9565b60405180910390a15050565b60075481565b600a5481565b61132361310c565b73ffffffffffffffffffffffffffffffffffffffff1661134161213a565b73ffffffffffffffffffffffffffffffffffffffff1614611397576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161138e90614cc1565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f268c00f4ec08b34fdde24b52e47a09d62f3f3837eb3b8ac7206cefb3bb5e5345600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040516114299190614952565b60405180910390a150565b61144561143f61310c565b826132e3565b611484576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147b90614de1565b60405180910390fd5b61148f8383836133c1565b505050565b600c60039054906101000a900460ff166114e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114da90614e21565b60405180910390fd5b600854811115611528576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151f90614e01565b60405180910390fd5b61153d8160095461361d90919063ffffffff16565b34101561157f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157690614ba1565b60405180910390fd5b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661160b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160290614d21565b60405180910390fd5b7f8714612a507e7fcd9f26d997e561a61611f4bad945c787b8865dc23823ef037b338260405161163c9291906149e2565b60405180910390a161164d816131cd565b50565b61165861310c565b73ffffffffffffffffffffffffffffffffffffffff1661167661213a565b73ffffffffffffffffffffffffffffffffffffffff16146116cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c390614cc1565b60405180910390fd5b600c60019054906101000a900460ff1615600c60016101000a81548160ff0219169083151502179055507f5a454f976028c400c4159ac85c61452441fcf06b9888c7c780c5980e3c3123dd600c60019054906101000a900460ff166040516117349190614a42565b60405180910390a16658d15e176280006009819055507f25b1f9f6b6e61dfca5575239769e4450ed2e49176670837f5d1a82a9a2fc693f60095460405161177b9190614e61565b60405180910390a160146008819055507f9ae30a041b5f2244849dc754c675b09aef4ad230b48995476fd6e6415d1fe8ab6008546040516117bc9190614e61565b60405180910390a1565b600c60039054906101000a900460ff1681565b6117e161310c565b73ffffffffffffffffffffffffffffffffffffffff166117ff61213a565b73ffffffffffffffffffffffffffffffffffffffff1614611855576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161184c90614cc1565b60405180910390fd5b6000479050600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6118bf6127106118b1600f548661361d90919063ffffffff16565b61363390919063ffffffff16565b9081150290604051600060405180830381858888f193505050501580156118ea573d6000803e3d6000fd5b50600c60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6119506127106119426010548661361d90919063ffffffff16565b61363390919063ffffffff16565b9081150290604051600060405180830381858888f1935050505015801561197b573d6000803e3d6000fd5b5050565b61199a838383604051806020016040528060008152506125c4565b505050565b600c60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c60029054906101000a900460ff1681565b6119e061310c565b73ffffffffffffffffffffffffffffffffffffffff166119fe61213a565b73ffffffffffffffffffffffffffffffffffffffff1614611a54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4b90614cc1565b60405180910390fd5b80600b9080519060200190611a6a929190613d24565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf6600b604051611a9b9190614a7f565b60405180910390a150565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611ad461310c565b73ffffffffffffffffffffffffffffffffffffffff16611af261213a565b73ffffffffffffffffffffffffffffffffffffffff1614611b48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3f90614cc1565b60405180910390fd5b80600f81905550611b66600f5461271061302090919063ffffffff16565b6010819055507fd20ab7c161b1f8ebfab00e747660c0fa31ae9123063e580b5be0aeab18623db2600f54604051611b9d9190614e61565b60405180910390a150565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4890614c21565b60405180910390fd5b80915050919050565b600c60009054906101000a900460ff1681565b60095481565b600c60019054906101000a900460ff1681565b600b8054611c9390615164565b80601f0160208091040260200160405190810160405280929190818152602001828054611cbf90615164565b8015611d0c5780601f10611ce157610100808354040283529160200191611d0c565b820191906000526020600020905b815481529060010190602001808311611cef57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7c90614c01565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611dd461310c565b73ffffffffffffffffffffffffffffffffffffffff16611df261213a565b73ffffffffffffffffffffffffffffffffffffffff1614611e48576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3f90614cc1565b60405180910390fd5b611e526000613649565b565b60116020528060005260406000206000915054906101000a900460ff1681565b611e7c61310c565b73ffffffffffffffffffffffffffffffffffffffff16611e9a61213a565b73ffffffffffffffffffffffffffffffffffffffff1614611ef0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee790614cc1565b60405180910390fd5b80600c60046101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fb470355146314037ce5186813b4b7c65bff2b87f98d44ff063570d0e22d65ba3600c60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff16604051611f829190614952565b60405180910390a150565b611f9561310c565b73ffffffffffffffffffffffffffffffffffffffff16611fb361213a565b73ffffffffffffffffffffffffffffffffffffffff1614612009576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200090614cc1565b60405180910390fd5b612012816131cd565b7fdb7b64a879507c32bda4d0cf22dee29ed875c7157ecbbc10fe11bf14fab06d12816040516120419190614e61565b60405180910390a150565b61205461310c565b73ffffffffffffffffffffffffffffffffffffffff1661207261213a565b73ffffffffffffffffffffffffffffffffffffffff16146120c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120bf90614cc1565b60405180910390fd5b600c60029054906101000a900460ff1615600c60026101000a81548160ff0219169083151502179055507f38822fae85453c65b78e1b7d02e45cae5eb0d7961e34226fb29c49dab9d3a357600c60029054906101000a900460ff166040516121309190614a42565b60405180910390a1565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606001805461219990615164565b80601f01602080910402602001604051908101604052809291908181526020018280546121c590615164565b80156122125780601f106121e757610100808354040283529160200191612212565b820191906000526020600020905b8154815290600101906020018083116121f557829003601f168201915b5050505050905090565b60085481565b60126020528060005260406000206000915054906101000a900460ff1681565b61224a61310c565b73ffffffffffffffffffffffffffffffffffffffff1661226861213a565b73ffffffffffffffffffffffffffffffffffffffff16146122be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b590614cc1565b60405180910390fd5b806008819055507f9ae30a041b5f2244849dc754c675b09aef4ad230b48995476fd6e6415d1fe8ab6008546040516122f69190614e61565b60405180910390a150565b61230961310c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612377576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236e90614b81565b60405180910390fd5b806005600061238461310c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661243161310c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516124769190614a42565b60405180910390a35050565b61248a61310c565b73ffffffffffffffffffffffffffffffffffffffff166124a861213a565b73ffffffffffffffffffffffffffffffffffffffff16146124fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f590614cc1565b60405180910390fd5b6011600082815260200190815260200160002060009054906101000a900460ff1661255e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255590614dc1565b60405180910390fd5b60006011600083815260200190815260200160002060006101000a81548160ff0219169083151502179055507f256e63760868166c3f047c49d3e1614c1ca6c620d715c552c54ddb4ba428719c816040516125b99190614e61565b60405180910390a150565b6125d56125cf61310c565b836132e3565b612614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260b90614de1565b60405180910390fd5b6126208484848461370f565b50505050565b61262e61310c565b73ffffffffffffffffffffffffffffffffffffffff1661264c61213a565b73ffffffffffffffffffffffffffffffffffffffff16146126a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269990614cc1565b60405180910390fd5b600c60039054906101000a900460ff1615600c60036101000a81548160ff0219169083151502179055507ffabb6e4b24bd8ac3a08555e569d13590c5006dc61e4aae65e74296d3df6759ed600c60039054906101000a900460ff1660405161270a9190614a42565b60405180910390a1565b606061271f826130a0565b61275e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275590614d01565b60405180910390fd5b6000600b805461276d90615164565b90501161278957604051806020016040528060008152506127b5565b600b6127948361376b565b6040516020016127a5929190614913565b6040516020818303038152906040525b9050919050565b6127c461310c565b73ffffffffffffffffffffffffffffffffffffffff166127e261213a565b73ffffffffffffffffffffffffffffffffffffffff1614612838576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282f90614cc1565b60405180910390fd5b80600a819055507f178f2d92de18f124251b08e25bacba56eda0716625c1e799fc6c8ed1ee7d1d078160405161286e9190614e61565b60405180910390a150565b600c60019054906101000a900460ff166128c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128bf90614e41565b60405180910390fd5b60085481111561290d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161290490614c41565b60405180910390fd5b6129228160095461361d90919063ffffffff16565b341015612964576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295b90614d61565b60405180910390fd5b600c60009054906101000a900460ff166129e7573373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146129e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129dd90614b01565b60405180910390fd5b5b6129f0816131cd565b50565b6129fb61310c565b73ffffffffffffffffffffffffffffffffffffffff16612a1961213a565b73ffffffffffffffffffffffffffffffffffffffff1614612a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6690614cc1565b60405180910390fd5b612a7761213a565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015612abc573d6000803e3d6000fd5b50565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612b5b61310c565b73ffffffffffffffffffffffffffffffffffffffff16612b7961213a565b73ffffffffffffffffffffffffffffffffffffffff1614612bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc690614cc1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612c3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3690614d41565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f4846b8d14a603fbd3567c63384f41a947d787c004e59ce39ee755d0485ae5ed881604051612caf9190614937565b60405180910390a150565b612cc261310c565b73ffffffffffffffffffffffffffffffffffffffff16612ce061213a565b73ffffffffffffffffffffffffffffffffffffffff1614612d36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2d90614cc1565b60405180910390fd5b60005b8151811015612e6757600160126000848481518110612d81577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507faec42ac7f1bb8651906ae6522f50a19429e124e8ea678ef59fd27750759288a2828281518110612e34577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516001604051612e4c9291906149b9565b60405180910390a18080612e5f906151c7565b915050612d39565b5050565b612e7361310c565b73ffffffffffffffffffffffffffffffffffffffff16612e9161213a565b73ffffffffffffffffffffffffffffffffffffffff1614612ee7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ede90614cc1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4e90614ae1565b60405180910390fd5b612f6081613649565b50565b612f6b61310c565b73ffffffffffffffffffffffffffffffffffffffff16612f8961213a565b73ffffffffffffffffffffffffffffffffffffffff1614612fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fd690614cc1565b60405180910390fd5b806009819055507f25b1f9f6b6e61dfca5575239769e4450ed2e49176670837f5d1a82a9a2fc693f816040516130159190614e61565b60405180910390a150565b6000818361302e9190615068565b905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661318783611ba8565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600a546131e58260075461391890919063ffffffff16565b1115613226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321d90614b41565b60405180910390fd5b6000600754905060005b828110156132de5761324c60018361391890919063ffffffff16565b9150613264600160075461391890919063ffffffff16565b600781905550613274338361392e565b813373ffffffffffffffffffffffffffffffffffffffff167f85a66b9141978db9980f7e0ce3b468cebf4f7999f32b23091c5c03e798b1ba7a6132b685612714565b6040516132c39190614a5d565b60405180910390a380806132d6906151c7565b915050613230565b505050565b60006132ee826130a0565b61332d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332490614bc1565b60405180910390fd5b600061333883611ba8565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806133a757508373ffffffffffffffffffffffffffffffffffffffff1661338f84610cbe565b73ffffffffffffffffffffffffffffffffffffffff16145b806133b857506133b78185612abf565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166133e182611ba8565b73ffffffffffffffffffffffffffffffffffffffff1614613437576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161342e90614ce1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161349e90614b61565b60405180910390fd5b6134b283838361394c565b6134bd600082613114565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461350d9190615068565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135649190614f87565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000818361362b919061500e565b905092915050565b600081836136419190614fdd565b905092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b61371a8484846133c1565b61372684848484613951565b613765576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161375c90614ac1565b60405180910390fd5b50505050565b606060008214156137b3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613913565b600082905060005b600082146137e55780806137ce906151c7565b915050600a826137de9190614fdd565b91506137bb565b60008167ffffffffffffffff811115613827577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156138595781602001600182028036833780820191505090505b5090505b6000851461390c576001826138729190615068565b9150600a856138819190615210565b603061388d9190614f87565b60f81b8183815181106138c9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856139059190614fdd565b945061385d565b8093505050505b919050565b600081836139269190614f87565b905092915050565b613948828260405180602001604052806000815250613ae8565b5050565b505050565b60006139728473ffffffffffffffffffffffffffffffffffffffff16613b43565b15613adb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261399b61310c565b8786866040518563ffffffff1660e01b81526004016139bd949392919061496d565b602060405180830381600087803b1580156139d757600080fd5b505af1925050508015613a0857506040513d601f19601f82011682018060405250810190613a05919061424c565b60015b613a8b573d8060008114613a38576040519150601f19603f3d011682016040523d82523d6000602084013e613a3d565b606091505b50600081511415613a83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a7a90614ac1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613ae0565b600190505b949350505050565b613af28383613b56565b613aff6000848484613951565b613b3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b3590614ac1565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613bc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613bbd90614c81565b60405180910390fd5b613bcf816130a0565b15613c0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c0690614b21565b60405180910390fd5b613c1b6000838361394c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613c6b9190614f87565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613d3090615164565b90600052602060002090601f016020900481019282613d525760008555613d99565b82601f10613d6b57805160ff1916838001178555613d99565b82800160010185558215613d99579182015b82811115613d98578251825591602001919060010190613d7d565b5b509050613da69190613daa565b5090565b5b80821115613dc3576000816000905550600101613dab565b5090565b6000613dda613dd584614ea1565b614e7c565b90508083825260208201905082856020860282011115613df957600080fd5b60005b85811015613e295781613e0f8882613eaf565b845260208401935060208301925050600181019050613dfc565b5050509392505050565b6000613e46613e4184614ecd565b614e7c565b905082815260208101848484011115613e5e57600080fd5b613e69848285615122565b509392505050565b6000613e84613e7f84614efe565b614e7c565b905082815260208101848484011115613e9c57600080fd5b613ea7848285615122565b509392505050565b600081359050613ebe81615b92565b92915050565b600081519050613ed381615b92565b92915050565b600081359050613ee881615ba9565b92915050565b600082601f830112613eff57600080fd5b8135613f0f848260208601613dc7565b91505092915050565b600081359050613f2781615bc0565b92915050565b600081359050613f3c81615bd7565b92915050565b600081519050613f5181615bd7565b92915050565b600082601f830112613f6857600080fd5b8135613f78848260208601613e33565b91505092915050565b600082601f830112613f9257600080fd5b8135613fa2848260208601613e71565b91505092915050565b600081359050613fba81615bee565b92915050565b600060208284031215613fd257600080fd5b6000613fe084828501613eaf565b91505092915050565b600060208284031215613ffb57600080fd5b600061400984828501613ec4565b91505092915050565b60006020828403121561402457600080fd5b600061403284828501613ed9565b91505092915050565b6000806040838503121561404e57600080fd5b600061405c85828601613eaf565b925050602061406d85828601613eaf565b9150509250929050565b60008060006060848603121561408c57600080fd5b600061409a86828701613eaf565b93505060206140ab86828701613eaf565b92505060406140bc86828701613fab565b9150509250925092565b600080600080608085870312156140dc57600080fd5b60006140ea87828801613eaf565b94505060206140fb87828801613eaf565b935050604061410c87828801613fab565b925050606085013567ffffffffffffffff81111561412957600080fd5b61413587828801613f57565b91505092959194509250565b6000806040838503121561415457600080fd5b600061416285828601613eaf565b925050602061417385828601613f18565b9150509250929050565b6000806040838503121561419057600080fd5b600061419e85828601613eaf565b92505060206141af85828601613fab565b9150509250929050565b6000602082840312156141cb57600080fd5b600082013567ffffffffffffffff8111156141e557600080fd5b6141f184828501613eee565b91505092915050565b60006020828403121561420c57600080fd5b600061421a84828501613f18565b91505092915050565b60006020828403121561423557600080fd5b600061424384828501613f2d565b91505092915050565b60006020828403121561425e57600080fd5b600061426c84828501613f42565b91505092915050565b60006020828403121561428757600080fd5b600082013567ffffffffffffffff8111156142a157600080fd5b6142ad84828501613f81565b91505092915050565b6000602082840312156142c857600080fd5b60006142d684828501613fab565b91505092915050565b600080604083850312156142f257600080fd5b600061430085828601613fab565b925050602061431185828601613fab565b9150509250929050565b614324816150ae565b82525050565b6143338161509c565b82525050565b614342816150c0565b82525050565b600061435382614f44565b61435d8185614f5a565b935061436d818560208601615131565b614376816152fd565b840191505092915050565b600061438c82614f4f565b6143968185614f6b565b93506143a6818560208601615131565b6143af816152fd565b840191505092915050565b60006143c582614f4f565b6143cf8185614f7c565b93506143df818560208601615131565b80840191505092915050565b600081546143f881615164565b6144028186614f6b565b9450600182166000811461441d576001811461442f57614462565b60ff1983168652602086019350614462565b61443885614f2f565b60005b8381101561445a5781548189015260018201915060208101905061443b565b808801955050505b50505092915050565b6000815461447881615164565b6144828186614f7c565b9450600182166000811461449d57600181146144ae576144e1565b60ff198316865281860193506144e1565b6144b785614f2f565b60005b838110156144d9578154818901526001820191506020810190506144ba565b838801955050505b50505092915050565b60006144f7602683614f6b565b91506145028261530e565b604082019050919050565b600061451a603283614f6b565b91506145258261535d565b604082019050919050565b600061453d602683614f6b565b9150614548826153ac565b604082019050919050565b6000614560603783614f6b565b915061456b826153fb565b604082019050919050565b6000614583601c83614f6b565b915061458e8261544a565b602082019050919050565b60006145a6601783614f6b565b91506145b182615473565b602082019050919050565b60006145c9602483614f6b565b91506145d48261549c565b604082019050919050565b60006145ec601983614f6b565b91506145f7826154eb565b602082019050919050565b600061460f602c83614f6b565b915061461a82615514565b604082019050919050565b6000614632602c83614f6b565b915061463d82615563565b604082019050919050565b6000614655603883614f6b565b9150614660826155b2565b604082019050919050565b6000614678602a83614f6b565b915061468382615601565b604082019050919050565b600061469b602983614f6b565b91506146a682615650565b604082019050919050565b60006146be603483614f6b565b91506146c98261569f565b604082019050919050565b60006146e1602b83614f6b565b91506146ec826156ee565b604082019050919050565b6000614704602083614f6b565b915061470f8261573d565b602082019050919050565b6000614727602c83614f6b565b915061473282615766565b604082019050919050565b600061474a602083614f6b565b9150614755826157b5565b602082019050919050565b600061476d602983614f6b565b9150614778826157de565b604082019050919050565b6000614790602f83614f6b565b915061479b8261582d565b604082019050919050565b60006147b3603183614f6b565b91506147be8261587c565b604082019050919050565b60006147d6603183614f6b565b91506147e1826158cb565b604082019050919050565b60006147f9602583614f6b565b91506148048261591a565b604082019050919050565b600061481c602183614f6b565b915061482782615969565b604082019050919050565b600061483f602d83614f6b565b915061484a826159b8565b604082019050919050565b6000614862602a83614f6b565b915061486d82615a07565b604082019050919050565b6000614885603183614f6b565b915061489082615a56565b604082019050919050565b60006148a8603b83614f6b565b91506148b382615aa5565b604082019050919050565b60006148cb603983614f6b565b91506148d682615af4565b604082019050919050565b60006148ee602383614f6b565b91506148f982615b43565b604082019050919050565b61490d81615118565b82525050565b600061491f828561446b565b915061492b82846143ba565b91508190509392505050565b600060208201905061494c600083018461432a565b92915050565b6000602082019050614967600083018461431b565b92915050565b6000608082019050614982600083018761432a565b61498f602083018661432a565b61499c6040830185614904565b81810360608301526149ae8184614348565b905095945050505050565b60006040820190506149ce600083018561432a565b6149db6020830184614339565b9392505050565b60006040820190506149f7600083018561432a565b614a046020830184614904565b9392505050565b6000606082019050614a20600083018661432a565b614a2d6020830185614904565b614a3a6040830184614904565b949350505050565b6000602082019050614a576000830184614339565b92915050565b60006020820190508181036000830152614a778184614381565b905092915050565b60006020820190508181036000830152614a9981846143eb565b905092915050565b60006020820190508181036000830152614aba816144ea565b9050919050565b60006020820190508181036000830152614ada8161450d565b9050919050565b60006020820190508181036000830152614afa81614530565b9050919050565b60006020820190508181036000830152614b1a81614553565b9050919050565b60006020820190508181036000830152614b3a81614576565b9050919050565b60006020820190508181036000830152614b5a81614599565b9050919050565b60006020820190508181036000830152614b7a816145bc565b9050919050565b60006020820190508181036000830152614b9a816145df565b9050919050565b60006020820190508181036000830152614bba81614602565b9050919050565b60006020820190508181036000830152614bda81614625565b9050919050565b60006020820190508181036000830152614bfa81614648565b9050919050565b60006020820190508181036000830152614c1a8161466b565b9050919050565b60006020820190508181036000830152614c3a8161468e565b9050919050565b60006020820190508181036000830152614c5a816146b1565b9050919050565b60006020820190508181036000830152614c7a816146d4565b9050919050565b60006020820190508181036000830152614c9a816146f7565b9050919050565b60006020820190508181036000830152614cba8161471a565b9050919050565b60006020820190508181036000830152614cda8161473d565b9050919050565b60006020820190508181036000830152614cfa81614760565b9050919050565b60006020820190508181036000830152614d1a81614783565b9050919050565b60006020820190508181036000830152614d3a816147a6565b9050919050565b60006020820190508181036000830152614d5a816147c9565b9050919050565b60006020820190508181036000830152614d7a816147ec565b9050919050565b60006020820190508181036000830152614d9a8161480f565b9050919050565b60006020820190508181036000830152614dba81614832565b9050919050565b60006020820190508181036000830152614dda81614855565b9050919050565b60006020820190508181036000830152614dfa81614878565b9050919050565b60006020820190508181036000830152614e1a8161489b565b9050919050565b60006020820190508181036000830152614e3a816148be565b9050919050565b60006020820190508181036000830152614e5a816148e1565b9050919050565b6000602082019050614e766000830184614904565b92915050565b6000614e86614e97565b9050614e928282615196565b919050565b6000604051905090565b600067ffffffffffffffff821115614ebc57614ebb6152ce565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614ee857614ee76152ce565b5b614ef1826152fd565b9050602081019050919050565b600067ffffffffffffffff821115614f1957614f186152ce565b5b614f22826152fd565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614f9282615118565b9150614f9d83615118565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614fd257614fd1615241565b5b828201905092915050565b6000614fe882615118565b9150614ff383615118565b92508261500357615002615270565b5b828204905092915050565b600061501982615118565b915061502483615118565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561505d5761505c615241565b5b828202905092915050565b600061507382615118565b915061507e83615118565b92508282101561509157615090615241565b5b828203905092915050565b60006150a7826150f8565b9050919050565b60006150b9826150f8565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561514f578082015181840152602081019050615134565b8381111561515e576000848401525b50505050565b6000600282049050600182168061517c57607f821691505b602082108114156151905761518f61529f565b5b50919050565b61519f826152fd565b810181811067ffffffffffffffff821117156151be576151bd6152ce565b5b80604052505050565b60006151d282615118565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561520557615204615241565b5b600182019050919050565b600061521b82615118565b915061522683615118565b92508261523657615235615270565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f44726f7073706163653a3a70726573616c654275793a20696e76616c6964207460008201527f69636b65742e0000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f44726f7073706163653a3a6275793a20536d61727420636f6e7472616374732060008201527f617265206e6f7420616c6c6f77656420746f206275792e000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e6f7420656e6f75676820746f6b656e73206c6566742e000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f44726f7073706163653a3a70726573616c654275793a20496e7375666669636960008201527f656e74207061796d656e742e0000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f44726f7073706163653a3a6275793a20546f6f206d616e7920746f6b656e732060008201527f666f72206f6e65207472616e73616374696f6e2e000000000000000000000000602082015250565b7f44726f7073706163653a3a70726573616c654275793a205469636b657420616c60008201527f726561647920757365642e000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f44726f7073706163653a3a77686974656c6973744275793a20596f752061726560008201527f206e6f742077686974656c69737465642e000000000000000000000000000000602082015250565b7f44726f70537061636553616c653a3a7365745469636b6574416464726573733a60008201527f20496e76616c696420616464726573732e000000000000000000000000000000602082015250565b7f44726f7073706163653a3a6275793a20496e73756666696369656e742070617960008201527f6d656e742e000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f44726f7073706163653a3a70726573616c654275793a2050726573616c65206960008201527f73206e6f74204163746976652e00000000000000000000000000000000000000602082015250565b7f44726f7073706163653a3a636c6561725469636b65743a205469636b6574206960008201527f73206e6f74207573656400000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f44726f7073706163653a3a70726573616c654275793a20546f6f206d616e792060008201527f746f6b656e7320666f72206f6e65207472616e73616374696f6e2e0000000000602082015250565b7f44726f70537061636553616c653a3a77686974656c6973744275793a2057686960008201527f74656c69737420427579206973206e6f74204163746976652e00000000000000602082015250565b7f44726f7073706163653a3a6275793a2053616c65206973206e6f74206163746960008201527f76652e0000000000000000000000000000000000000000000000000000000000602082015250565b615b9b8161509c565b8114615ba657600080fd5b50565b615bb2816150ae565b8114615bbd57600080fd5b50565b615bc9816150c0565b8114615bd457600080fd5b50565b615be0816150cc565b8114615beb57600080fd5b50565b615bf781615118565b8114615c0257600080fd5b5056fea264697066735822122094ab527515940e160576ba4845a373f45fd2bc6bb43315ab482f7cff3876047d64736f6c63430008040033

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

0000000000000000000000000000000000000000000000000000000000001a0a000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002710000000000000000000000000856701083ed11a0d35bac3b769b4c8efe3330d17000000000000000000000000856701083ed11a0d35bac3b769b4c8efe3330d170000000000000000000000007ba0a79ec30259e2792a43989edd97c6e40bb3360000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000000d4d657461204d6f6e73746572730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024d4d000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005568747470733a2f2f64726f7073706163652e6d7970696e6174612e636c6f75642f697066732f516d62414b4453734c36344e77586f4757736573625259374b77317142364d6a48465974627865615152316441442f0000000000000000000000

-----Decoded View---------------
Arg [0] : _supplyLimit (uint256): 6666
Arg [1] : _mintLimit (uint256): 10
Arg [2] : _mintPrice (uint256): 0
Arg [3] : _devSaleShare (uint256): 10000
Arg [4] : _withdrawalWallet (address): 0x856701083eD11A0D35bAc3B769B4c8efE3330d17
Arg [5] : _devWallet (address): 0x856701083eD11A0D35bAc3B769B4c8efE3330d17
Arg [6] : _ticketAddress (address): 0x7ba0A79eC30259E2792A43989EdD97c6E40Bb336
Arg [7] : _name (string): Meta Monsters
Arg [8] : _ticker (string): MM
Arg [9] : _baseURI (string): https://dropspace.mypinata.cloud/ipfs/QmbAKDSsL64NwXoGWsesbRY7Kw1qB6MjHFYtbxeaQR1dAD/

-----Encoded View---------------
18 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000001a0a
Arg [1] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [4] : 000000000000000000000000856701083ed11a0d35bac3b769b4c8efe3330d17
Arg [5] : 000000000000000000000000856701083ed11a0d35bac3b769b4c8efe3330d17
Arg [6] : 0000000000000000000000007ba0a79ec30259e2792a43989edd97c6e40bb336
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [9] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [10] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [11] : 4d657461204d6f6e737465727300000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [13] : 4d4d000000000000000000000000000000000000000000000000000000000000
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000055
Arg [15] : 68747470733a2f2f64726f7073706163652e6d7970696e6174612e636c6f7564
Arg [16] : 2f697066732f516d62414b4453734c36344e77586f4757736573625259374b77
Arg [17] : 317142364d6a48465974627865615152316441442f0000000000000000000000


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.