ETH Price: $2,525.69 (+0.35%)
Gas: 0.74 Gwei

Token

Cumplant (PLANT)
 

Overview

Max Total Supply

252 PLANT

Holders

155

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
hacked.ultrasuper.eth
Balance
1 PLANT
0x1df9ca1eee42ba1efdc565040f9032ab427d45aa
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Cumplant

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : cumplant.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

/**
 * @title Cumplant contract
 * @dev Extends ERC721 Non-Fungible Token Standard basic implementation
 */
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract Cumplant is ERC721Enumerable, Ownable {
    // Cumplant Contract Constants
    uint256 public MINT_ETH_COST = 2 * 10 ** 16; // 0.02 ETH
    uint256 public RESERVED_SUPPLY = 50;
    uint256 public MAX_IN_ONE_GO = 20;
    uint256 public MAX_SUPPLY = 10000;
    uint256 public FREE_UNDER_SUPPLY = RESERVED_SUPPLY + 500;
    uint256 public MAX_SUPPLY_PER_ADDRESS = 500;
    // Provenance (and reveal) Hash.
    string public PROVENANCE_HASH = "";
    // The Genesis Cumplant provenance index.
    uint256 public GENESIS_CUMPLANT = 0;
    // Pre set reveal time.
    uint256 public REVEAL_TIMESTAMP = 1626487200;
    // End of pre-sale block number.
    uint256 public GENESIS_BLOCK = 0;

    // Interaction variables.
    // To prevent minting when not ready.
    bool private saleLock = true;
    // The base URI of the tokens.
    string internal tokenBaseURI;
    // Free Supply so far.
    uint256 public freeSupply = 0;

    // Company variables.
    address[] private companyAddresses;
    mapping (address => uint) private companyAddressAmounts;

    // And it begins...
    // Name: Cumplant, Symbol: CUMPLANTS
    constructor(string memory name, string memory symbol, address[] memory _companyAddresses)
        ERC721(name, symbol) {
        companyAddresses = _companyAddresses;
    }

    ///////////////////////////////////////////////////////////////////////////////////////////////////////////
    // Degen Plantation Functions
    // - Degen Plantation finances...
    ///////////////////////////////////////////////////////////////////////////////////////////////////////////
    
    function withdrawFunds(uint amount) external {
        require(amount > 0, "Withdraw amount  can't be 0");
        require(companyAddressAmounts[msg.sender] >= amount, "No funds left or not a member.");

        companyAddressAmounts[msg.sender] -= amount;
        (bool success, ) = payable(msg.sender).call{value: amount}("");
        require(success, "Transfer failed.");
    }
    
    function withdrawOwner(uint amount) external onlyOwner {
        require(address(this).balance > 0, "Address balance can't be 0");
        require(amount > 0, "Withdraw amount can't be 0");
        require(amount <= address(this).balance, "Withdraw amount can't be more than what the contract has.");
        
        uint reservedFunds = 0;
        for (uint i = 0; i < companyAddresses.length; i++) {
            address _address = companyAddresses[i];
            reservedFunds += companyAddressAmounts[_address];
        }

        uint amountAvailableOwner = address(this).balance - reservedFunds;
        require(amount <= amountAvailableOwner, "The request amount can't be higher than what the owner has available.");

        uint amountToTransferEach = amount / companyAddresses.length;
        for (uint i = 0; i < companyAddresses.length; i++) {
            address _address = companyAddresses[i];
            (bool success, ) = payable(_address).call{value: amountToTransferEach}("");
            require(success, "Transfer failed.");
        }
    }

    function checkCompanyBalance() external view returns (uint) {
        return companyAddressAmounts[msg.sender];
    }

    function checkOwnerBalance() external view onlyOwner returns (uint256) {
        uint reservedFunds = 0;
        for (uint i = 0; i < companyAddresses.length; i++) {
            address _address = companyAddresses[i];
            reservedFunds += companyAddressAmounts[_address];
        }
        return address(this).balance - reservedFunds;
    }
    
    function updateAccounting() private {
        uint percent = 90 / companyAddresses.length;
        uint amountEach = msg.value * percent / 100;

        for (uint i = 0; i < companyAddresses.length; i++) {
            address a = companyAddresses[i];
            companyAddressAmounts[a] += amountEach;
        }
    }

    ///////////////////////////////////////////////////////////////////////////////////////////////////////////
    // OnlyOwner functions.
    ///////////////////////////////////////////////////////////////////////////////////////////////////////////
    /**
     * The reveal timestamp.
     */
    function setRevealTimestamp(uint256 _revealTimeStamp) external onlyOwner {
        REVEAL_TIMESTAMP = _revealTimeStamp;
    }

    /**
     * Set the provenance reveal hash.
     */
    function setProvenanceHash(string memory _provenanceHash) external onlyOwner {  
        PROVENANCE_HASH = _provenanceHash;
    }

    /**
     * Returns the baseURI which in our case corresponds to tokenBaseURI.
     */
    function _baseURI() internal view virtual override returns (string memory) {
        return tokenBaseURI;
    }

    /**
     * Sets the baseURI which will be stored as tokenBaseURI.
     */
    function setBaseURI(string memory baseURI) external onlyOwner {
        tokenBaseURI = baseURI;
    }

    /**
     * Flip the sale lock. 
     */
    function flipSaleLock() external onlyOwner {
        saleLock = !saleLock;
    }

    /**
     * Allows the owner to claim the company tokens.
     * - Reserved for the team, giveaways, partnerships, etc.
     */
    function reserveCum() external onlyOwner {
        require(totalSupply() < RESERVED_SUPPLY, "Already claimed the reserved supply");
        
        for (uint i = 0; i < RESERVED_SUPPLY; i++) {
            _safeMint(msg.sender, totalSupply());
        }
    }
    
    /**
     * External owner access to set the Genesis Cumplant index.
     */
     function setGenesisCumplant() external onlyOwner {
        require(GENESIS_CUMPLANT == 0, "Genesis index already set");
        require(GENESIS_BLOCK != 0, "Genesis block must be set");

        setGenesisCumplantInner();
    }

    /**
     * External owner access to set the Genesis Block and then Genesis Cumplant index.
     */
    function setGenesisBlock() external onlyOwner {
        require(GENESIS_CUMPLANT == 0, "Genesis index already set");
        require(GENESIS_BLOCK == 0, "Genesis block already set");

        setGenesisBlockInner();
    }
       

    ///////////////////////////////////////////////////////////////////////////////////////////////////////////
    // Private Functions
    ///////////////////////////////////////////////////////////////////////////////////////////////////////////
    /**
     * Sets the Genesis Cumplant index.
     */
    function setGenesisCumplantInner() private {
        require(GENESIS_CUMPLANT == 0, "Genesis index already set");
        require(GENESIS_BLOCK != 0, "Genesis block must be set");
        // We are aware that this could result in 0 which would be the default order.
        // We thought about removing that but it also removes part of the randomness.
        GENESIS_CUMPLANT = uint(keccak256(
            abi.encodePacked(block.timestamp, block.difficulty, msg.sender))) % MAX_SUPPLY;
    }

    /**
     * Sets the Genesis Block and then Genesis Cumplant index.
     */
    function setGenesisBlockInner() private {
        require(GENESIS_CUMPLANT == 0, "Genesis index already set");
        require(GENESIS_BLOCK == 0, "Genesis block already set");
        
        GENESIS_BLOCK = block.number;

        // Now set the Genesis Cumplant.
        setGenesisCumplantInner();
    }

    /**
     * Sets the Genesis Block if:
     * - The GENESIS Block and Cumplant have not been set.
     * - The max supply has been reached.
     * - The Pre-Sale period has ended.
     */  
    function setGenesisIfReady() private {
        if (GENESIS_CUMPLANT == 0 &&
            GENESIS_BLOCK == 0 &&
            (totalSupply() == MAX_SUPPLY || block.timestamp >= REVEAL_TIMESTAMP)) {
                setGenesisBlockInner();
        }
    }
    
    ///////////////////////////////////////////////////////////////////////////////////////////////////////////
    // General public functions
    ///////////////////////////////////////////////////////////////////////////////////////////////////////////    
    /**
     * Returns the cost of minting N amount.
     */
    function price(uint amount) public view returns (uint256) {
        // 500 free and only 1 per address.
        if (freeSupply < FREE_UNDER_SUPPLY && balanceOf(msg.sender) == 0) {
            return MINT_ETH_COST * (amount - 1);
        }
        
        return MINT_ETH_COST * amount;
    }

    /**
     * Returns the holder token IDs which will help owners visualize their Cumplants in the website.
     */  
    function getHolderTokenIDs(address holder) external view returns(uint256[] memory) {
        uint tokenCount = balanceOf(holder);

        uint256[] memory tokensIDs = new uint256[](tokenCount);
        for(uint i = 0; i < tokenCount; i++) {
            // Store the token indices.
            tokensIDs[i] = tokenOfOwnerByIndex(holder, i);
        }

        return tokensIDs;
    }

    /**
     * Mints CUMPLANTS
     */  
    function mintCum(uint tokenAmount) external payable {
        uint256 _nextMintTokenId = totalSupply();

        require(!saleLock, "The sale is not open yet");
        require(_nextMintTokenId < MAX_SUPPLY, "The sale has ended");
        require(_nextMintTokenId + tokenAmount <= MAX_SUPPLY, "Transaction exceeds max supply");        
        require(tokenAmount <= MAX_IN_ONE_GO, "Token Amount exceeded the max allowed per transaction (20)");
        require(balanceOf(msg.sender) + tokenAmount <= MAX_SUPPLY_PER_ADDRESS, "Exceeds max minted tokens for this address (500)");
        require(msg.value >= price(tokenAmount), "Value sent is below total cost");

        for (uint i = 0; i < tokenAmount; i++) {
            // Double check that we are not trying to mint more than the max supply.            
            if (totalSupply() < MAX_SUPPLY) {
                // Keep track of the free supply.
                if (freeSupply < FREE_UNDER_SUPPLY && balanceOf(msg.sender) == 0) {
                    freeSupply++;
                }
                _safeMint(msg.sender, totalSupply());
            }
        }
        // Set the Genesis Block if ready (if it's time).
        setGenesisIfReady();
        // Perform accounting.
        updateAccounting();
    }
}

File 2 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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 4 of 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}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data)
        private returns (bool)
    {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { }
}

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

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

File 6 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 7 of 13 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

File 8 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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 9 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;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 10 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 11 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 12 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 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",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"address[]","name":"_companyAddresses","type":"address[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_UNDER_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GENESIS_BLOCK","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GENESIS_CUMPLANT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_IN_ONE_GO","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY_PER_ADDRESS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_ETH_COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE_HASH","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REVEAL_TIMESTAMP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"checkCompanyBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"checkOwnerBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flipSaleLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"holder","type":"address"}],"name":"getHolderTokenIDs","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"mintCum","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveCum","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setGenesisBlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setGenesisCumplant","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_revealTimeStamp","type":"uint256"}],"name":"setRevealTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdrawOwner","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266470de4df820000600b556032600c556014600d55612710600e556101f4600c54620000319190620005a1565b600f556101f4601055604051806020016040528060008152506011908051906020019062000061929190620001d8565b5060006012556360f239a060135560006014556001601560006101000a81548160ff0219169083151502179055506000601755348015620000a157600080fd5b5060405162006067380380620060678339818101604052810190620000c791906200045a565b82828160009080519060200190620000e1929190620001d8565b508060019080519060200190620000fa929190620001d8565b50505060006200010f620001d060201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3508060189080519060200190620001c692919062000269565b50505050620007af565b600033905090565b828054620001e69062000672565b90600052602060002090601f0160209004810192826200020a576000855562000256565b82601f106200022557805160ff191683800117855562000256565b8280016001018555821562000256579182015b828111156200025557825182559160200191906001019062000238565b5b509050620002659190620002f8565b5090565b828054828255906000526020600020908101928215620002e5579160200282015b82811115620002e45782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906200028a565b5b509050620002f49190620002f8565b5090565b5b8082111562000313576000816000905550600101620002f9565b5090565b60006200032e62000328846200053c565b62000513565b9050808382526020820190508285602086028201111562000354576200035362000770565b5b60005b858110156200038857816200036d8882620003dd565b84526020840193506020830192505060018101905062000357565b5050509392505050565b6000620003a9620003a3846200056b565b62000513565b905082815260208101848484011115620003c857620003c762000775565b5b620003d58482856200063c565b509392505050565b600081519050620003ee8162000795565b92915050565b600082601f8301126200040c576200040b6200076b565b5b81516200041e84826020860162000317565b91505092915050565b600082601f8301126200043f576200043e6200076b565b5b81516200045184826020860162000392565b91505092915050565b6000806000606084860312156200047657620004756200077f565b5b600084015167ffffffffffffffff8111156200049757620004966200077a565b5b620004a58682870162000427565b935050602084015167ffffffffffffffff811115620004c957620004c86200077a565b5b620004d78682870162000427565b925050604084015167ffffffffffffffff811115620004fb57620004fa6200077a565b5b6200050986828701620003f4565b9150509250925092565b60006200051f62000532565b90506200052d8282620006a8565b919050565b6000604051905090565b600067ffffffffffffffff8211156200055a57620005596200073c565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156200058957620005886200073c565b5b620005948262000784565b9050602081019050919050565b6000620005ae8262000632565b9150620005bb8362000632565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620005f357620005f2620006de565b5b828201905092915050565b60006200060b8262000612565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200065c5780820151818401526020810190506200063f565b838111156200066c576000848401525b50505050565b600060028204905060018216806200068b57607f821691505b60208210811415620006a257620006a16200070d565b5b50919050565b620006b38262000784565b810181811067ffffffffffffffff82111715620006d557620006d46200073c565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b620007a081620005fe565b8114620007ac57600080fd5b50565b6158a880620007bf6000396000f3fe6080604052600436106102665760003560e01c806355d9cdff1161014457806395d89b41116100b6578063c87b56dd1161007a578063c87b56dd146108d6578063d809bd6914610913578063ddbfc5c61461093e578063e985e9c514610969578063f2fde38b146109a6578063ff1b6556146109cf57610266565b806395d89b41146108265780639628b57214610851578063a22cb46514610868578063af1844ae14610891578063b88d4fde146108ad57610266565b806370a082311161010857806370a082311461073a578063715018a6146107775780637177f4791461078e5780638da5cb5b146107b957806390f04b0f146107e457806391c1195e146107fb57610266565b806355d9cdff1461067d57806355f804b314610694578063583813a4146106bd5780636352211e146106d45780636ef98b211461071157610266565b806324a6ab0c116101dd57806331a53e9a116101a157806331a53e9a1461055957806332cb6b0c146105845780633328422d146105af57806338fe91e1146105ec57806342842e0e146106175780634f6ccce71461064057610266565b806324a6ab0c1461045e57806326a49e37146104895780632780e490146104c65780632a7e236c146104f15780632f745c591461051c57610266565b8063095ea7b31161022f578063095ea7b314610364578063109695231461038d578063155dd5ee146103b657806318160ddd146103df57806318e20a381461040a57806323b872dd1461043557610266565b806277d33b1461026b578063018a2c371461029657806301ffc9a7146102bf57806306fdde03146102fc578063081812fc14610327575b600080fd5b34801561027757600080fd5b506102806109fa565b60405161028d9190614a35565b60405180910390f35b3480156102a257600080fd5b506102bd60048036038101906102b89190613dfd565b610a00565b005b3480156102cb57600080fd5b506102e660048036038101906102e19190613d5a565b610a86565b6040516102f39190614598565b60405180910390f35b34801561030857600080fd5b50610311610b00565b60405161031e91906145b3565b60405180910390f35b34801561033357600080fd5b5061034e60048036038101906103499190613dfd565b610b92565b60405161035b919061450f565b60405180910390f35b34801561037057600080fd5b5061038b60048036038101906103869190613d1a565b610c17565b005b34801561039957600080fd5b506103b460048036038101906103af9190613db4565b610d2f565b005b3480156103c257600080fd5b506103dd60048036038101906103d89190613dfd565b610dc5565b005b3480156103eb57600080fd5b506103f4610f90565b6040516104019190614a35565b60405180910390f35b34801561041657600080fd5b5061041f610f9d565b60405161042c9190614a35565b60405180910390f35b34801561044157600080fd5b5061045c60048036038101906104579190613c04565b610fa3565b005b34801561046a57600080fd5b50610473611003565b6040516104809190614a35565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab9190613dfd565b611009565b6040516104bd9190614a35565b60405180910390f35b3480156104d257600080fd5b506104db611062565b6040516104e89190614a35565b60405180910390f35b3480156104fd57600080fd5b50610506611068565b6040516105139190614a35565b60405180910390f35b34801561052857600080fd5b50610543600480360381019061053e9190613d1a565b61106e565b6040516105509190614a35565b60405180910390f35b34801561056557600080fd5b5061056e611113565b60405161057b9190614a35565b60405180910390f35b34801561059057600080fd5b50610599611119565b6040516105a69190614a35565b60405180910390f35b3480156105bb57600080fd5b506105d660048036038101906105d19190613b97565b61111f565b6040516105e39190614576565b60405180910390f35b3480156105f857600080fd5b506106016111cd565b60405161060e9190614a35565b60405180910390f35b34801561062357600080fd5b5061063e60048036038101906106399190613c04565b611313565b005b34801561064c57600080fd5b5061066760048036038101906106629190613dfd565b611333565b6040516106749190614a35565b60405180910390f35b34801561068957600080fd5b506106926113a4565b005b3480156106a057600080fd5b506106bb60048036038101906106b69190613db4565b6114b4565b005b3480156106c957600080fd5b506106d261154a565b005b3480156106e057600080fd5b506106fb60048036038101906106f69190613dfd565b6115f2565b604051610708919061450f565b60405180910390f35b34801561071d57600080fd5b5061073860048036038101906107339190613dfd565b6116a4565b005b34801561074657600080fd5b50610761600480360381019061075c9190613b97565b611a22565b60405161076e9190614a35565b60405180910390f35b34801561078357600080fd5b5061078c611ada565b005b34801561079a57600080fd5b506107a3611c17565b6040516107b09190614a35565b60405180910390f35b3480156107c557600080fd5b506107ce611c1d565b6040516107db919061450f565b60405180910390f35b3480156107f057600080fd5b506107f9611c47565b005b34801561080757600080fd5b50610810611d58565b60405161081d9190614a35565b60405180910390f35b34801561083257600080fd5b5061083b611d5e565b60405161084891906145b3565b60405180910390f35b34801561085d57600080fd5b50610866611df0565b005b34801561087457600080fd5b5061088f600480360381019061088a9190613cda565b611eeb565b005b6108ab60048036038101906108a69190613dfd565b61206c565b005b3480156108b957600080fd5b506108d460048036038101906108cf9190613c57565b6122d3565b005b3480156108e257600080fd5b506108fd60048036038101906108f89190613dfd565b612335565b60405161090a91906145b3565b60405180910390f35b34801561091f57600080fd5b506109286123dc565b6040516109359190614a35565b60405180910390f35b34801561094a57600080fd5b50610953612423565b6040516109609190614a35565b60405180910390f35b34801561097557600080fd5b50610990600480360381019061098b9190613bc4565b612429565b60405161099d9190614598565b60405180910390f35b3480156109b257600080fd5b506109cd60048036038101906109c89190613b97565b6124bd565b005b3480156109db57600080fd5b506109e4612669565b6040516109f191906145b3565b60405180910390f35b60125481565b610a086126f7565b73ffffffffffffffffffffffffffffffffffffffff16610a26611c1d565b73ffffffffffffffffffffffffffffffffffffffff1614610a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a73906148b5565b60405180910390fd5b8060138190555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610af95750610af8826126ff565b5b9050919050565b606060008054610b0f90614d29565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3b90614d29565b8015610b885780601f10610b5d57610100808354040283529160200191610b88565b820191906000526020600020905b815481529060010190602001808311610b6b57829003601f168201915b5050505050905090565b6000610b9d826127e1565b610bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd390614895565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c22826115f2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8a90614935565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cb26126f7565b73ffffffffffffffffffffffffffffffffffffffff161480610ce15750610ce081610cdb6126f7565b612429565b5b610d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d17906147d5565b60405180910390fd5b610d2a838361284d565b505050565b610d376126f7565b73ffffffffffffffffffffffffffffffffffffffff16610d55611c1d565b73ffffffffffffffffffffffffffffffffffffffff1614610dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da2906148b5565b60405180910390fd5b8060119080519060200190610dc19291906139ab565b5050565b60008111610e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dff906146b5565b60405180910390fd5b80601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610e8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8190614715565b60405180910390fd5b80601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ed99190614c3f565b9250508190555060003373ffffffffffffffffffffffffffffffffffffffff1682604051610f06906144bd565b60006040518083038185875af1925050503d8060008114610f43576040519150601f19603f3d011682016040523d82523d6000602084013e610f48565b606091505b5050905080610f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8390614955565b60405180910390fd5b5050565b6000600880549050905090565b60135481565b610fb4610fae6126f7565b82612906565b610ff3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fea90614975565b60405180910390fd5b610ffe8383836129e4565b505050565b60175481565b6000600f546017541080156110265750600061102433611a22565b145b1561104c576001826110389190614c3f565b600b546110459190614be5565b905061105d565b81600b5461105a9190614be5565b90505b919050565b600b5481565b600d5481565b600061107983611a22565b82106110ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b190614655565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600c5481565b600e5481565b6060600061112c83611a22565b905060008167ffffffffffffffff81111561114a57611149614f1f565b5b6040519080825280602002602001820160405280156111785781602001602082028036833780820191505090505b50905060005b828110156111c257611190858261106e565b8282815181106111a3576111a2614ef0565b5b60200260200101818152505080806111ba90614d8c565b91505061117e565b508092505050919050565b60006111d76126f7565b73ffffffffffffffffffffffffffffffffffffffff166111f5611c1d565b73ffffffffffffffffffffffffffffffffffffffff161461124b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611242906148b5565b60405180910390fd5b6000805b6018805490508110156113005760006018828154811061127257611271614ef0565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050601960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836112ea9190614b5e565b92505080806112f890614d8c565b91505061124f565b50804761130d9190614c3f565b91505090565b61132e838383604051806020016040528060008152506122d3565b505050565b600061133d610f90565b821061137e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137590614995565b60405180910390fd5b6008828154811061139257611391614ef0565b5b90600052602060002001549050919050565b6113ac6126f7565b73ffffffffffffffffffffffffffffffffffffffff166113ca611c1d565b73ffffffffffffffffffffffffffffffffffffffff1614611420576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611417906148b5565b60405180910390fd5b600060125414611465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145c906148d5565b60405180910390fd5b6000601454146114aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a190614735565b60405180910390fd5b6114b2612c40565b565b6114bc6126f7565b73ffffffffffffffffffffffffffffffffffffffff166114da611c1d565b73ffffffffffffffffffffffffffffffffffffffff1614611530576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611527906148b5565b60405180910390fd5b80601690805190602001906115469291906139ab565b5050565b6115526126f7565b73ffffffffffffffffffffffffffffffffffffffff16611570611c1d565b73ffffffffffffffffffffffffffffffffffffffff16146115c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bd906148b5565b60405180910390fd5b601560009054906101000a900460ff1615601560006101000a81548160ff021916908315150217905550565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561169b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169290614815565b60405180910390fd5b80915050919050565b6116ac6126f7565b73ffffffffffffffffffffffffffffffffffffffff166116ca611c1d565b73ffffffffffffffffffffffffffffffffffffffff1614611720576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611717906148b5565b60405180910390fd5b60004711611763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175a90614615565b60405180910390fd5b600081116117a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179d906147b5565b60405180910390fd5b478111156117e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e0906145f5565b60405180910390fd5b6000805b60188054905081101561189e576000601882815481106118105761180f614ef0565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050601960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836118889190614b5e565b925050808061189690614d8c565b9150506117ed565b50600081476118ad9190614c3f565b9050808311156118f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e9906149b5565b60405180910390fd5b6000601880549050846119059190614bb4565b905060005b601880549050811015611a1b5760006018828154811061192d5761192c614ef0565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008173ffffffffffffffffffffffffffffffffffffffff1684604051611980906144bd565b60006040518083038185875af1925050503d80600081146119bd576040519150601f19603f3d011682016040523d82523d6000602084013e6119c2565b606091505b5050905080611a06576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fd90614955565b60405180910390fd5b50508080611a1390614d8c565b91505061190a565b5050505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8a906147f5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611ae26126f7565b73ffffffffffffffffffffffffffffffffffffffff16611b00611c1d565b73ffffffffffffffffffffffffffffffffffffffff1614611b56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4d906148b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600f5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611c4f6126f7565b73ffffffffffffffffffffffffffffffffffffffff16611c6d611c1d565b73ffffffffffffffffffffffffffffffffffffffff1614611cc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cba906148b5565b60405180910390fd5b600060125414611d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cff906148d5565b60405180910390fd5b60006014541415611d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4590614835565b60405180910390fd5b611d56612cdb565b565b60105481565b606060018054611d6d90614d29565b80601f0160208091040260200160405190810160405280929190818152602001828054611d9990614d29565b8015611de65780601f10611dbb57610100808354040283529160200191611de6565b820191906000526020600020905b815481529060010190602001808311611dc957829003601f168201915b5050505050905090565b611df86126f7565b73ffffffffffffffffffffffffffffffffffffffff16611e16611c1d565b73ffffffffffffffffffffffffffffffffffffffff1614611e6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e63906148b5565b60405180910390fd5b600c54611e77610f90565b10611eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eae90614855565b60405180910390fd5b60005b600c54811015611ee857611ed533611ed0610f90565b612da9565b8080611ee090614d8c565b915050611eba565b50565b611ef36126f7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5890614775565b60405180910390fd5b8060056000611f6e6126f7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661201b6126f7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120609190614598565b60405180910390a35050565b6000612076610f90565b9050601560009054906101000a900460ff16156120c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120bf90614635565b60405180910390fd5b600e54811061210c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612103906149d5565b60405180910390fd5b600e54828261211b9190614b5e565b111561215c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612153906145d5565b60405180910390fd5b600d548211156121a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612198906146f5565b60405180910390fd5b601054826121ae33611a22565b6121b89190614b5e565b11156121f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f090614a15565b60405180910390fd5b61220282611009565b341015612244576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223b906149f5565b60405180910390fd5b60005b828110156122be57600e5461225a610f90565b10156122ab57600f5460175410801561227b5750600061227933611a22565b145b15612299576017600081548092919061229390614d8c565b91905055505b6122aa336122a5610f90565b612da9565b5b80806122b690614d8c565b915050612247565b506122c7612dc7565b6122cf612e0c565b5050565b6122e46122de6126f7565b83612906565b612323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231a90614975565b60405180910390fd5b61232f84848484612f00565b50505050565b6060612340826127e1565b61237f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237690614915565b60405180910390fd5b6000612389612f5c565b905060008151116123a957604051806020016040528060008152506123d4565b806123b384612fee565b6040516020016123c4929190614499565b6040516020818303038152906040525b915050919050565b6000601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905090565b60145481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6124c56126f7565b73ffffffffffffffffffffffffffffffffffffffff166124e3611c1d565b73ffffffffffffffffffffffffffffffffffffffff1614612539576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612530906148b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a090614695565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6011805461267690614d29565b80601f01602080910402602001604051908101604052809291908181526020018280546126a290614d29565b80156126ef5780601f106126c4576101008083540402835291602001916126ef565b820191906000526020600020905b8154815290600101906020018083116126d257829003601f168201915b505050505081565b600033905090565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806127ca57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806127da57506127d98261314f565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166128c0836115f2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612911826127e1565b612950576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294790614795565b60405180910390fd5b600061295b836115f2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806129ca57508373ffffffffffffffffffffffffffffffffffffffff166129b284610b92565b73ffffffffffffffffffffffffffffffffffffffff16145b806129db57506129da8185612429565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612a04826115f2565b73ffffffffffffffffffffffffffffffffffffffff1614612a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a51906148f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac190614755565b60405180910390fd5b612ad58383836131b9565b612ae060008261284d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b309190614c3f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b879190614b5e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600060125414612c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7c906148d5565b60405180910390fd5b600060145414612cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc190614735565b60405180910390fd5b43601481905550612cd9612cdb565b565b600060125414612d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d17906148d5565b60405180910390fd5b60006014541415612d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5d90614835565b60405180910390fd5b600e54424433604051602001612d7e939291906144d2565b6040516020818303038152906040528051906020012060001c612da19190614e03565b601281905550565b612dc38282604051806020016040528060008152506132cd565b5050565b6000601254148015612ddb57506000601454145b8015612dfc5750600e54612ded610f90565b1480612dfb57506013544210155b5b15612e0a57612e09612c40565b5b565b6000601880549050605a612e209190614bb4565b9050600060648234612e329190614be5565b612e3c9190614bb4565b905060005b601880549050811015612efb57600060188281548110612e6457612e63614ef0565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905082601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ee09190614b5e565b92505081905550508080612ef390614d8c565b915050612e41565b505050565b612f0b8484846129e4565b612f1784848484613328565b612f56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4d90614675565b60405180910390fd5b50505050565b606060168054612f6b90614d29565b80601f0160208091040260200160405190810160405280929190818152602001828054612f9790614d29565b8015612fe45780601f10612fb957610100808354040283529160200191612fe4565b820191906000526020600020905b815481529060010190602001808311612fc757829003601f168201915b5050505050905090565b60606000821415613036576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061314a565b600082905060005b6000821461306857808061305190614d8c565b915050600a826130619190614bb4565b915061303e565b60008167ffffffffffffffff81111561308457613083614f1f565b5b6040519080825280601f01601f1916602001820160405280156130b65781602001600182028036833780820191505090505b5090505b60008514613143576001826130cf9190614c3f565b9150600a856130de9190614e03565b60306130ea9190614b5e565b60f81b818381518110613100576130ff614ef0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561313c9190614bb4565b94506130ba565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6131c48383836134bf565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561320757613202816134c4565b613246565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461324557613244838261350d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613289576132848161367a565b6132c8565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146132c7576132c6828261374b565b5b5b505050565b6132d783836137ca565b6132e46000848484613328565b613323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161331a90614675565b60405180910390fd5b505050565b60006133498473ffffffffffffffffffffffffffffffffffffffff16613998565b156134b2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133726126f7565b8786866040518563ffffffff1660e01b8152600401613394949392919061452a565b602060405180830381600087803b1580156133ae57600080fd5b505af19250505080156133df57506040513d601f19601f820116820180604052508101906133dc9190613d87565b60015b613462573d806000811461340f576040519150601f19603f3d011682016040523d82523d6000602084013e613414565b606091505b5060008151141561345a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161345190614675565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506134b7565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161351a84611a22565b6135249190614c3f565b9050600060076000848152602001908152602001600020549050818114613609576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061368e9190614c3f565b90506000600960008481526020019081526020016000205490506000600883815481106136be576136bd614ef0565b5b9060005260206000200154905080600883815481106136e0576136df614ef0565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061372f5761372e614ec1565b5b6001900381819060005260206000200160009055905550505050565b600061375683611a22565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561383a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161383190614875565b60405180910390fd5b613843816127e1565b15613883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161387a906146d5565b60405180910390fd5b61388f600083836131b9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546138df9190614b5e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546139b790614d29565b90600052602060002090601f0160209004810192826139d95760008555613a20565b82601f106139f257805160ff1916838001178555613a20565b82800160010185558215613a20579182015b82811115613a1f578251825591602001919060010190613a04565b5b509050613a2d9190613a31565b5090565b5b80821115613a4a576000816000905550600101613a32565b5090565b6000613a61613a5c84614a75565b614a50565b905082815260208101848484011115613a7d57613a7c614f53565b5b613a88848285614ce7565b509392505050565b6000613aa3613a9e84614aa6565b614a50565b905082815260208101848484011115613abf57613abe614f53565b5b613aca848285614ce7565b509392505050565b600081359050613ae181615816565b92915050565b600081359050613af68161582d565b92915050565b600081359050613b0b81615844565b92915050565b600081519050613b2081615844565b92915050565b600082601f830112613b3b57613b3a614f4e565b5b8135613b4b848260208601613a4e565b91505092915050565b600082601f830112613b6957613b68614f4e565b5b8135613b79848260208601613a90565b91505092915050565b600081359050613b918161585b565b92915050565b600060208284031215613bad57613bac614f5d565b5b6000613bbb84828501613ad2565b91505092915050565b60008060408385031215613bdb57613bda614f5d565b5b6000613be985828601613ad2565b9250506020613bfa85828601613ad2565b9150509250929050565b600080600060608486031215613c1d57613c1c614f5d565b5b6000613c2b86828701613ad2565b9350506020613c3c86828701613ad2565b9250506040613c4d86828701613b82565b9150509250925092565b60008060008060808587031215613c7157613c70614f5d565b5b6000613c7f87828801613ad2565b9450506020613c9087828801613ad2565b9350506040613ca187828801613b82565b925050606085013567ffffffffffffffff811115613cc257613cc1614f58565b5b613cce87828801613b26565b91505092959194509250565b60008060408385031215613cf157613cf0614f5d565b5b6000613cff85828601613ad2565b9250506020613d1085828601613ae7565b9150509250929050565b60008060408385031215613d3157613d30614f5d565b5b6000613d3f85828601613ad2565b9250506020613d5085828601613b82565b9150509250929050565b600060208284031215613d7057613d6f614f5d565b5b6000613d7e84828501613afc565b91505092915050565b600060208284031215613d9d57613d9c614f5d565b5b6000613dab84828501613b11565b91505092915050565b600060208284031215613dca57613dc9614f5d565b5b600082013567ffffffffffffffff811115613de857613de7614f58565b5b613df484828501613b54565b91505092915050565b600060208284031215613e1357613e12614f5d565b5b6000613e2184828501613b82565b91505092915050565b6000613e368383614464565b60208301905092915050565b613e4b81614c73565b82525050565b613e62613e5d82614c73565b614dd5565b82525050565b6000613e7382614ae7565b613e7d8185614b15565b9350613e8883614ad7565b8060005b83811015613eb9578151613ea08882613e2a565b9750613eab83614b08565b925050600181019050613e8c565b5085935050505092915050565b613ecf81614c85565b82525050565b6000613ee082614af2565b613eea8185614b26565b9350613efa818560208601614cf6565b613f0381614f62565b840191505092915050565b6000613f1982614afd565b613f238185614b42565b9350613f33818560208601614cf6565b613f3c81614f62565b840191505092915050565b6000613f5282614afd565b613f5c8185614b53565b9350613f6c818560208601614cf6565b80840191505092915050565b6000613f85601e83614b42565b9150613f9082614f80565b602082019050919050565b6000613fa8603983614b42565b9150613fb382614fa9565b604082019050919050565b6000613fcb601a83614b42565b9150613fd682614ff8565b602082019050919050565b6000613fee601883614b42565b9150613ff982615021565b602082019050919050565b6000614011602b83614b42565b915061401c8261504a565b604082019050919050565b6000614034603283614b42565b915061403f82615099565b604082019050919050565b6000614057602683614b42565b9150614062826150e8565b604082019050919050565b600061407a601b83614b42565b915061408582615137565b602082019050919050565b600061409d601c83614b42565b91506140a882615160565b602082019050919050565b60006140c0603a83614b42565b91506140cb82615189565b604082019050919050565b60006140e3601e83614b42565b91506140ee826151d8565b602082019050919050565b6000614106601983614b42565b915061411182615201565b602082019050919050565b6000614129602483614b42565b91506141348261522a565b604082019050919050565b600061414c601983614b42565b915061415782615279565b602082019050919050565b600061416f602c83614b42565b915061417a826152a2565b604082019050919050565b6000614192601a83614b42565b915061419d826152f1565b602082019050919050565b60006141b5603883614b42565b91506141c08261531a565b604082019050919050565b60006141d8602a83614b42565b91506141e382615369565b604082019050919050565b60006141fb602983614b42565b9150614206826153b8565b604082019050919050565b600061421e601983614b42565b915061422982615407565b602082019050919050565b6000614241602383614b42565b915061424c82615430565b604082019050919050565b6000614264602083614b42565b915061426f8261547f565b602082019050919050565b6000614287602c83614b42565b9150614292826154a8565b604082019050919050565b60006142aa602083614b42565b91506142b5826154f7565b602082019050919050565b60006142cd601983614b42565b91506142d882615520565b602082019050919050565b60006142f0602983614b42565b91506142fb82615549565b604082019050919050565b6000614313602f83614b42565b915061431e82615598565b604082019050919050565b6000614336602183614b42565b9150614341826155e7565b604082019050919050565b6000614359600083614b37565b915061436482615636565b600082019050919050565b600061437c601083614b42565b915061438782615639565b602082019050919050565b600061439f603183614b42565b91506143aa82615662565b604082019050919050565b60006143c2602c83614b42565b91506143cd826156b1565b604082019050919050565b60006143e5604583614b42565b91506143f082615700565b606082019050919050565b6000614408601283614b42565b915061441382615775565b602082019050919050565b600061442b601e83614b42565b91506144368261579e565b602082019050919050565b600061444e603083614b42565b9150614459826157c7565b604082019050919050565b61446d81614cdd565b82525050565b61447c81614cdd565b82525050565b61449361448e82614cdd565b614df9565b82525050565b60006144a58285613f47565b91506144b18284613f47565b91508190509392505050565b60006144c88261434c565b9150819050919050565b60006144de8286614482565b6020820191506144ee8285614482565b6020820191506144fe8284613e51565b601482019150819050949350505050565b60006020820190506145246000830184613e42565b92915050565b600060808201905061453f6000830187613e42565b61454c6020830186613e42565b6145596040830185614473565b818103606083015261456b8184613ed5565b905095945050505050565b600060208201905081810360008301526145908184613e68565b905092915050565b60006020820190506145ad6000830184613ec6565b92915050565b600060208201905081810360008301526145cd8184613f0e565b905092915050565b600060208201905081810360008301526145ee81613f78565b9050919050565b6000602082019050818103600083015261460e81613f9b565b9050919050565b6000602082019050818103600083015261462e81613fbe565b9050919050565b6000602082019050818103600083015261464e81613fe1565b9050919050565b6000602082019050818103600083015261466e81614004565b9050919050565b6000602082019050818103600083015261468e81614027565b9050919050565b600060208201905081810360008301526146ae8161404a565b9050919050565b600060208201905081810360008301526146ce8161406d565b9050919050565b600060208201905081810360008301526146ee81614090565b9050919050565b6000602082019050818103600083015261470e816140b3565b9050919050565b6000602082019050818103600083015261472e816140d6565b9050919050565b6000602082019050818103600083015261474e816140f9565b9050919050565b6000602082019050818103600083015261476e8161411c565b9050919050565b6000602082019050818103600083015261478e8161413f565b9050919050565b600060208201905081810360008301526147ae81614162565b9050919050565b600060208201905081810360008301526147ce81614185565b9050919050565b600060208201905081810360008301526147ee816141a8565b9050919050565b6000602082019050818103600083015261480e816141cb565b9050919050565b6000602082019050818103600083015261482e816141ee565b9050919050565b6000602082019050818103600083015261484e81614211565b9050919050565b6000602082019050818103600083015261486e81614234565b9050919050565b6000602082019050818103600083015261488e81614257565b9050919050565b600060208201905081810360008301526148ae8161427a565b9050919050565b600060208201905081810360008301526148ce8161429d565b9050919050565b600060208201905081810360008301526148ee816142c0565b9050919050565b6000602082019050818103600083015261490e816142e3565b9050919050565b6000602082019050818103600083015261492e81614306565b9050919050565b6000602082019050818103600083015261494e81614329565b9050919050565b6000602082019050818103600083015261496e8161436f565b9050919050565b6000602082019050818103600083015261498e81614392565b9050919050565b600060208201905081810360008301526149ae816143b5565b9050919050565b600060208201905081810360008301526149ce816143d8565b9050919050565b600060208201905081810360008301526149ee816143fb565b9050919050565b60006020820190508181036000830152614a0e8161441e565b9050919050565b60006020820190508181036000830152614a2e81614441565b9050919050565b6000602082019050614a4a6000830184614473565b92915050565b6000614a5a614a6b565b9050614a668282614d5b565b919050565b6000604051905090565b600067ffffffffffffffff821115614a9057614a8f614f1f565b5b614a9982614f62565b9050602081019050919050565b600067ffffffffffffffff821115614ac157614ac0614f1f565b5b614aca82614f62565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614b6982614cdd565b9150614b7483614cdd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614ba957614ba8614e34565b5b828201905092915050565b6000614bbf82614cdd565b9150614bca83614cdd565b925082614bda57614bd9614e63565b5b828204905092915050565b6000614bf082614cdd565b9150614bfb83614cdd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614c3457614c33614e34565b5b828202905092915050565b6000614c4a82614cdd565b9150614c5583614cdd565b925082821015614c6857614c67614e34565b5b828203905092915050565b6000614c7e82614cbd565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614d14578082015181840152602081019050614cf9565b83811115614d23576000848401525b50505050565b60006002820490506001821680614d4157607f821691505b60208210811415614d5557614d54614e92565b5b50919050565b614d6482614f62565b810181811067ffffffffffffffff82111715614d8357614d82614f1f565b5b80604052505050565b6000614d9782614cdd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614dca57614dc9614e34565b5b600182019050919050565b6000614de082614de7565b9050919050565b6000614df282614f73565b9050919050565b6000819050919050565b6000614e0e82614cdd565b9150614e1983614cdd565b925082614e2957614e28614e63565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f5472616e73616374696f6e2065786365656473206d617820737570706c790000600082015250565b7f576974686472617720616d6f756e742063616e2774206265206d6f726520746860008201527f616e20776861742074686520636f6e7472616374206861732e00000000000000602082015250565b7f416464726573732062616c616e63652063616e27742062652030000000000000600082015250565b7f5468652073616c65206973206e6f74206f70656e207965740000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f576974686472617720616d6f756e74202063616e277420626520300000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f546f6b656e20416d6f756e7420657863656564656420746865206d617820616c60008201527f6c6f77656420706572207472616e73616374696f6e2028323029000000000000602082015250565b7f4e6f2066756e6473206c656674206f72206e6f742061206d656d6265722e0000600082015250565b7f47656e6573697320626c6f636b20616c72656164792073657400000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f576974686472617720616d6f756e742063616e27742062652030000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f47656e6573697320626c6f636b206d7573742062652073657400000000000000600082015250565b7f416c726561647920636c61696d6564207468652072657365727665642073757060008201527f706c790000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f47656e6573697320696e64657820616c72656164792073657400000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f546865207265717565737420616d6f756e742063616e2774206265206869676860008201527f6572207468616e207768617420746865206f776e65722068617320617661696c60208201527f61626c652e000000000000000000000000000000000000000000000000000000604082015250565b7f5468652073616c652068617320656e6465640000000000000000000000000000600082015250565b7f56616c75652073656e742069732062656c6f7720746f74616c20636f73740000600082015250565b7f45786365656473206d6178206d696e74656420746f6b656e7320666f7220746860008201527f6973206164647265737320283530302900000000000000000000000000000000602082015250565b61581f81614c73565b811461582a57600080fd5b50565b61583681614c85565b811461584157600080fd5b50565b61584d81614c91565b811461585857600080fd5b50565b61586481614cdd565b811461586f57600080fd5b5056fea2646970667358221220cc861996f83f3d0121cc28c791c8bddbd24baefc46a73ca19cb2540d0fba0eb364736f6c63430008060033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000843756d706c616e740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005504c414e540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003000000000000000000000000b738beadee128cfa9e28baa1609d08ff1cbc9535000000000000000000000000e4562727fb20cf9b69faaaa5ccba59447b7d95bf000000000000000000000000da4621fc3364c3a8c718c0dd89820da507790249

Deployed Bytecode

0x6080604052600436106102665760003560e01c806355d9cdff1161014457806395d89b41116100b6578063c87b56dd1161007a578063c87b56dd146108d6578063d809bd6914610913578063ddbfc5c61461093e578063e985e9c514610969578063f2fde38b146109a6578063ff1b6556146109cf57610266565b806395d89b41146108265780639628b57214610851578063a22cb46514610868578063af1844ae14610891578063b88d4fde146108ad57610266565b806370a082311161010857806370a082311461073a578063715018a6146107775780637177f4791461078e5780638da5cb5b146107b957806390f04b0f146107e457806391c1195e146107fb57610266565b806355d9cdff1461067d57806355f804b314610694578063583813a4146106bd5780636352211e146106d45780636ef98b211461071157610266565b806324a6ab0c116101dd57806331a53e9a116101a157806331a53e9a1461055957806332cb6b0c146105845780633328422d146105af57806338fe91e1146105ec57806342842e0e146106175780634f6ccce71461064057610266565b806324a6ab0c1461045e57806326a49e37146104895780632780e490146104c65780632a7e236c146104f15780632f745c591461051c57610266565b8063095ea7b31161022f578063095ea7b314610364578063109695231461038d578063155dd5ee146103b657806318160ddd146103df57806318e20a381461040a57806323b872dd1461043557610266565b806277d33b1461026b578063018a2c371461029657806301ffc9a7146102bf57806306fdde03146102fc578063081812fc14610327575b600080fd5b34801561027757600080fd5b506102806109fa565b60405161028d9190614a35565b60405180910390f35b3480156102a257600080fd5b506102bd60048036038101906102b89190613dfd565b610a00565b005b3480156102cb57600080fd5b506102e660048036038101906102e19190613d5a565b610a86565b6040516102f39190614598565b60405180910390f35b34801561030857600080fd5b50610311610b00565b60405161031e91906145b3565b60405180910390f35b34801561033357600080fd5b5061034e60048036038101906103499190613dfd565b610b92565b60405161035b919061450f565b60405180910390f35b34801561037057600080fd5b5061038b60048036038101906103869190613d1a565b610c17565b005b34801561039957600080fd5b506103b460048036038101906103af9190613db4565b610d2f565b005b3480156103c257600080fd5b506103dd60048036038101906103d89190613dfd565b610dc5565b005b3480156103eb57600080fd5b506103f4610f90565b6040516104019190614a35565b60405180910390f35b34801561041657600080fd5b5061041f610f9d565b60405161042c9190614a35565b60405180910390f35b34801561044157600080fd5b5061045c60048036038101906104579190613c04565b610fa3565b005b34801561046a57600080fd5b50610473611003565b6040516104809190614a35565b60405180910390f35b34801561049557600080fd5b506104b060048036038101906104ab9190613dfd565b611009565b6040516104bd9190614a35565b60405180910390f35b3480156104d257600080fd5b506104db611062565b6040516104e89190614a35565b60405180910390f35b3480156104fd57600080fd5b50610506611068565b6040516105139190614a35565b60405180910390f35b34801561052857600080fd5b50610543600480360381019061053e9190613d1a565b61106e565b6040516105509190614a35565b60405180910390f35b34801561056557600080fd5b5061056e611113565b60405161057b9190614a35565b60405180910390f35b34801561059057600080fd5b50610599611119565b6040516105a69190614a35565b60405180910390f35b3480156105bb57600080fd5b506105d660048036038101906105d19190613b97565b61111f565b6040516105e39190614576565b60405180910390f35b3480156105f857600080fd5b506106016111cd565b60405161060e9190614a35565b60405180910390f35b34801561062357600080fd5b5061063e60048036038101906106399190613c04565b611313565b005b34801561064c57600080fd5b5061066760048036038101906106629190613dfd565b611333565b6040516106749190614a35565b60405180910390f35b34801561068957600080fd5b506106926113a4565b005b3480156106a057600080fd5b506106bb60048036038101906106b69190613db4565b6114b4565b005b3480156106c957600080fd5b506106d261154a565b005b3480156106e057600080fd5b506106fb60048036038101906106f69190613dfd565b6115f2565b604051610708919061450f565b60405180910390f35b34801561071d57600080fd5b5061073860048036038101906107339190613dfd565b6116a4565b005b34801561074657600080fd5b50610761600480360381019061075c9190613b97565b611a22565b60405161076e9190614a35565b60405180910390f35b34801561078357600080fd5b5061078c611ada565b005b34801561079a57600080fd5b506107a3611c17565b6040516107b09190614a35565b60405180910390f35b3480156107c557600080fd5b506107ce611c1d565b6040516107db919061450f565b60405180910390f35b3480156107f057600080fd5b506107f9611c47565b005b34801561080757600080fd5b50610810611d58565b60405161081d9190614a35565b60405180910390f35b34801561083257600080fd5b5061083b611d5e565b60405161084891906145b3565b60405180910390f35b34801561085d57600080fd5b50610866611df0565b005b34801561087457600080fd5b5061088f600480360381019061088a9190613cda565b611eeb565b005b6108ab60048036038101906108a69190613dfd565b61206c565b005b3480156108b957600080fd5b506108d460048036038101906108cf9190613c57565b6122d3565b005b3480156108e257600080fd5b506108fd60048036038101906108f89190613dfd565b612335565b60405161090a91906145b3565b60405180910390f35b34801561091f57600080fd5b506109286123dc565b6040516109359190614a35565b60405180910390f35b34801561094a57600080fd5b50610953612423565b6040516109609190614a35565b60405180910390f35b34801561097557600080fd5b50610990600480360381019061098b9190613bc4565b612429565b60405161099d9190614598565b60405180910390f35b3480156109b257600080fd5b506109cd60048036038101906109c89190613b97565b6124bd565b005b3480156109db57600080fd5b506109e4612669565b6040516109f191906145b3565b60405180910390f35b60125481565b610a086126f7565b73ffffffffffffffffffffffffffffffffffffffff16610a26611c1d565b73ffffffffffffffffffffffffffffffffffffffff1614610a7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a73906148b5565b60405180910390fd5b8060138190555050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610af95750610af8826126ff565b5b9050919050565b606060008054610b0f90614d29565b80601f0160208091040260200160405190810160405280929190818152602001828054610b3b90614d29565b8015610b885780601f10610b5d57610100808354040283529160200191610b88565b820191906000526020600020905b815481529060010190602001808311610b6b57829003601f168201915b5050505050905090565b6000610b9d826127e1565b610bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd390614895565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c22826115f2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8a90614935565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cb26126f7565b73ffffffffffffffffffffffffffffffffffffffff161480610ce15750610ce081610cdb6126f7565b612429565b5b610d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d17906147d5565b60405180910390fd5b610d2a838361284d565b505050565b610d376126f7565b73ffffffffffffffffffffffffffffffffffffffff16610d55611c1d565b73ffffffffffffffffffffffffffffffffffffffff1614610dab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da2906148b5565b60405180910390fd5b8060119080519060200190610dc19291906139ab565b5050565b60008111610e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dff906146b5565b60405180910390fd5b80601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541015610e8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8190614715565b60405180910390fd5b80601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ed99190614c3f565b9250508190555060003373ffffffffffffffffffffffffffffffffffffffff1682604051610f06906144bd565b60006040518083038185875af1925050503d8060008114610f43576040519150601f19603f3d011682016040523d82523d6000602084013e610f48565b606091505b5050905080610f8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8390614955565b60405180910390fd5b5050565b6000600880549050905090565b60135481565b610fb4610fae6126f7565b82612906565b610ff3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fea90614975565b60405180910390fd5b610ffe8383836129e4565b505050565b60175481565b6000600f546017541080156110265750600061102433611a22565b145b1561104c576001826110389190614c3f565b600b546110459190614be5565b905061105d565b81600b5461105a9190614be5565b90505b919050565b600b5481565b600d5481565b600061107983611a22565b82106110ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b190614655565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b600c5481565b600e5481565b6060600061112c83611a22565b905060008167ffffffffffffffff81111561114a57611149614f1f565b5b6040519080825280602002602001820160405280156111785781602001602082028036833780820191505090505b50905060005b828110156111c257611190858261106e565b8282815181106111a3576111a2614ef0565b5b60200260200101818152505080806111ba90614d8c565b91505061117e565b508092505050919050565b60006111d76126f7565b73ffffffffffffffffffffffffffffffffffffffff166111f5611c1d565b73ffffffffffffffffffffffffffffffffffffffff161461124b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611242906148b5565b60405180910390fd5b6000805b6018805490508110156113005760006018828154811061127257611271614ef0565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050601960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836112ea9190614b5e565b92505080806112f890614d8c565b91505061124f565b50804761130d9190614c3f565b91505090565b61132e838383604051806020016040528060008152506122d3565b505050565b600061133d610f90565b821061137e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137590614995565b60405180910390fd5b6008828154811061139257611391614ef0565b5b90600052602060002001549050919050565b6113ac6126f7565b73ffffffffffffffffffffffffffffffffffffffff166113ca611c1d565b73ffffffffffffffffffffffffffffffffffffffff1614611420576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611417906148b5565b60405180910390fd5b600060125414611465576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161145c906148d5565b60405180910390fd5b6000601454146114aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a190614735565b60405180910390fd5b6114b2612c40565b565b6114bc6126f7565b73ffffffffffffffffffffffffffffffffffffffff166114da611c1d565b73ffffffffffffffffffffffffffffffffffffffff1614611530576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611527906148b5565b60405180910390fd5b80601690805190602001906115469291906139ab565b5050565b6115526126f7565b73ffffffffffffffffffffffffffffffffffffffff16611570611c1d565b73ffffffffffffffffffffffffffffffffffffffff16146115c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bd906148b5565b60405180910390fd5b601560009054906101000a900460ff1615601560006101000a81548160ff021916908315150217905550565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561169b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169290614815565b60405180910390fd5b80915050919050565b6116ac6126f7565b73ffffffffffffffffffffffffffffffffffffffff166116ca611c1d565b73ffffffffffffffffffffffffffffffffffffffff1614611720576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611717906148b5565b60405180910390fd5b60004711611763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175a90614615565b60405180910390fd5b600081116117a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179d906147b5565b60405180910390fd5b478111156117e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e0906145f5565b60405180910390fd5b6000805b60188054905081101561189e576000601882815481106118105761180f614ef0565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050601960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054836118889190614b5e565b925050808061189690614d8c565b9150506117ed565b50600081476118ad9190614c3f565b9050808311156118f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e9906149b5565b60405180910390fd5b6000601880549050846119059190614bb4565b905060005b601880549050811015611a1b5760006018828154811061192d5761192c614ef0565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060008173ffffffffffffffffffffffffffffffffffffffff1684604051611980906144bd565b60006040518083038185875af1925050503d80600081146119bd576040519150601f19603f3d011682016040523d82523d6000602084013e6119c2565b606091505b5050905080611a06576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fd90614955565b60405180910390fd5b50508080611a1390614d8c565b91505061190a565b5050505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8a906147f5565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611ae26126f7565b73ffffffffffffffffffffffffffffffffffffffff16611b00611c1d565b73ffffffffffffffffffffffffffffffffffffffff1614611b56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4d906148b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600f5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611c4f6126f7565b73ffffffffffffffffffffffffffffffffffffffff16611c6d611c1d565b73ffffffffffffffffffffffffffffffffffffffff1614611cc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cba906148b5565b60405180910390fd5b600060125414611d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cff906148d5565b60405180910390fd5b60006014541415611d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4590614835565b60405180910390fd5b611d56612cdb565b565b60105481565b606060018054611d6d90614d29565b80601f0160208091040260200160405190810160405280929190818152602001828054611d9990614d29565b8015611de65780601f10611dbb57610100808354040283529160200191611de6565b820191906000526020600020905b815481529060010190602001808311611dc957829003601f168201915b5050505050905090565b611df86126f7565b73ffffffffffffffffffffffffffffffffffffffff16611e16611c1d565b73ffffffffffffffffffffffffffffffffffffffff1614611e6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e63906148b5565b60405180910390fd5b600c54611e77610f90565b10611eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eae90614855565b60405180910390fd5b60005b600c54811015611ee857611ed533611ed0610f90565b612da9565b8080611ee090614d8c565b915050611eba565b50565b611ef36126f7565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5890614775565b60405180910390fd5b8060056000611f6e6126f7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661201b6126f7565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120609190614598565b60405180910390a35050565b6000612076610f90565b9050601560009054906101000a900460ff16156120c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120bf90614635565b60405180910390fd5b600e54811061210c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612103906149d5565b60405180910390fd5b600e54828261211b9190614b5e565b111561215c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612153906145d5565b60405180910390fd5b600d548211156121a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612198906146f5565b60405180910390fd5b601054826121ae33611a22565b6121b89190614b5e565b11156121f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f090614a15565b60405180910390fd5b61220282611009565b341015612244576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223b906149f5565b60405180910390fd5b60005b828110156122be57600e5461225a610f90565b10156122ab57600f5460175410801561227b5750600061227933611a22565b145b15612299576017600081548092919061229390614d8c565b91905055505b6122aa336122a5610f90565b612da9565b5b80806122b690614d8c565b915050612247565b506122c7612dc7565b6122cf612e0c565b5050565b6122e46122de6126f7565b83612906565b612323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231a90614975565b60405180910390fd5b61232f84848484612f00565b50505050565b6060612340826127e1565b61237f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237690614915565b60405180910390fd5b6000612389612f5c565b905060008151116123a957604051806020016040528060008152506123d4565b806123b384612fee565b6040516020016123c4929190614499565b6040516020818303038152906040525b915050919050565b6000601960003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905090565b60145481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6124c56126f7565b73ffffffffffffffffffffffffffffffffffffffff166124e3611c1d565b73ffffffffffffffffffffffffffffffffffffffff1614612539576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612530906148b5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125a090614695565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6011805461267690614d29565b80601f01602080910402602001604051908101604052809291908181526020018280546126a290614d29565b80156126ef5780601f106126c4576101008083540402835291602001916126ef565b820191906000526020600020905b8154815290600101906020018083116126d257829003601f168201915b505050505081565b600033905090565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806127ca57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806127da57506127d98261314f565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166128c0836115f2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612911826127e1565b612950576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294790614795565b60405180910390fd5b600061295b836115f2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806129ca57508373ffffffffffffffffffffffffffffffffffffffff166129b284610b92565b73ffffffffffffffffffffffffffffffffffffffff16145b806129db57506129da8185612429565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612a04826115f2565b73ffffffffffffffffffffffffffffffffffffffff1614612a5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a51906148f5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac190614755565b60405180910390fd5b612ad58383836131b9565b612ae060008261284d565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b309190614c3f565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612b879190614b5e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600060125414612c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7c906148d5565b60405180910390fd5b600060145414612cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc190614735565b60405180910390fd5b43601481905550612cd9612cdb565b565b600060125414612d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d17906148d5565b60405180910390fd5b60006014541415612d66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d5d90614835565b60405180910390fd5b600e54424433604051602001612d7e939291906144d2565b6040516020818303038152906040528051906020012060001c612da19190614e03565b601281905550565b612dc38282604051806020016040528060008152506132cd565b5050565b6000601254148015612ddb57506000601454145b8015612dfc5750600e54612ded610f90565b1480612dfb57506013544210155b5b15612e0a57612e09612c40565b5b565b6000601880549050605a612e209190614bb4565b9050600060648234612e329190614be5565b612e3c9190614bb4565b905060005b601880549050811015612efb57600060188281548110612e6457612e63614ef0565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905082601960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612ee09190614b5e565b92505081905550508080612ef390614d8c565b915050612e41565b505050565b612f0b8484846129e4565b612f1784848484613328565b612f56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f4d90614675565b60405180910390fd5b50505050565b606060168054612f6b90614d29565b80601f0160208091040260200160405190810160405280929190818152602001828054612f9790614d29565b8015612fe45780601f10612fb957610100808354040283529160200191612fe4565b820191906000526020600020905b815481529060010190602001808311612fc757829003601f168201915b5050505050905090565b60606000821415613036576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061314a565b600082905060005b6000821461306857808061305190614d8c565b915050600a826130619190614bb4565b915061303e565b60008167ffffffffffffffff81111561308457613083614f1f565b5b6040519080825280601f01601f1916602001820160405280156130b65781602001600182028036833780820191505090505b5090505b60008514613143576001826130cf9190614c3f565b9150600a856130de9190614e03565b60306130ea9190614b5e565b60f81b818381518110613100576130ff614ef0565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561313c9190614bb4565b94506130ba565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6131c48383836134bf565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561320757613202816134c4565b613246565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161461324557613244838261350d565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613289576132848161367a565b6132c8565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146132c7576132c6828261374b565b5b5b505050565b6132d783836137ca565b6132e46000848484613328565b613323576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161331a90614675565b60405180910390fd5b505050565b60006133498473ffffffffffffffffffffffffffffffffffffffff16613998565b156134b2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026133726126f7565b8786866040518563ffffffff1660e01b8152600401613394949392919061452a565b602060405180830381600087803b1580156133ae57600080fd5b505af19250505080156133df57506040513d601f19601f820116820180604052508101906133dc9190613d87565b60015b613462573d806000811461340f576040519150601f19603f3d011682016040523d82523d6000602084013e613414565b606091505b5060008151141561345a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161345190614675565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506134b7565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161351a84611a22565b6135249190614c3f565b9050600060076000848152602001908152602001600020549050818114613609576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061368e9190614c3f565b90506000600960008481526020019081526020016000205490506000600883815481106136be576136bd614ef0565b5b9060005260206000200154905080600883815481106136e0576136df614ef0565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061372f5761372e614ec1565b5b6001900381819060005260206000200160009055905550505050565b600061375683611a22565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561383a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161383190614875565b60405180910390fd5b613843816127e1565b15613883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161387a906146d5565b60405180910390fd5b61388f600083836131b9565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546138df9190614b5e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546139b790614d29565b90600052602060002090601f0160209004810192826139d95760008555613a20565b82601f106139f257805160ff1916838001178555613a20565b82800160010185558215613a20579182015b82811115613a1f578251825591602001919060010190613a04565b5b509050613a2d9190613a31565b5090565b5b80821115613a4a576000816000905550600101613a32565b5090565b6000613a61613a5c84614a75565b614a50565b905082815260208101848484011115613a7d57613a7c614f53565b5b613a88848285614ce7565b509392505050565b6000613aa3613a9e84614aa6565b614a50565b905082815260208101848484011115613abf57613abe614f53565b5b613aca848285614ce7565b509392505050565b600081359050613ae181615816565b92915050565b600081359050613af68161582d565b92915050565b600081359050613b0b81615844565b92915050565b600081519050613b2081615844565b92915050565b600082601f830112613b3b57613b3a614f4e565b5b8135613b4b848260208601613a4e565b91505092915050565b600082601f830112613b6957613b68614f4e565b5b8135613b79848260208601613a90565b91505092915050565b600081359050613b918161585b565b92915050565b600060208284031215613bad57613bac614f5d565b5b6000613bbb84828501613ad2565b91505092915050565b60008060408385031215613bdb57613bda614f5d565b5b6000613be985828601613ad2565b9250506020613bfa85828601613ad2565b9150509250929050565b600080600060608486031215613c1d57613c1c614f5d565b5b6000613c2b86828701613ad2565b9350506020613c3c86828701613ad2565b9250506040613c4d86828701613b82565b9150509250925092565b60008060008060808587031215613c7157613c70614f5d565b5b6000613c7f87828801613ad2565b9450506020613c9087828801613ad2565b9350506040613ca187828801613b82565b925050606085013567ffffffffffffffff811115613cc257613cc1614f58565b5b613cce87828801613b26565b91505092959194509250565b60008060408385031215613cf157613cf0614f5d565b5b6000613cff85828601613ad2565b9250506020613d1085828601613ae7565b9150509250929050565b60008060408385031215613d3157613d30614f5d565b5b6000613d3f85828601613ad2565b9250506020613d5085828601613b82565b9150509250929050565b600060208284031215613d7057613d6f614f5d565b5b6000613d7e84828501613afc565b91505092915050565b600060208284031215613d9d57613d9c614f5d565b5b6000613dab84828501613b11565b91505092915050565b600060208284031215613dca57613dc9614f5d565b5b600082013567ffffffffffffffff811115613de857613de7614f58565b5b613df484828501613b54565b91505092915050565b600060208284031215613e1357613e12614f5d565b5b6000613e2184828501613b82565b91505092915050565b6000613e368383614464565b60208301905092915050565b613e4b81614c73565b82525050565b613e62613e5d82614c73565b614dd5565b82525050565b6000613e7382614ae7565b613e7d8185614b15565b9350613e8883614ad7565b8060005b83811015613eb9578151613ea08882613e2a565b9750613eab83614b08565b925050600181019050613e8c565b5085935050505092915050565b613ecf81614c85565b82525050565b6000613ee082614af2565b613eea8185614b26565b9350613efa818560208601614cf6565b613f0381614f62565b840191505092915050565b6000613f1982614afd565b613f238185614b42565b9350613f33818560208601614cf6565b613f3c81614f62565b840191505092915050565b6000613f5282614afd565b613f5c8185614b53565b9350613f6c818560208601614cf6565b80840191505092915050565b6000613f85601e83614b42565b9150613f9082614f80565b602082019050919050565b6000613fa8603983614b42565b9150613fb382614fa9565b604082019050919050565b6000613fcb601a83614b42565b9150613fd682614ff8565b602082019050919050565b6000613fee601883614b42565b9150613ff982615021565b602082019050919050565b6000614011602b83614b42565b915061401c8261504a565b604082019050919050565b6000614034603283614b42565b915061403f82615099565b604082019050919050565b6000614057602683614b42565b9150614062826150e8565b604082019050919050565b600061407a601b83614b42565b915061408582615137565b602082019050919050565b600061409d601c83614b42565b91506140a882615160565b602082019050919050565b60006140c0603a83614b42565b91506140cb82615189565b604082019050919050565b60006140e3601e83614b42565b91506140ee826151d8565b602082019050919050565b6000614106601983614b42565b915061411182615201565b602082019050919050565b6000614129602483614b42565b91506141348261522a565b604082019050919050565b600061414c601983614b42565b915061415782615279565b602082019050919050565b600061416f602c83614b42565b915061417a826152a2565b604082019050919050565b6000614192601a83614b42565b915061419d826152f1565b602082019050919050565b60006141b5603883614b42565b91506141c08261531a565b604082019050919050565b60006141d8602a83614b42565b91506141e382615369565b604082019050919050565b60006141fb602983614b42565b9150614206826153b8565b604082019050919050565b600061421e601983614b42565b915061422982615407565b602082019050919050565b6000614241602383614b42565b915061424c82615430565b604082019050919050565b6000614264602083614b42565b915061426f8261547f565b602082019050919050565b6000614287602c83614b42565b9150614292826154a8565b604082019050919050565b60006142aa602083614b42565b91506142b5826154f7565b602082019050919050565b60006142cd601983614b42565b91506142d882615520565b602082019050919050565b60006142f0602983614b42565b91506142fb82615549565b604082019050919050565b6000614313602f83614b42565b915061431e82615598565b604082019050919050565b6000614336602183614b42565b9150614341826155e7565b604082019050919050565b6000614359600083614b37565b915061436482615636565b600082019050919050565b600061437c601083614b42565b915061438782615639565b602082019050919050565b600061439f603183614b42565b91506143aa82615662565b604082019050919050565b60006143c2602c83614b42565b91506143cd826156b1565b604082019050919050565b60006143e5604583614b42565b91506143f082615700565b606082019050919050565b6000614408601283614b42565b915061441382615775565b602082019050919050565b600061442b601e83614b42565b91506144368261579e565b602082019050919050565b600061444e603083614b42565b9150614459826157c7565b604082019050919050565b61446d81614cdd565b82525050565b61447c81614cdd565b82525050565b61449361448e82614cdd565b614df9565b82525050565b60006144a58285613f47565b91506144b18284613f47565b91508190509392505050565b60006144c88261434c565b9150819050919050565b60006144de8286614482565b6020820191506144ee8285614482565b6020820191506144fe8284613e51565b601482019150819050949350505050565b60006020820190506145246000830184613e42565b92915050565b600060808201905061453f6000830187613e42565b61454c6020830186613e42565b6145596040830185614473565b818103606083015261456b8184613ed5565b905095945050505050565b600060208201905081810360008301526145908184613e68565b905092915050565b60006020820190506145ad6000830184613ec6565b92915050565b600060208201905081810360008301526145cd8184613f0e565b905092915050565b600060208201905081810360008301526145ee81613f78565b9050919050565b6000602082019050818103600083015261460e81613f9b565b9050919050565b6000602082019050818103600083015261462e81613fbe565b9050919050565b6000602082019050818103600083015261464e81613fe1565b9050919050565b6000602082019050818103600083015261466e81614004565b9050919050565b6000602082019050818103600083015261468e81614027565b9050919050565b600060208201905081810360008301526146ae8161404a565b9050919050565b600060208201905081810360008301526146ce8161406d565b9050919050565b600060208201905081810360008301526146ee81614090565b9050919050565b6000602082019050818103600083015261470e816140b3565b9050919050565b6000602082019050818103600083015261472e816140d6565b9050919050565b6000602082019050818103600083015261474e816140f9565b9050919050565b6000602082019050818103600083015261476e8161411c565b9050919050565b6000602082019050818103600083015261478e8161413f565b9050919050565b600060208201905081810360008301526147ae81614162565b9050919050565b600060208201905081810360008301526147ce81614185565b9050919050565b600060208201905081810360008301526147ee816141a8565b9050919050565b6000602082019050818103600083015261480e816141cb565b9050919050565b6000602082019050818103600083015261482e816141ee565b9050919050565b6000602082019050818103600083015261484e81614211565b9050919050565b6000602082019050818103600083015261486e81614234565b9050919050565b6000602082019050818103600083015261488e81614257565b9050919050565b600060208201905081810360008301526148ae8161427a565b9050919050565b600060208201905081810360008301526148ce8161429d565b9050919050565b600060208201905081810360008301526148ee816142c0565b9050919050565b6000602082019050818103600083015261490e816142e3565b9050919050565b6000602082019050818103600083015261492e81614306565b9050919050565b6000602082019050818103600083015261494e81614329565b9050919050565b6000602082019050818103600083015261496e8161436f565b9050919050565b6000602082019050818103600083015261498e81614392565b9050919050565b600060208201905081810360008301526149ae816143b5565b9050919050565b600060208201905081810360008301526149ce816143d8565b9050919050565b600060208201905081810360008301526149ee816143fb565b9050919050565b60006020820190508181036000830152614a0e8161441e565b9050919050565b60006020820190508181036000830152614a2e81614441565b9050919050565b6000602082019050614a4a6000830184614473565b92915050565b6000614a5a614a6b565b9050614a668282614d5b565b919050565b6000604051905090565b600067ffffffffffffffff821115614a9057614a8f614f1f565b5b614a9982614f62565b9050602081019050919050565b600067ffffffffffffffff821115614ac157614ac0614f1f565b5b614aca82614f62565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614b6982614cdd565b9150614b7483614cdd565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614ba957614ba8614e34565b5b828201905092915050565b6000614bbf82614cdd565b9150614bca83614cdd565b925082614bda57614bd9614e63565b5b828204905092915050565b6000614bf082614cdd565b9150614bfb83614cdd565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614c3457614c33614e34565b5b828202905092915050565b6000614c4a82614cdd565b9150614c5583614cdd565b925082821015614c6857614c67614e34565b5b828203905092915050565b6000614c7e82614cbd565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614d14578082015181840152602081019050614cf9565b83811115614d23576000848401525b50505050565b60006002820490506001821680614d4157607f821691505b60208210811415614d5557614d54614e92565b5b50919050565b614d6482614f62565b810181811067ffffffffffffffff82111715614d8357614d82614f1f565b5b80604052505050565b6000614d9782614cdd565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614dca57614dc9614e34565b5b600182019050919050565b6000614de082614de7565b9050919050565b6000614df282614f73565b9050919050565b6000819050919050565b6000614e0e82614cdd565b9150614e1983614cdd565b925082614e2957614e28614e63565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f5472616e73616374696f6e2065786365656473206d617820737570706c790000600082015250565b7f576974686472617720616d6f756e742063616e2774206265206d6f726520746860008201527f616e20776861742074686520636f6e7472616374206861732e00000000000000602082015250565b7f416464726573732062616c616e63652063616e27742062652030000000000000600082015250565b7f5468652073616c65206973206e6f74206f70656e207965740000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f576974686472617720616d6f756e74202063616e277420626520300000000000600082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f546f6b656e20416d6f756e7420657863656564656420746865206d617820616c60008201527f6c6f77656420706572207472616e73616374696f6e2028323029000000000000602082015250565b7f4e6f2066756e6473206c656674206f72206e6f742061206d656d6265722e0000600082015250565b7f47656e6573697320626c6f636b20616c72656164792073657400000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f576974686472617720616d6f756e742063616e27742062652030000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f47656e6573697320626c6f636b206d7573742062652073657400000000000000600082015250565b7f416c726561647920636c61696d6564207468652072657365727665642073757060008201527f706c790000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f47656e6573697320696e64657820616c72656164792073657400000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f546865207265717565737420616d6f756e742063616e2774206265206869676860008201527f6572207468616e207768617420746865206f776e65722068617320617661696c60208201527f61626c652e000000000000000000000000000000000000000000000000000000604082015250565b7f5468652073616c652068617320656e6465640000000000000000000000000000600082015250565b7f56616c75652073656e742069732062656c6f7720746f74616c20636f73740000600082015250565b7f45786365656473206d6178206d696e74656420746f6b656e7320666f7220746860008201527f6973206164647265737320283530302900000000000000000000000000000000602082015250565b61581f81614c73565b811461582a57600080fd5b50565b61583681614c85565b811461584157600080fd5b50565b61584d81614c91565b811461585857600080fd5b50565b61586481614cdd565b811461586f57600080fd5b5056fea2646970667358221220cc861996f83f3d0121cc28c791c8bddbd24baefc46a73ca19cb2540d0fba0eb364736f6c63430008060033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000843756d706c616e740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005504c414e540000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003000000000000000000000000b738beadee128cfa9e28baa1609d08ff1cbc9535000000000000000000000000e4562727fb20cf9b69faaaa5ccba59447b7d95bf000000000000000000000000da4621fc3364c3a8c718c0dd89820da507790249

-----Decoded View---------------
Arg [0] : name (string): Cumplant
Arg [1] : symbol (string): PLANT
Arg [2] : _companyAddresses (address[]): 0xb738bEadEE128cfa9E28BaA1609d08Ff1CBc9535,0xe4562727fB20Cf9b69fAAAA5CcBA59447b7d95Bf,0xda4621Fc3364c3a8c718C0DD89820Da507790249

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [4] : 43756d706c616e74000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 504c414e54000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [8] : 000000000000000000000000b738beadee128cfa9e28baa1609d08ff1cbc9535
Arg [9] : 000000000000000000000000e4562727fb20cf9b69faaaa5ccba59447b7d95bf
Arg [10] : 000000000000000000000000da4621fc3364c3a8c718c0dd89820da507790249


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.