ETH Price: $3,391.50 (-1.46%)
Gas: 2 Gwei

Token

Creepies (Creepies)
 

Overview

Max Total Supply

342 Creepies

Holders

180

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
aquis.eth
Balance
3 Creepies
0x145dc81054f95d2f4fc1cbe02c6dc82751c17dc2
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Creepies is a collection of 6666 NFT friends from the Uncanny Valley, randomly generated from over 100 hand-drawn elements by dr.casanova.frankenstein.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
nft

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU LGPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-18
*/

// SPDX-License-Identifier: GPL-3.0
// File: @openzeppelin/contracts/utils/Strings.sol

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol



pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Address.sol



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol



pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol



pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol



pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC721/IERC721.sol



pragma solidity ^0.8.0;


/**
 * @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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol



pragma solidity ^0.8.0;


/**
 * @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: contracts/creepies.sol



pragma solidity >=0.8.2;
// to enable certain compiler features

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









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;
    
    //Mapping para atribuirle un URI para cada token
    mapping(uint256 => string) internal id_to_URI;
    

    
    string private unreveleadURI;
    bool public unrevelead;

    /**
     * @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_;
        unrevelead = true;
        unreveleadURI = "ipfs://QmZ8Q871F3nR5tUY5UqLn39PYDPrYQA8Pec85bW9n3WtaR/summoned.json";
    }

    /**
     * @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");
        
        if (unrevelead == true) {
            return unreveleadURI;
        }
        else {
            string memory baseURI = _baseURI();
            return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), '.json')) : "";
        }    
    }

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

contract nft is ERC721, Ownable {

    uint public numberOfTokens;
    string private baseURI;
    uint256 private maxTokens;
    
    uint public constant mintCost = 0.0666 ether;
    
    uint256 public constant maxMintPerTxPresale = 3;
    uint256 public constant maxMintPerTxPublicSale = 5;
    uint256 public constant maxMint = 50;
    uint private nInitialMint = 0;
    
    address payable public constant shareholder1 = payable(0xbb723337973d8BA494ecDde444b11f8b05C0D537);
    address payable public constant shareholder2 = payable(0x1c4192540D4d2835FDB4D2d4F9239E86C35736ac);
    address payable public constant shareholder3 = payable(0x7aE75Fa86212522399D36A00cA88f88C84580CEb);
    address payable public constant shareholder4 = payable(0x4F6437D56FCB8bB80051e4B8A8445155e98ae5F1);
    address payable public projectAddress = payable(0x29945f2dEe93E8576a5ee87E855247D761E46dEb);
    address private dummy = 0xB81990791a0D50a988973E68D18aB8FaE05DEC99;

    
    mapping(address => uint256) public mintsPerAddress;
    
    enum State {NoSale, Presale, PublicSale}
    State public saleState;
    
    
    constructor(string memory nombre, string memory simbolo) ERC721(nombre, simbolo) {
        numberOfTokens = 0;
        baseURI = 'ipfs://QmRRFsEZcUTobK4touSHcD5hQmNDJdqor55eAZ7AFXoDe1/';
        maxTokens = 6666;
        saleState = State.NoSale;
    }
    
    receive() payable external {}
    fallback() payable external {}
    
    
    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
    
    
    function changeBaseURI(string memory baseURI_) public {
        address ow = owner();
        require(msg.sender == ow, "Only available for the Owner of the Contract");
        baseURI = baseURI_;
    }
    
    function tokenId() internal returns(uint256) {
        numberOfTokens += 1;
        return numberOfTokens;
    }
    
    function reveal() public {
        unrevelead = false;
    }    
    
    modifier onlyValidAccess(uint8 _v, bytes32 _r, bytes32 _s) {
        require( isValidAccessMessage(msg.sender,_v,_r,_s), 'Invalid Signature' );
        _;
    }
 
    /* 
    * @dev Verifies if message was signed by owner to give access to _add for this contract.
    *      Assumes Geth signature prefix.
    * @param _add Address of agent with access
    * @param _v ECDSA signature parameter v.
    * @param _r ECDSA signature parameters r.
    * @param _s ECDSA signature parameters s.
    * @return Validity of access message for a given address.
    */
    function isValidAccessMessage(address _add, uint8 _v, bytes32 _r, bytes32 _s) view public returns (bool) {
        bytes32 hash = keccak256(abi.encodePacked(address(this), _add));
        return dummy == ecrecover(keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)), _v, _r, _s);
    }
    
    function mint(uint256 number, uint8 _v, bytes32 _r, bytes32 _s) onlyValidAccess(_v, _r, _s) public payable {
        require(saleState != State.NoSale, "Sale in not open yet!");
        require(msg.value == mintCost * number, "Not sufficient/Excessive Ether to mint this amount of NFTs (Cost = 0.0666 ether for each NFT)");
        require(numberOfTokens < maxTokens, "No more NFTs to mint..");
        
        if (saleState == State.Presale) {
            require(number <= maxMintPerTxPresale, "The limit of NFT mints per Tx in Presale is 3");
            require(mintsPerAddress[msg.sender] + number <= maxMintPerTxPresale, "The limit of NFT mints in Presale is 3");
        }
        else {
            require(number <= maxMintPerTxPublicSale, "The limit of NFT mints per Tx in Public Sale is 5");
            require(mintsPerAddress[msg.sender] + number <= maxMint, "The limit of NFT mints in Public Sale is 50");
        }    
        
        for (uint256 i = 0; i < number; i++) {
            uint256 tid = tokenId();
            _safeMint(msg.sender, tid);
            mintsPerAddress[msg.sender] += 1;
        }    
    }
    
    function initalMint() public {
        address ow = owner();
        require(msg.sender == ow, "Only available for the Owner of the Contract");
        require(nInitialMint < 1, "Initial Mint is only allowed Once");
        for (uint256 i = 0; i < 66; i++) {
            uint256 tid = tokenId();
            _safeMint(projectAddress, tid);
            mintsPerAddress[projectAddress] += 1;
        }
        nInitialMint += 1;
    }
    
    function switchToPresale() public {
        address ow = owner();
        require(msg.sender == ow, "Only available for the Owner of the Contract");
        saleState = State.Presale;
    }
    
    function switchToPublicSale() public {
        address ow = owner();
        require(msg.sender == ow, "Only available for the Owner of the Contract");
        saleState = State.PublicSale;
    }
    
    function burnTokens() public {
        address ow = owner();
        require(msg.sender == ow, "Only available for the Owner of the Contract");
        maxTokens = numberOfTokens;
    }
    
    function accountBalance() public view returns(uint) {
        address ow = owner();
        require(msg.sender == ow, "Only available for the Owner of the Contract");
        return address(this).balance;
    }
    
    function withdrawAll() public {
        address ow = owner();
        require(msg.sender == ow, "Only available for the Owner of the Contract");

        uint balance = accountBalance();
        require(balance > 0, "Balance must be greater than 0");
        
        withdraw(shareholder1, ((balance * 25) / 100));
        withdraw(shareholder2, ((balance * 25) / 100));
        withdraw(shareholder3, ((balance * 20) / 100));
        withdraw(shareholder4, ((balance * 20) / 100));
        withdraw(projectAddress, address(this).balance);
    }
    
    function withdraw(address payable _address, uint amount) internal {
        (bool sent, ) = _address.call{value: amount}("");
        require(sent, "Failed to send Ether");
    }
    
    function changeDummy(address _dummy) public {
        address ow = owner();
        require(msg.sender == ow);
        dummy = _dummy;
    }
    
    function changeProjectAddress(address payable _projectAddress) public {
        address ow = owner();
        require(msg.sender == ow, "Only available for the Owner of the Contract");
        projectAddress = _projectAddress;
    }
    
    function totalSupply() public view returns(uint) {
        return numberOfTokens;
    }
    
   
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"nombre","type":"string"},{"internalType":"string","name":"simbolo","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"accountBalance","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":"burnTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"changeBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_dummy","type":"address"}],"name":"changeDummy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_projectAddress","type":"address"}],"name":"changeProjectAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initalMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_add","type":"address"},{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"}],"name":"isValidAccessMessage","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTxPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTxPublicSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"number","type":"uint256"},{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"mintsPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numberOfTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"projectAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleState","outputs":[{"internalType":"enum nft.State","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"shareholder1","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"shareholder2","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"shareholder3","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"shareholder4","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"switchToPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"switchToPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unrevelead","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60806040526000600c55600d80546001600160a01b03199081167329945f2dee93e8576a5ee87e855247d761e46deb17909155600e805490911673b81990791a0d50a988973e68d18ab8fae05dec991790553480156200005e57600080fd5b5060405162002bf138038062002bf1833981016040819052620000819162000328565b8151829082906200009a906000906020850190620001b5565b508051620000b0906001906020840190620001b5565b506008805460ff191660011790556040805160808101909152604380825262002bae60208301398051620000ed91600791602090910190620001b5565b5050506200010a620001046200015760201b60201c565b6200015b565b60006009556040805160608101909152603680825262002b78602083013980516200013e91600a91602090910190620001b5565b5050611a0a600b55506010805460ff19169055620003cf565b3390565b600880546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001c39062000392565b90600052602060002090601f016020900481019282620001e7576000855562000232565b82601f106200020257805160ff191683800117855562000232565b8280016001018555821562000232579182015b828111156200023257825182559160200191906001019062000215565b506200024092915062000244565b5090565b5b8082111562000240576000815560010162000245565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200028357600080fd5b81516001600160401b0380821115620002a057620002a06200025b565b604051601f8301601f19908116603f01168101908282118183101715620002cb57620002cb6200025b565b81604052838152602092508683858801011115620002e857600080fd5b600091505b838210156200030c5785820183015181830184015290820190620002ed565b838211156200031e5760008385830101525b9695505050505050565b600080604083850312156200033c57600080fd5b82516001600160401b03808211156200035457600080fd5b620003628683870162000271565b935060208501519150808211156200037957600080fd5b50620003888582860162000271565b9150509250929050565b600181811c90821680620003a757607f821691505b60208210811415620003c957634e487b7160e01b600052602260045260246000fd5b50919050565b61279980620003df6000396000f3fe60806040526004361061023d5760003560e01c8063715018a61161012d578063b0a1c1c4116100b0578063e808285811610077578063e8082858146106ac578063e985e9c5146106cc578063eab4178214610715578063f2fde38b1461072a578063f9f16ef21461074a578063ff9849941461076057005b8063b0a1c1c414610627578063b88d4fde1461063c578063bdb4b8481461065c578063c87b56dd14610677578063c97ceb0e1461069757005b806393e6a071116100f457806393e6a0711461059957806395d89b41146105ae578063a22cb465146105c3578063a4620d67146105e3578063a475b5dd1461060b57005b8063715018a61461051d5780637501f74114610532578063853828b6146105475780638da5cb5b1461055c5780639290ac4c1461057f57005b806325eae07a116101c057806342842e0e1161018757806342842e0e146104465780635e1dca0414610466578063603f4d521461048e5780636352211e146104b557806370780a7a146104d557806370a08231146104fd57005b806325eae07a146103a45780633023eba6146103b957806332624114146103e657806339a0c6f9146104065780633cf96af11461042657005b8063095ea7b311610204578063095ea7b31461030a57806310aec4a61461032a57806318160ddd1461033d5780632363aa5c1461035c57806323b872dd1461038457005b80630191a6571461024657806301ffc9a71461026657806306fdde031461029b57806308003f78146102bd578063081812fc146102d257005b3661024457005b005b34801561025257600080fd5b50610244610261366004612112565b610775565b34801561027257600080fd5b50610286610281366004612145565b6107b5565b60405190151581526020015b60405180910390f35b3480156102a757600080fd5b506102b0610807565b60405161029291906121ba565b3480156102c957600080fd5b50610244610899565b3480156102de57600080fd5b506102f26102ed3660046121cd565b6108db565b6040516001600160a01b039091168152602001610292565b34801561031657600080fd5b506102446103253660046121e6565b610970565b610244610338366004612223565b610a86565b34801561034957600080fd5b506009545b604051908152602001610292565b34801561036857600080fd5b506102f2734f6437d56fcb8bb80051e4b8a8445155e98ae5f181565b34801561039057600080fd5b5061024461039f36600461225e565b610e81565b3480156103b057600080fd5b50610244610eb2565b3480156103c557600080fd5b5061034e6103d4366004612112565b600f6020526000908152604090205481565b3480156103f257600080fd5b5061028661040136600461229f565b610fce565b34801561041257600080fd5b5061024461042136600461235a565b6110da565b34801561043257600080fd5b50600d546102f2906001600160a01b031681565b34801561045257600080fd5b5061024461046136600461225e565b61111d565b34801561047257600080fd5b506102f273bb723337973d8ba494ecdde444b11f8b05c0d53781565b34801561049a57600080fd5b506010546104a89060ff1681565b60405161029291906123b9565b3480156104c157600080fd5b506102f26104d03660046121cd565b611138565b3480156104e157600080fd5b506102f2731c4192540d4d2835fdb4d2d4f9239e86c35736ac81565b34801561050957600080fd5b5061034e610518366004612112565b6111af565b34801561052957600080fd5b50610244611236565b34801561053e57600080fd5b5061034e603281565b34801561055357600080fd5b506102446112a2565b34801561056857600080fd5b5060085461010090046001600160a01b03166102f2565b34801561058b57600080fd5b506008546102869060ff1681565b3480156105a557600080fd5b5061034e600381565b3480156105ba57600080fd5b506102b06113eb565b3480156105cf57600080fd5b506102446105de3660046123e1565b6113fa565b3480156105ef57600080fd5b506102f2737ae75fa86212522399d36a00ca88f88c84580ceb81565b34801561061757600080fd5b506102446008805460ff19169055565b34801561063357600080fd5b5061034e6114bf565b34801561064857600080fd5b5061024461065736600461241f565b61150b565b34801561066857600080fd5b5061034e66ec9c58de0a800081565b34801561068357600080fd5b506102b06106923660046121cd565b611543565b3480156106a357600080fd5b5061034e600581565b3480156106b857600080fd5b506102446106c7366004612112565b6116c5565b3480156106d857600080fd5b506102866106e736600461249f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561072157600080fd5b50610244611718565b34801561073657600080fd5b50610244610745366004612112565b61175f565b34801561075657600080fd5b5061034e60095481565b34801561076c57600080fd5b50610244611830565b60085461010090046001600160a01b031633811461079257600080fd5b50600e80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b14806107e657506001600160e01b03198216635b5e139f60e01b145b8061080157506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610816906124cd565b80601f0160208091040260200160405190810160405280929190818152602001828054610842906124cd565b801561088f5780601f106108645761010080835404028352916020019161088f565b820191906000526020600020905b81548152906001019060200180831161087257829003601f168201915b5050505050905090565b60085461010090046001600160a01b03163381146108d25760405162461bcd60e51b81526004016108c990612508565b60405180910390fd5b50600954600b55565b6000818152600260205260408120546001600160a01b03166109545760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108c9565b506000908152600460205260409020546001600160a01b031690565b600061097b82611138565b9050806001600160a01b0316836001600160a01b031614156109e95760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108c9565b336001600160a01b0382161480610a055750610a0581336106e7565b610a775760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108c9565b610a818383611874565b505050565b828282610a9533848484610fce565b610ad55760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964205369676e617475726560781b60448201526064016108c9565b600060105460ff166002811115610aee57610aee6123a3565b1415610b345760405162461bcd60e51b815260206004820152601560248201527453616c6520696e206e6f74206f70656e207965742160581b60448201526064016108c9565b610b458766ec9c58de0a800061256a565b3414610bdf5760405162461bcd60e51b815260206004820152605d60248201527f4e6f742073756666696369656e742f457863657373697665204574686572207460448201527f6f206d696e74207468697320616d6f756e74206f66204e4654732028436f737460648201527f203d20302e3036363620657468657220666f722065616368204e465429000000608482015260a4016108c9565b600b5460095410610c2b5760405162461bcd60e51b815260206004820152601660248201527527379036b7b9329027232a39903a379036b4b73a171760511b60448201526064016108c9565b600160105460ff166002811115610c4457610c446123a3565b1415610d31576003871115610cb15760405162461bcd60e51b815260206004820152602d60248201527f546865206c696d6974206f66204e4654206d696e74732070657220547820696e60448201526c2050726573616c65206973203360981b60648201526084016108c9565b336000908152600f6020526040902054600390610ccf908990612589565b1115610d2c5760405162461bcd60e51b815260206004820152602660248201527f546865206c696d6974206f66204e4654206d696e747320696e2050726573616c60448201526565206973203360d01b60648201526084016108c9565b610e1c565b6005871115610d9c5760405162461bcd60e51b815260206004820152603160248201527f546865206c696d6974206f66204e4654206d696e74732070657220547820696e604482015270205075626c69632053616c65206973203560781b60648201526084016108c9565b336000908152600f6020526040902054603290610dba908990612589565b1115610e1c5760405162461bcd60e51b815260206004820152602b60248201527f546865206c696d6974206f66204e4654206d696e747320696e205075626c696360448201526a02053616c652069732035360ac1b60648201526084016108c9565b60005b87811015610e77576000610e316118e2565b9050610e3d3382611904565b336000908152600f60205260408120805460019290610e5d908490612589565b90915550829150610e6f9050816125a1565b915050610e1f565b5050505050505050565b610e8b338261191e565b610ea75760405162461bcd60e51b81526004016108c9906125bc565b610a81838383611a11565b60085461010090046001600160a01b0316338114610ee25760405162461bcd60e51b81526004016108c990612508565b6001600c5410610f3e5760405162461bcd60e51b815260206004820152602160248201527f496e697469616c204d696e74206973206f6e6c7920616c6c6f776564204f6e636044820152606560f81b60648201526084016108c9565b60005b6042811015610fb2576000610f546118e2565b600d54909150610f6d906001600160a01b031682611904565b600d546001600160a01b03166000908152600f60205260408120805460019290610f98908490612589565b90915550829150610faa9050816125a1565b915050610f41565b506001600c6000828254610fc69190612589565b909155505050565b6040516bffffffffffffffffffffffff1930606090811b8216602084015286901b166034820152600090819060480160405160208183030381529060405280519060200120905060018160405160200161105491907f19457468657265756d205369676e6564204d6573736167653a0a3332000000008152601c810191909152603c0190565b60408051601f198184030181528282528051602091820120600084529083018083525260ff881690820152606081018690526080810185905260a0016020604051602081039080840390855afa1580156110b2573d6000803e3d6000fd5b5050604051601f190151600e546001600160a01b03908116911614925050505b949350505050565b60085461010090046001600160a01b031633811461110a5760405162461bcd60e51b81526004016108c990612508565b8151610a8190600a906020850190612064565b610a818383836040518060200160405280600081525061150b565b6000818152600260205260408120546001600160a01b0316806108015760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108c9565b60006001600160a01b03821661121a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108c9565b506001600160a01b031660009081526003602052604090205490565b6008546001600160a01b036101009091041633146112965760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108c9565b6112a06000611bb1565b565b60085461010090046001600160a01b03163381146112d25760405162461bcd60e51b81526004016108c990612508565b60006112dc6114bf565b90506000811161132e5760405162461bcd60e51b815260206004820152601e60248201527f42616c616e6365206d7573742062652067726561746572207468616e2030000060448201526064016108c9565b61136273bb723337973d8ba494ecdde444b11f8b05c0d537606461135384601961256a565b61135d9190612623565b611c0b565b611387731c4192540d4d2835fdb4d2d4f9239e86c35736ac606461135384601961256a565b6113ac737ae75fa86212522399d36a00ca88f88c84580ceb606461135384601461256a565b6113d1734f6437d56fcb8bb80051e4b8a8445155e98ae5f1606461135384601461256a565b600d546113e7906001600160a01b031647611c0b565b5050565b606060018054610816906124cd565b6001600160a01b0382163314156114535760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108c9565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000806114da6008546001600160a01b036101009091041690565b9050336001600160a01b038216146115045760405162461bcd60e51b81526004016108c990612508565b4791505090565b611515338361191e565b6115315760405162461bcd60e51b81526004016108c9906125bc565b61153d84848484611ca5565b50505050565b6000818152600260205260409020546060906001600160a01b03166115c25760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108c9565b60085460ff1615156001141561166457600780546115df906124cd565b80601f016020809104026020016040519081016040528092919081815260200182805461160b906124cd565b80156116585780601f1061162d57610100808354040283529160200191611658565b820191906000526020600020905b81548152906001019060200180831161163b57829003601f168201915b50505050509050919050565b600061166e611cd8565b9050600081511161168e57604051806020016040528060008152506116b9565b8061169884611ce7565b6040516020016116a9929190612637565b6040516020818303038152906040525b9392505050565b919050565b60085461010090046001600160a01b03163381146116f55760405162461bcd60e51b81526004016108c990612508565b50600d80546001600160a01b0319166001600160a01b0392909216919091179055565b60085461010090046001600160a01b03163381146117485760405162461bcd60e51b81526004016108c990612508565b601080546001919060ff191682805b021790555050565b6008546001600160a01b036101009091041633146117bf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108c9565b6001600160a01b0381166118245760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108c9565b61182d81611bb1565b50565b60085461010090046001600160a01b03163381146118605760405162461bcd60e51b81526004016108c990612508565b601080546002919060ff1916600183611757565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118a982611138565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600960008282546118f79190612589565b9091555050600954919050565b6113e7828260405180602001604052806000815250611de5565b6000818152600260205260408120546001600160a01b03166119975760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108c9565b60006119a283611138565b9050806001600160a01b0316846001600160a01b031614806119dd5750836001600160a01b03166119d2846108db565b6001600160a01b0316145b806110d257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff166110d2565b826001600160a01b0316611a2482611138565b6001600160a01b031614611a8c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108c9565b6001600160a01b038216611aee5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108c9565b611af9600082611874565b6001600160a01b0383166000908152600360205260408120805460019290611b22908490612676565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b50908490612589565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600880546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611c58576040519150601f19603f3d011682016040523d82523d6000602084013e611c5d565b606091505b5050905080610a815760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321022ba3432b960611b60448201526064016108c9565b611cb0848484611a11565b611cbc84848484611e18565b61153d5760405162461bcd60e51b81526004016108c99061268d565b6060600a8054610816906124cd565b606081611d0b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d355780611d1f816125a1565b9150611d2e9050600a83612623565b9150611d0f565b60008167ffffffffffffffff811115611d5057611d506122ce565b6040519080825280601f01601f191660200182016040528015611d7a576020820181803683370190505b5090505b84156110d257611d8f600183612676565b9150611d9c600a866126df565b611da7906030612589565b60f81b818381518110611dbc57611dbc6126f3565b60200101906001600160f81b031916908160001a905350611dde600a86612623565b9450611d7e565b611def8383611f22565b611dfc6000848484611e18565b610a815760405162461bcd60e51b81526004016108c99061268d565b60006001600160a01b0384163b15611f1a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e5c903390899088908890600401612709565b602060405180830381600087803b158015611e7657600080fd5b505af1925050508015611ea6575060408051601f3d908101601f19168201909252611ea391810190612746565b60015b611f00573d808015611ed4576040519150601f19603f3d011682016040523d82523d6000602084013e611ed9565b606091505b508051611ef85760405162461bcd60e51b81526004016108c99061268d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506110d2565b5060016110d2565b6001600160a01b038216611f785760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108c9565b6000818152600260205260409020546001600160a01b031615611fdd5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108c9565b6001600160a01b0382166000908152600360205260408120805460019290612006908490612589565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612070906124cd565b90600052602060002090601f01602090048101928261209257600085556120d8565b82601f106120ab57805160ff19168380011785556120d8565b828001600101855582156120d8579182015b828111156120d85782518255916020019190600101906120bd565b506120e49291506120e8565b5090565b5b808211156120e457600081556001016120e9565b6001600160a01b038116811461182d57600080fd5b60006020828403121561212457600080fd5b81356116b9816120fd565b6001600160e01b03198116811461182d57600080fd5b60006020828403121561215757600080fd5b81356116b98161212f565b60005b8381101561217d578181015183820152602001612165565b8381111561153d5750506000910152565b600081518084526121a6816020860160208601612162565b601f01601f19169290920160200192915050565b6020815260006116b9602083018461218e565b6000602082840312156121df57600080fd5b5035919050565b600080604083850312156121f957600080fd5b8235612204816120fd565b946020939093013593505050565b803560ff811681146116c057600080fd5b6000806000806080858703121561223957600080fd5b8435935061224960208601612212565b93969395505050506040820135916060013590565b60008060006060848603121561227357600080fd5b833561227e816120fd565b9250602084013561228e816120fd565b929592945050506040919091013590565b600080600080608085870312156122b557600080fd5b84356122c0816120fd565b935061224960208601612212565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156122ff576122ff6122ce565b604051601f8501601f19908116603f01168101908282118183101715612327576123276122ce565b8160405280935085815286868601111561234057600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561236c57600080fd5b813567ffffffffffffffff81111561238357600080fd5b8201601f8101841361239457600080fd5b6110d2848235602084016122e4565b634e487b7160e01b600052602160045260246000fd5b60208101600383106123db57634e487b7160e01b600052602160045260246000fd5b91905290565b600080604083850312156123f457600080fd5b82356123ff816120fd565b91506020830135801515811461241457600080fd5b809150509250929050565b6000806000806080858703121561243557600080fd5b8435612440816120fd565b93506020850135612450816120fd565b925060408501359150606085013567ffffffffffffffff81111561247357600080fd5b8501601f8101871361248457600080fd5b612493878235602084016122e4565b91505092959194509250565b600080604083850312156124b257600080fd5b82356124bd816120fd565b91506020830135612414816120fd565b600181811c908216806124e157607f821691505b6020821081141561250257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602c908201527f4f6e6c7920617661696c61626c6520666f7220746865204f776e6572206f662060408201526b1d1a194810dbdb9d1c9858dd60a21b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561258457612584612554565b500290565b6000821982111561259c5761259c612554565b500190565b60006000198214156125b5576125b5612554565b5060010190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826126325761263261260d565b500490565b60008351612649818460208801612162565b83519083019061265d818360208801612162565b64173539b7b760d91b9101908152600501949350505050565b60008282101561268857612688612554565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000826126ee576126ee61260d565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061273c9083018461218e565b9695505050505050565b60006020828403121561275857600080fd5b81516116b98161212f56fea2646970667358221220a132b9fee1c808bceff9cc257115c131dd09cf15f24f6097f58145aa20effc5664736f6c63430008090033697066733a2f2f516d52524673455a6355546f624b34746f75534863443568516d4e444a64716f72353565415a374146586f4465312f697066733a2f2f516d5a385138373146336e52357455593555714c6e333950594450725951413850656338356257396e33577461522f73756d6d6f6e65642e6a736f6e000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000008437265657069657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084372656570696573000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061023d5760003560e01c8063715018a61161012d578063b0a1c1c4116100b0578063e808285811610077578063e8082858146106ac578063e985e9c5146106cc578063eab4178214610715578063f2fde38b1461072a578063f9f16ef21461074a578063ff9849941461076057005b8063b0a1c1c414610627578063b88d4fde1461063c578063bdb4b8481461065c578063c87b56dd14610677578063c97ceb0e1461069757005b806393e6a071116100f457806393e6a0711461059957806395d89b41146105ae578063a22cb465146105c3578063a4620d67146105e3578063a475b5dd1461060b57005b8063715018a61461051d5780637501f74114610532578063853828b6146105475780638da5cb5b1461055c5780639290ac4c1461057f57005b806325eae07a116101c057806342842e0e1161018757806342842e0e146104465780635e1dca0414610466578063603f4d521461048e5780636352211e146104b557806370780a7a146104d557806370a08231146104fd57005b806325eae07a146103a45780633023eba6146103b957806332624114146103e657806339a0c6f9146104065780633cf96af11461042657005b8063095ea7b311610204578063095ea7b31461030a57806310aec4a61461032a57806318160ddd1461033d5780632363aa5c1461035c57806323b872dd1461038457005b80630191a6571461024657806301ffc9a71461026657806306fdde031461029b57806308003f78146102bd578063081812fc146102d257005b3661024457005b005b34801561025257600080fd5b50610244610261366004612112565b610775565b34801561027257600080fd5b50610286610281366004612145565b6107b5565b60405190151581526020015b60405180910390f35b3480156102a757600080fd5b506102b0610807565b60405161029291906121ba565b3480156102c957600080fd5b50610244610899565b3480156102de57600080fd5b506102f26102ed3660046121cd565b6108db565b6040516001600160a01b039091168152602001610292565b34801561031657600080fd5b506102446103253660046121e6565b610970565b610244610338366004612223565b610a86565b34801561034957600080fd5b506009545b604051908152602001610292565b34801561036857600080fd5b506102f2734f6437d56fcb8bb80051e4b8a8445155e98ae5f181565b34801561039057600080fd5b5061024461039f36600461225e565b610e81565b3480156103b057600080fd5b50610244610eb2565b3480156103c557600080fd5b5061034e6103d4366004612112565b600f6020526000908152604090205481565b3480156103f257600080fd5b5061028661040136600461229f565b610fce565b34801561041257600080fd5b5061024461042136600461235a565b6110da565b34801561043257600080fd5b50600d546102f2906001600160a01b031681565b34801561045257600080fd5b5061024461046136600461225e565b61111d565b34801561047257600080fd5b506102f273bb723337973d8ba494ecdde444b11f8b05c0d53781565b34801561049a57600080fd5b506010546104a89060ff1681565b60405161029291906123b9565b3480156104c157600080fd5b506102f26104d03660046121cd565b611138565b3480156104e157600080fd5b506102f2731c4192540d4d2835fdb4d2d4f9239e86c35736ac81565b34801561050957600080fd5b5061034e610518366004612112565b6111af565b34801561052957600080fd5b50610244611236565b34801561053e57600080fd5b5061034e603281565b34801561055357600080fd5b506102446112a2565b34801561056857600080fd5b5060085461010090046001600160a01b03166102f2565b34801561058b57600080fd5b506008546102869060ff1681565b3480156105a557600080fd5b5061034e600381565b3480156105ba57600080fd5b506102b06113eb565b3480156105cf57600080fd5b506102446105de3660046123e1565b6113fa565b3480156105ef57600080fd5b506102f2737ae75fa86212522399d36a00ca88f88c84580ceb81565b34801561061757600080fd5b506102446008805460ff19169055565b34801561063357600080fd5b5061034e6114bf565b34801561064857600080fd5b5061024461065736600461241f565b61150b565b34801561066857600080fd5b5061034e66ec9c58de0a800081565b34801561068357600080fd5b506102b06106923660046121cd565b611543565b3480156106a357600080fd5b5061034e600581565b3480156106b857600080fd5b506102446106c7366004612112565b6116c5565b3480156106d857600080fd5b506102866106e736600461249f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561072157600080fd5b50610244611718565b34801561073657600080fd5b50610244610745366004612112565b61175f565b34801561075657600080fd5b5061034e60095481565b34801561076c57600080fd5b50610244611830565b60085461010090046001600160a01b031633811461079257600080fd5b50600e80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b14806107e657506001600160e01b03198216635b5e139f60e01b145b8061080157506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610816906124cd565b80601f0160208091040260200160405190810160405280929190818152602001828054610842906124cd565b801561088f5780601f106108645761010080835404028352916020019161088f565b820191906000526020600020905b81548152906001019060200180831161087257829003601f168201915b5050505050905090565b60085461010090046001600160a01b03163381146108d25760405162461bcd60e51b81526004016108c990612508565b60405180910390fd5b50600954600b55565b6000818152600260205260408120546001600160a01b03166109545760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108c9565b506000908152600460205260409020546001600160a01b031690565b600061097b82611138565b9050806001600160a01b0316836001600160a01b031614156109e95760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108c9565b336001600160a01b0382161480610a055750610a0581336106e7565b610a775760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108c9565b610a818383611874565b505050565b828282610a9533848484610fce565b610ad55760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964205369676e617475726560781b60448201526064016108c9565b600060105460ff166002811115610aee57610aee6123a3565b1415610b345760405162461bcd60e51b815260206004820152601560248201527453616c6520696e206e6f74206f70656e207965742160581b60448201526064016108c9565b610b458766ec9c58de0a800061256a565b3414610bdf5760405162461bcd60e51b815260206004820152605d60248201527f4e6f742073756666696369656e742f457863657373697665204574686572207460448201527f6f206d696e74207468697320616d6f756e74206f66204e4654732028436f737460648201527f203d20302e3036363620657468657220666f722065616368204e465429000000608482015260a4016108c9565b600b5460095410610c2b5760405162461bcd60e51b815260206004820152601660248201527527379036b7b9329027232a39903a379036b4b73a171760511b60448201526064016108c9565b600160105460ff166002811115610c4457610c446123a3565b1415610d31576003871115610cb15760405162461bcd60e51b815260206004820152602d60248201527f546865206c696d6974206f66204e4654206d696e74732070657220547820696e60448201526c2050726573616c65206973203360981b60648201526084016108c9565b336000908152600f6020526040902054600390610ccf908990612589565b1115610d2c5760405162461bcd60e51b815260206004820152602660248201527f546865206c696d6974206f66204e4654206d696e747320696e2050726573616c60448201526565206973203360d01b60648201526084016108c9565b610e1c565b6005871115610d9c5760405162461bcd60e51b815260206004820152603160248201527f546865206c696d6974206f66204e4654206d696e74732070657220547820696e604482015270205075626c69632053616c65206973203560781b60648201526084016108c9565b336000908152600f6020526040902054603290610dba908990612589565b1115610e1c5760405162461bcd60e51b815260206004820152602b60248201527f546865206c696d6974206f66204e4654206d696e747320696e205075626c696360448201526a02053616c652069732035360ac1b60648201526084016108c9565b60005b87811015610e77576000610e316118e2565b9050610e3d3382611904565b336000908152600f60205260408120805460019290610e5d908490612589565b90915550829150610e6f9050816125a1565b915050610e1f565b5050505050505050565b610e8b338261191e565b610ea75760405162461bcd60e51b81526004016108c9906125bc565b610a81838383611a11565b60085461010090046001600160a01b0316338114610ee25760405162461bcd60e51b81526004016108c990612508565b6001600c5410610f3e5760405162461bcd60e51b815260206004820152602160248201527f496e697469616c204d696e74206973206f6e6c7920616c6c6f776564204f6e636044820152606560f81b60648201526084016108c9565b60005b6042811015610fb2576000610f546118e2565b600d54909150610f6d906001600160a01b031682611904565b600d546001600160a01b03166000908152600f60205260408120805460019290610f98908490612589565b90915550829150610faa9050816125a1565b915050610f41565b506001600c6000828254610fc69190612589565b909155505050565b6040516bffffffffffffffffffffffff1930606090811b8216602084015286901b166034820152600090819060480160405160208183030381529060405280519060200120905060018160405160200161105491907f19457468657265756d205369676e6564204d6573736167653a0a3332000000008152601c810191909152603c0190565b60408051601f198184030181528282528051602091820120600084529083018083525260ff881690820152606081018690526080810185905260a0016020604051602081039080840390855afa1580156110b2573d6000803e3d6000fd5b5050604051601f190151600e546001600160a01b03908116911614925050505b949350505050565b60085461010090046001600160a01b031633811461110a5760405162461bcd60e51b81526004016108c990612508565b8151610a8190600a906020850190612064565b610a818383836040518060200160405280600081525061150b565b6000818152600260205260408120546001600160a01b0316806108015760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108c9565b60006001600160a01b03821661121a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108c9565b506001600160a01b031660009081526003602052604090205490565b6008546001600160a01b036101009091041633146112965760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108c9565b6112a06000611bb1565b565b60085461010090046001600160a01b03163381146112d25760405162461bcd60e51b81526004016108c990612508565b60006112dc6114bf565b90506000811161132e5760405162461bcd60e51b815260206004820152601e60248201527f42616c616e6365206d7573742062652067726561746572207468616e2030000060448201526064016108c9565b61136273bb723337973d8ba494ecdde444b11f8b05c0d537606461135384601961256a565b61135d9190612623565b611c0b565b611387731c4192540d4d2835fdb4d2d4f9239e86c35736ac606461135384601961256a565b6113ac737ae75fa86212522399d36a00ca88f88c84580ceb606461135384601461256a565b6113d1734f6437d56fcb8bb80051e4b8a8445155e98ae5f1606461135384601461256a565b600d546113e7906001600160a01b031647611c0b565b5050565b606060018054610816906124cd565b6001600160a01b0382163314156114535760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108c9565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000806114da6008546001600160a01b036101009091041690565b9050336001600160a01b038216146115045760405162461bcd60e51b81526004016108c990612508565b4791505090565b611515338361191e565b6115315760405162461bcd60e51b81526004016108c9906125bc565b61153d84848484611ca5565b50505050565b6000818152600260205260409020546060906001600160a01b03166115c25760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108c9565b60085460ff1615156001141561166457600780546115df906124cd565b80601f016020809104026020016040519081016040528092919081815260200182805461160b906124cd565b80156116585780601f1061162d57610100808354040283529160200191611658565b820191906000526020600020905b81548152906001019060200180831161163b57829003601f168201915b50505050509050919050565b600061166e611cd8565b9050600081511161168e57604051806020016040528060008152506116b9565b8061169884611ce7565b6040516020016116a9929190612637565b6040516020818303038152906040525b9392505050565b919050565b60085461010090046001600160a01b03163381146116f55760405162461bcd60e51b81526004016108c990612508565b50600d80546001600160a01b0319166001600160a01b0392909216919091179055565b60085461010090046001600160a01b03163381146117485760405162461bcd60e51b81526004016108c990612508565b601080546001919060ff191682805b021790555050565b6008546001600160a01b036101009091041633146117bf5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108c9565b6001600160a01b0381166118245760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108c9565b61182d81611bb1565b50565b60085461010090046001600160a01b03163381146118605760405162461bcd60e51b81526004016108c990612508565b601080546002919060ff1916600183611757565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118a982611138565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600960008282546118f79190612589565b9091555050600954919050565b6113e7828260405180602001604052806000815250611de5565b6000818152600260205260408120546001600160a01b03166119975760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108c9565b60006119a283611138565b9050806001600160a01b0316846001600160a01b031614806119dd5750836001600160a01b03166119d2846108db565b6001600160a01b0316145b806110d257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff166110d2565b826001600160a01b0316611a2482611138565b6001600160a01b031614611a8c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108c9565b6001600160a01b038216611aee5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108c9565b611af9600082611874565b6001600160a01b0383166000908152600360205260408120805460019290611b22908490612676565b90915550506001600160a01b0382166000908152600360205260408120805460019290611b50908490612589565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600880546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611c58576040519150601f19603f3d011682016040523d82523d6000602084013e611c5d565b606091505b5050905080610a815760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321022ba3432b960611b60448201526064016108c9565b611cb0848484611a11565b611cbc84848484611e18565b61153d5760405162461bcd60e51b81526004016108c99061268d565b6060600a8054610816906124cd565b606081611d0b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611d355780611d1f816125a1565b9150611d2e9050600a83612623565b9150611d0f565b60008167ffffffffffffffff811115611d5057611d506122ce565b6040519080825280601f01601f191660200182016040528015611d7a576020820181803683370190505b5090505b84156110d257611d8f600183612676565b9150611d9c600a866126df565b611da7906030612589565b60f81b818381518110611dbc57611dbc6126f3565b60200101906001600160f81b031916908160001a905350611dde600a86612623565b9450611d7e565b611def8383611f22565b611dfc6000848484611e18565b610a815760405162461bcd60e51b81526004016108c99061268d565b60006001600160a01b0384163b15611f1a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e5c903390899088908890600401612709565b602060405180830381600087803b158015611e7657600080fd5b505af1925050508015611ea6575060408051601f3d908101601f19168201909252611ea391810190612746565b60015b611f00573d808015611ed4576040519150601f19603f3d011682016040523d82523d6000602084013e611ed9565b606091505b508051611ef85760405162461bcd60e51b81526004016108c99061268d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506110d2565b5060016110d2565b6001600160a01b038216611f785760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108c9565b6000818152600260205260409020546001600160a01b031615611fdd5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108c9565b6001600160a01b0382166000908152600360205260408120805460019290612006908490612589565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612070906124cd565b90600052602060002090601f01602090048101928261209257600085556120d8565b82601f106120ab57805160ff19168380011785556120d8565b828001600101855582156120d8579182015b828111156120d85782518255916020019190600101906120bd565b506120e49291506120e8565b5090565b5b808211156120e457600081556001016120e9565b6001600160a01b038116811461182d57600080fd5b60006020828403121561212457600080fd5b81356116b9816120fd565b6001600160e01b03198116811461182d57600080fd5b60006020828403121561215757600080fd5b81356116b98161212f565b60005b8381101561217d578181015183820152602001612165565b8381111561153d5750506000910152565b600081518084526121a6816020860160208601612162565b601f01601f19169290920160200192915050565b6020815260006116b9602083018461218e565b6000602082840312156121df57600080fd5b5035919050565b600080604083850312156121f957600080fd5b8235612204816120fd565b946020939093013593505050565b803560ff811681146116c057600080fd5b6000806000806080858703121561223957600080fd5b8435935061224960208601612212565b93969395505050506040820135916060013590565b60008060006060848603121561227357600080fd5b833561227e816120fd565b9250602084013561228e816120fd565b929592945050506040919091013590565b600080600080608085870312156122b557600080fd5b84356122c0816120fd565b935061224960208601612212565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff808411156122ff576122ff6122ce565b604051601f8501601f19908116603f01168101908282118183101715612327576123276122ce565b8160405280935085815286868601111561234057600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561236c57600080fd5b813567ffffffffffffffff81111561238357600080fd5b8201601f8101841361239457600080fd5b6110d2848235602084016122e4565b634e487b7160e01b600052602160045260246000fd5b60208101600383106123db57634e487b7160e01b600052602160045260246000fd5b91905290565b600080604083850312156123f457600080fd5b82356123ff816120fd565b91506020830135801515811461241457600080fd5b809150509250929050565b6000806000806080858703121561243557600080fd5b8435612440816120fd565b93506020850135612450816120fd565b925060408501359150606085013567ffffffffffffffff81111561247357600080fd5b8501601f8101871361248457600080fd5b612493878235602084016122e4565b91505092959194509250565b600080604083850312156124b257600080fd5b82356124bd816120fd565b91506020830135612414816120fd565b600181811c908216806124e157607f821691505b6020821081141561250257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602c908201527f4f6e6c7920617661696c61626c6520666f7220746865204f776e6572206f662060408201526b1d1a194810dbdb9d1c9858dd60a21b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561258457612584612554565b500290565b6000821982111561259c5761259c612554565b500190565b60006000198214156125b5576125b5612554565b5060010190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826126325761263261260d565b500490565b60008351612649818460208801612162565b83519083019061265d818360208801612162565b64173539b7b760d91b9101908152600501949350505050565b60008282101561268857612688612554565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6000826126ee576126ee61260d565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061273c9083018461218e565b9695505050505050565b60006020828403121561275857600080fd5b81516116b98161212f56fea2646970667358221220a132b9fee1c808bceff9cc257115c131dd09cf15f24f6097f58145aa20effc5664736f6c63430008090033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000008437265657069657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084372656570696573000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : nombre (string): Creepies
Arg [1] : simbolo (string): Creepies

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [3] : 4372656570696573000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [5] : 4372656570696573000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

35371:6670:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41534:144;;;;;;;;;;-1:-1:-1;41534:144:0;;;;;:::i;:::-;;:::i;23105:305::-;;;;;;;;;;-1:-1:-1;23105:305:0;;;;;:::i;:::-;;:::i;:::-;;;953:14:1;;946:22;928:41;;916:2;901:18;23105:305:0;;;;;;;;24056:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;40344:189::-;;;;;;;;;;;;;:::i;25752:221::-;;;;;;;;;;-1:-1:-1;25752:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2080:32:1;;;2062:51;;2050:2;2035:18;25752:221:0;1916:203:1;25275:411:0;;;;;;;;;;-1:-1:-1;25275:411:0;;;;;:::i;:::-;;:::i;38310:1152::-;;;;;;:::i;:::-;;:::i;41938:89::-;;;;;;;;;;-1:-1:-1;42005:14:0;;41938:89;;;3143:25:1;;;3131:2;3116:18;41938:89:0;2997:177:1;36080:98:0;;;;;;;;;;;;36135:42;36080:98;;26642:339;;;;;;;;;;-1:-1:-1;26642:339:0;;;;;:::i;:::-;;:::i;39474:442::-;;;;;;;;;;;;;:::i;36364:50::-;;;;;;;;;;-1:-1:-1;36364:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;37992:306;;;;;;;;;;-1:-1:-1;37992:306:0;;;;;:::i;:::-;;:::i;36992:206::-;;;;;;;;;;-1:-1:-1;36992:206:0;;;;;:::i;:::-;;:::i;36185:91::-;;;;;;;;;;-1:-1:-1;36185:91:0;;;;-1:-1:-1;;;;;36185:91:0;;;27052:185;;;;;;;;;;-1:-1:-1;27052:185:0;;;;;:::i;:::-;;:::i;35765:98::-;;;;;;;;;;;;35820:42;35765:98;;36473:22;;;;;;;;;;-1:-1:-1;36473:22:0;;;;;;;;;;;;;;;:::i;23750:239::-;;;;;;;;;;-1:-1:-1;23750:239:0;;;;;:::i;:::-;;:::i;35870:98::-;;;;;;;;;;;;35925:42;35870:98;;23480:208;;;;;;;;;;-1:-1:-1;23480:208:0;;;;;:::i;:::-;;:::i;4591:94::-;;;;;;;;;;;;;:::i;35680:36::-;;;;;;;;;;;;35714:2;35680:36;;40771:558;;;;;;;;;;;;;:::i;3940:87::-;;;;;;;;;;-1:-1:-1;4013:6:0;;;;;-1:-1:-1;;;;;4013:6:0;3940:87;;22640:22;;;;;;;;;;-1:-1:-1;22640:22:0;;;;;;;;35569:47;;;;;;;;;;;;35615:1;35569:47;;24225:104;;;;;;;;;;;;;:::i;26045:295::-;;;;;;;;;;-1:-1:-1;26045:295:0;;;;;:::i;:::-;;:::i;35975:98::-;;;;;;;;;;;;36030:42;35975:98;;37337:62;;;;;;;;;;;;37373:10;:18;;-1:-1:-1;;37373:18:0;;;37337:62;40545:214;;;;;;;;;;;;;:::i;27308:328::-;;;;;;;;;;-1:-1:-1;27308:328:0;;;;;:::i;:::-;;:::i;35512:44::-;;;;;;;;;;;;35544:12;35512:44;;24400:471;;;;;;;;;;-1:-1:-1;24400:471:0;;;;;:::i;:::-;;:::i;35623:50::-;;;;;;;;;;;;35672:1;35623:50;;41690:236;;;;;;;;;;-1:-1:-1;41690:236:0;;;;;:::i;:::-;;:::i;26411:164::-;;;;;;;;;;-1:-1:-1;26411:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;26532:25:0;;;26508:4;26532:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26411:164;39928:193;;;;;;;;;;;;;:::i;4840:192::-;;;;;;;;;;-1:-1:-1;4840:192:0;;;;;:::i;:::-;;:::i;35412:26::-;;;;;;;;;;;;;;;;40133:199;;;;;;;;;;;;;:::i;41534:144::-;4013:6;;;;;-1:-1:-1;;;;;4013:6:0;41628:10;:16;;41620:25;;;;;;-1:-1:-1;41656:5:0;:14;;-1:-1:-1;;;;;;41656:14:0;-1:-1:-1;;;;;41656:14:0;;;;;;;;;;41534:144::o;23105:305::-;23207:4;-1:-1:-1;;;;;;23244:40:0;;-1:-1:-1;;;23244:40:0;;:105;;-1:-1:-1;;;;;;;23301:48:0;;-1:-1:-1;;;23301:48:0;23244:105;:158;;;-1:-1:-1;;;;;;;;;;16035:40:0;;;23366:36;23224:178;23105:305;-1:-1:-1;;23105:305:0:o;24056:100::-;24110:13;24143:5;24136:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24056:100;:::o;40344:189::-;4013:6;;;;;-1:-1:-1;;;;;4013:6:0;40423:10;:16;;40415:73;;;;-1:-1:-1;;;40415:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;40511:14:0;;40499:9;:26;40344:189::o;25752:221::-;25828:7;29235:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29235:16:0;25848:73;;;;-1:-1:-1;;;25848:73:0;;8897:2:1;25848:73:0;;;8879:21:1;8936:2;8916:18;;;8909:30;8975:34;8955:18;;;8948:62;-1:-1:-1;;;9026:18:1;;;9019:42;9078:19;;25848:73:0;8695:408:1;25848:73:0;-1:-1:-1;25941:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25941:24:0;;25752:221::o;25275:411::-;25356:13;25372:23;25387:7;25372:14;:23::i;:::-;25356:39;;25420:5;-1:-1:-1;;;;;25414:11:0;:2;-1:-1:-1;;;;;25414:11:0;;;25406:57;;;;-1:-1:-1;;;25406:57:0;;9310:2:1;25406:57:0;;;9292:21:1;9349:2;9329:18;;;9322:30;9388:34;9368:18;;;9361:62;-1:-1:-1;;;9439:18:1;;;9432:31;9480:19;;25406:57:0;9108:397:1;25406:57:0;2808:10;-1:-1:-1;;;;;25498:21:0;;;;:62;;-1:-1:-1;25523:37:0;25540:5;2808:10;26411:164;:::i;25523:37::-;25476:168;;;;-1:-1:-1;;;25476:168:0;;9712:2:1;25476:168:0;;;9694:21:1;9751:2;9731:18;;;9724:30;9790:34;9770:18;;;9763:62;9861:26;9841:18;;;9834:54;9905:19;;25476:168:0;9510:420:1;25476:168:0;25657:21;25666:2;25670:7;25657:8;:21::i;:::-;25345:341;25275:411;;:::o;38310:1152::-;38390:2;38394;38398;37494:41;37515:10;37526:2;37529;37532;37494:20;:41::i;:::-;37485:73;;;;-1:-1:-1;;;37485:73:0;;10137:2:1;37485:73:0;;;10119:21:1;10176:2;10156:18;;;10149:30;-1:-1:-1;;;10195:18:1;;;10188:47;10252:18;;37485:73:0;9935:341:1;37485:73:0;38449:12:::1;38436:9;::::0;::::1;;:25;::::0;::::1;;;;;;:::i;:::-;;;38428:59;;;::::0;-1:-1:-1;;;38428:59:0;;10483:2:1;38428:59:0::1;::::0;::::1;10465:21:1::0;10522:2;10502:18;;;10495:30;-1:-1:-1;;;10541:18:1;;;10534:51;10602:18;;38428:59:0::1;10281:345:1::0;38428:59:0::1;38519:17;38530:6:::0;35544:12:::1;38519:17;:::i;:::-;38506:9;:30;38498:136;;;::::0;-1:-1:-1;;;38498:136:0;;11138:2:1;38498:136:0::1;::::0;::::1;11120:21:1::0;11177:2;11157:18;;;11150:30;11216:34;11196:18;;;11189:62;11287:34;11267:18;;;11260:62;11359:31;11338:19;;;11331:60;11408:19;;38498:136:0::1;10936:497:1::0;38498:136:0::1;38670:9;;38653:14;;:26;38645:61;;;::::0;-1:-1:-1;;;38645:61:0;;11640:2:1;38645:61:0::1;::::0;::::1;11622:21:1::0;11679:2;11659:18;;;11652:30;-1:-1:-1;;;11698:18:1;;;11691:52;11760:18;;38645:61:0::1;11438:346:1::0;38645:61:0::1;38744:13;38731:9;::::0;::::1;;:26;::::0;::::1;;;;;;:::i;:::-;;38727:525;;;35615:1;38782:6;:29;;38774:87;;;::::0;-1:-1:-1;;;38774:87:0;;11991:2:1;38774:87:0::1;::::0;::::1;11973:21:1::0;12030:2;12010:18;;;12003:30;12069:34;12049:18;;;12042:62;-1:-1:-1;;;12120:18:1;;;12113:43;12173:19;;38774:87:0::1;11789:409:1::0;38774:87:0::1;38900:10;38884:27;::::0;;;:15:::1;:27;::::0;;;;;35615:1:::1;::::0;38884:36:::1;::::0;38914:6;;38884:36:::1;:::i;:::-;:59;;38876:110;;;::::0;-1:-1:-1;;;38876:110:0;;12538:2:1;38876:110:0::1;::::0;::::1;12520:21:1::0;12577:2;12557:18;;;12550:30;12616:34;12596:18;;;12589:62;-1:-1:-1;;;12667:18:1;;;12660:36;12713:19;;38876:110:0::1;12336:402:1::0;38876:110:0::1;38727:525;;;35672:1;39036:6;:32;;39028:94;;;::::0;-1:-1:-1;;;39028:94:0;;12945:2:1;39028:94:0::1;::::0;::::1;12927:21:1::0;12984:2;12964:18;;;12957:30;13023:34;13003:18;;;12996:62;-1:-1:-1;;;13074:18:1;;;13067:47;13131:19;;39028:94:0::1;12743:413:1::0;39028:94:0::1;39161:10;39145:27;::::0;;;:15:::1;:27;::::0;;;;;35714:2:::1;::::0;39145:36:::1;::::0;39175:6;;39145:36:::1;:::i;:::-;:47;;39137:103;;;::::0;-1:-1:-1;;;39137:103:0;;13363:2:1;39137:103:0::1;::::0;::::1;13345:21:1::0;13402:2;13382:18;;;13375:30;13441:34;13421:18;;;13414:62;-1:-1:-1;;;13492:18:1;;;13485:41;13543:19;;39137:103:0::1;13161:407:1::0;39137:103:0::1;39281:9;39276:175;39300:6;39296:1;:10;39276:175;;;39328:11;39342:9;:7;:9::i;:::-;39328:23;;39366:26;39376:10;39388:3;39366:9;:26::i;:::-;39423:10;39407:27;::::0;;;:15:::1;:27;::::0;;;;:32;;39438:1:::1;::::0;39407:27;:32:::1;::::0;39438:1;;39407:32:::1;:::i;:::-;::::0;;;-1:-1:-1;39308:3:0;;-1:-1:-1;39308:3:0::1;::::0;-1:-1:-1;39308:3:0;::::1;:::i;:::-;;;;39276:175;;;;38310:1152:::0;;;;;;;:::o;26642:339::-;26837:41;2808:10;26870:7;26837:18;:41::i;:::-;26829:103;;;;-1:-1:-1;;;26829:103:0;;;;;;;:::i;:::-;26945:28;26955:4;26961:2;26965:7;26945:9;:28::i;39474:442::-;4013:6;;;;;-1:-1:-1;;;;;4013:6:0;39553:10;:16;;39545:73;;;;-1:-1:-1;;;39545:73:0;;;;;;;:::i;:::-;39652:1;39637:12;;:16;39629:62;;;;-1:-1:-1;;;39629:62:0;;14333:2:1;39629:62:0;;;14315:21:1;14372:2;14352:18;;;14345:30;14411:34;14391:18;;;14384:62;-1:-1:-1;;;14462:18:1;;;14455:31;14503:19;;39629:62:0;14131:397:1;39629:62:0;39707:9;39702:179;39726:2;39722:1;:6;39702:179;;;39750:11;39764:9;:7;:9::i;:::-;39798:14;;39750:23;;-1:-1:-1;39788:30:0;;-1:-1:-1;;;;;39798:14:0;39750:23;39788:9;:30::i;:::-;39849:14;;-1:-1:-1;;;;;39849:14:0;39833:31;;;;:15;:31;;;;;:36;;39868:1;;39833:31;:36;;39868:1;;39833:36;:::i;:::-;;;;-1:-1:-1;39730:3:0;;-1:-1:-1;39730:3:0;;-1:-1:-1;39730:3:0;;:::i;:::-;;;;39702:179;;;;39907:1;39891:12;;:17;;;;;;;:::i;:::-;;;;-1:-1:-1;;;39474:442:0:o;37992:306::-;38133:37;;-1:-1:-1;;38158:4:0;14760:2:1;14756:15;;;14752:24;;38133:37:0;;;14740::1;14811:15;;;14807:24;14793:12;;;14786:46;38091:4:0;;;;14848:12:1;;38133:37:0;;;;;;;;;;;;38123:48;;;;;;38108:63;;38198:92;38271:4;38218:58;;;;;;;15113:66:1;15101:79;;15205:2;15196:12;;15189:28;;;;15242:2;15233:12;;14871:380;38218:58:0;;;;-1:-1:-1;;38218:58:0;;;;;;;;;38208:69;;38218:58;38208:69;;;;38198:92;;;;;;;;;15483:25:1;15556:4;15544:17;;15524:18;;;15517:45;15578:18;;;15571:34;;;15621:18;;;15614:34;;;15455:19;;38198:92:0;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;38198:92:0;;-1:-1:-1;;38198:92:0;;38189:5;;-1:-1:-1;;;;;38189:5:0;;;:101;;;;-1:-1:-1;;;37992:306:0;;;;;;;:::o;36992:206::-;4013:6;;;;;-1:-1:-1;;;;;4013:6:0;37096:10;:16;;37088:73;;;;-1:-1:-1;;;37088:73:0;;;;;;;:::i;:::-;37172:18;;;;:7;;:18;;;;;:::i;27052:185::-;27190:39;27207:4;27213:2;27217:7;27190:39;;;;;;;;;;;;:16;:39::i;23750:239::-;23822:7;23858:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23858:16:0;23893:19;23885:73;;;;-1:-1:-1;;;23885:73:0;;15861:2:1;23885:73:0;;;15843:21:1;15900:2;15880:18;;;15873:30;15939:34;15919:18;;;15912:62;-1:-1:-1;;;15990:18:1;;;15983:39;16039:19;;23885:73:0;15659:405:1;23480:208:0;23552:7;-1:-1:-1;;;;;23580:19:0;;23572:74;;;;-1:-1:-1;;;23572:74:0;;16271:2:1;23572:74:0;;;16253:21:1;16310:2;16290:18;;;16283:30;16349:34;16329:18;;;16322:62;-1:-1:-1;;;16400:18:1;;;16393:40;16450:19;;23572:74:0;16069:406:1;23572:74:0;-1:-1:-1;;;;;;23664:16:0;;;;;:9;:16;;;;;;;23480:208::o;4591:94::-;4013:6;;-1:-1:-1;;;;;4013:6:0;;;;;2808:10;4160:23;4152:68;;;;-1:-1:-1;;;4152:68:0;;16682:2:1;4152:68:0;;;16664:21:1;;;16701:18;;;16694:30;16760:34;16740:18;;;16733:62;16812:18;;4152:68:0;16480:356:1;4152:68:0;4656:21:::1;4674:1;4656:9;:21::i;:::-;4591:94::o:0;40771:558::-;4013:6;;;;;-1:-1:-1;;;;;4013:6:0;40851:10;:16;;40843:73;;;;-1:-1:-1;;;40843:73:0;;;;;;;:::i;:::-;40929:12;40944:16;:14;:16::i;:::-;40929:31;;40989:1;40979:7;:11;40971:54;;;;-1:-1:-1;;;40971:54:0;;17043:2:1;40971:54:0;;;17025:21:1;17082:2;17062:18;;;17055:30;17121:32;17101:18;;;17094:60;17171:18;;40971:54:0;16841:354:1;40971:54:0;41046:46;35820:42;41087:3;41071:12;:7;41081:2;41071:12;:::i;:::-;41070:20;;;;:::i;:::-;41046:8;:46::i;:::-;41103;35925:42;41144:3;41128:12;:7;41138:2;41128:12;:::i;41103:46::-;41160;36030:42;41201:3;41185:12;:7;41195:2;41185:12;:::i;41160:46::-;41217;36135:42;41258:3;41242:12;:7;41252:2;41242:12;:::i;41217:46::-;41283:14;;41274:47;;-1:-1:-1;;;;;41283:14:0;41299:21;41274:8;:47::i;:::-;40801:528;;40771:558::o;24225:104::-;24281:13;24314:7;24307:14;;;;;:::i;26045:295::-;-1:-1:-1;;;;;26148:24:0;;2808:10;26148:24;;26140:62;;;;-1:-1:-1;;;26140:62:0;;17659:2:1;26140:62:0;;;17641:21:1;17698:2;17678:18;;;17671:30;17737:27;17717:18;;;17710:55;17782:18;;26140:62:0;17457:349:1;26140:62:0;2808:10;26215:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;26215:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;26215:53:0;;;;;;;;;;26284:48;;928:41:1;;;26215:42:0;;2808:10;26284:48;;901:18:1;26284:48:0;;;;;;;26045:295;;:::o;40545:214::-;40591:4;40608:10;40621:7;4013:6;;-1:-1:-1;;;;;4013:6:0;;;;;;3940:87;40621:7;40608:20;-1:-1:-1;40647:10:0;-1:-1:-1;;;;;40647:16:0;;;40639:73;;;;-1:-1:-1;;;40639:73:0;;;;;;;:::i;:::-;40730:21;40723:28;;;40545:214;:::o;27308:328::-;27483:41;2808:10;27516:7;27483:18;:41::i;:::-;27475:103;;;;-1:-1:-1;;;27475:103:0;;;;;;;:::i;:::-;27589:39;27603:4;27609:2;27613:7;27622:5;27589:13;:39::i;:::-;27308:328;;;;:::o;24400:471::-;29211:4;29235:16;;;:7;:16;;;;;;24473:13;;-1:-1:-1;;;;;29235:16:0;24499:76;;;;-1:-1:-1;;;24499:76:0;;18013:2:1;24499:76:0;;;17995:21:1;18052:2;18032:18;;;18025:30;18091:34;18071:18;;;18064:62;-1:-1:-1;;;18142:18:1;;;18135:45;18197:19;;24499:76:0;17811:411:1;24499:76:0;24600:10;;;;:18;;:10;:18;24596:264;;;24642:13;24635:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24400:471;;;:::o;24596:264::-;24697:21;24721:10;:8;:10::i;:::-;24697:34;;24777:1;24759:7;24753:21;:25;:95;;;;;;;;;;;;;;;;;24805:7;24814:18;:7;:16;:18::i;:::-;24788:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24753:95;24746:102;24400:471;-1:-1:-1;;;24400:471:0:o;24596:264::-;24400:471;;;:::o;41690:236::-;4013:6;;;;;-1:-1:-1;;;;;4013:6:0;41810:10;:16;;41802:73;;;;-1:-1:-1;;;41802:73:0;;;;;;;:::i;:::-;-1:-1:-1;41886:14:0;:32;;-1:-1:-1;;;;;;41886:32:0;-1:-1:-1;;;;;41886:32:0;;;;;;;;;;41690:236::o;39928:193::-;4013:6;;;;;-1:-1:-1;;;;;4013:6:0;40012:10;:16;;40004:73;;;;-1:-1:-1;;;40004:73:0;;;;;;;:::i;:::-;40088:9;:25;;40100:13;;40088:9;-1:-1:-1;;40088:25:0;40100:13;;40088:25;;;;;;39962:159;39928:193::o;4840:192::-;4013:6;;-1:-1:-1;;;;;4013:6:0;;;;;2808:10;4160:23;4152:68;;;;-1:-1:-1;;;4152:68:0;;16682:2:1;4152:68:0;;;16664:21:1;;;16701:18;;;16694:30;16760:34;16740:18;;;16733:62;16812:18;;4152:68:0;16480:356:1;4152:68:0;-1:-1:-1;;;;;4929:22:0;::::1;4921:73;;;::::0;-1:-1:-1;;;4921:73:0;;19071:2:1;4921:73:0::1;::::0;::::1;19053:21:1::0;19110:2;19090:18;;;19083:30;19149:34;19129:18;;;19122:62;-1:-1:-1;;;19200:18:1;;;19193:36;19246:19;;4921:73:0::1;18869:402:1::0;4921:73:0::1;5005:19;5015:8;5005:9;:19::i;:::-;4840:192:::0;:::o;40133:199::-;4013:6;;;;;-1:-1:-1;;;;;4013:6:0;40220:10;:16;;40212:73;;;;-1:-1:-1;;;40212:73:0;;;;;;;:::i;:::-;40296:9;:28;;40308:16;;40296:9;-1:-1:-1;;40296:28:0;;40308:16;40296:28;;33128:174;33203:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33203:29:0;-1:-1:-1;;;;;33203:29:0;;;;;;;;:24;;33257:23;33203:24;33257:14;:23::i;:::-;-1:-1:-1;;;;;33248:46:0;;;;;;;;;;;33128:174;;:::o;37210:115::-;37246:7;37284:1;37266:14;;:19;;;;;;;:::i;:::-;;;;-1:-1:-1;;37303:14:0;;;37210:115;-1:-1:-1;37210:115:0:o;30130:110::-;30206:26;30216:2;30220:7;30206:26;;;;;;;;;;;;:9;:26::i;29440:348::-;29533:4;29235:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29235:16:0;29550:73;;;;-1:-1:-1;;;29550:73:0;;19478:2:1;29550:73:0;;;19460:21:1;19517:2;19497:18;;;19490:30;19556:34;19536:18;;;19529:62;-1:-1:-1;;;19607:18:1;;;19600:42;19659:19;;29550:73:0;19276:408:1;29550:73:0;29634:13;29650:23;29665:7;29650:14;:23::i;:::-;29634:39;;29703:5;-1:-1:-1;;;;;29692:16:0;:7;-1:-1:-1;;;;;29692:16:0;;:51;;;;29736:7;-1:-1:-1;;;;;29712:31:0;:20;29724:7;29712:11;:20::i;:::-;-1:-1:-1;;;;;29712:31:0;;29692:51;:87;;;-1:-1:-1;;;;;;26532:25:0;;;26508:4;26532:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;29747:32;26411:164;32432:578;32591:4;-1:-1:-1;;;;;32564:31:0;:23;32579:7;32564:14;:23::i;:::-;-1:-1:-1;;;;;32564:31:0;;32556:85;;;;-1:-1:-1;;;32556:85:0;;19891:2:1;32556:85:0;;;19873:21:1;19930:2;19910:18;;;19903:30;19969:34;19949:18;;;19942:62;-1:-1:-1;;;20020:18:1;;;20013:39;20069:19;;32556:85:0;19689:405:1;32556:85:0;-1:-1:-1;;;;;32660:16:0;;32652:65;;;;-1:-1:-1;;;32652:65:0;;20301:2:1;32652:65:0;;;20283:21:1;20340:2;20320:18;;;20313:30;20379:34;20359:18;;;20352:62;-1:-1:-1;;;20430:18:1;;;20423:34;20474:19;;32652:65:0;20099:400:1;32652:65:0;32834:29;32851:1;32855:7;32834:8;:29::i;:::-;-1:-1:-1;;;;;32876:15:0;;;;;;:9;:15;;;;;:20;;32895:1;;32876:15;:20;;32895:1;;32876:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32907:13:0;;;;;;:9;:13;;;;;:18;;32924:1;;32907:13;:18;;32924:1;;32907:18;:::i;:::-;;;;-1:-1:-1;;32936:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32936:21:0;-1:-1:-1;;;;;32936:21:0;;;;;;;;;32975:27;;32936:16;;32975:27;;;;;;;32432:578;;;:::o;5040:173::-;5115:6;;;-1:-1:-1;;;;;5132:17:0;;;5115:6;5132:17;;;-1:-1:-1;;;;;;5132:17:0;;;;;;5165:40;;5115:6;;;;;;;;5165:40;;5096:16;;5165:40;5085:128;5040:173;:::o;41341:181::-;41419:9;41434:8;-1:-1:-1;;;;;41434:13:0;41455:6;41434:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41418:48;;;41485:4;41477:37;;;;-1:-1:-1;;;41477:37:0;;21046:2:1;41477:37:0;;;21028:21:1;21085:2;21065:18;;;21058:30;-1:-1:-1;;;21104:18:1;;;21097:50;21164:18;;41477:37:0;20844:344:1;28518:315:0;28675:28;28685:4;28691:2;28695:7;28675:9;:28::i;:::-;28722:48;28745:4;28751:2;28755:7;28764:5;28722:22;:48::i;:::-;28714:111;;;;-1:-1:-1;;;28714:111:0;;;;;;;:::i;36866:108::-;36926:13;36959:7;36952:14;;;;;:::i;344:723::-;400:13;621:10;617:53;;-1:-1:-1;;648:10:0;;;;;;;;;;;;-1:-1:-1;;;648:10:0;;;;;344:723::o;617:53::-;695:5;680:12;736:78;743:9;;736:78;;769:8;;;;:::i;:::-;;-1:-1:-1;792:10:0;;-1:-1:-1;800:2:0;792:10;;:::i;:::-;;;736:78;;;824:19;856:6;846:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;846:17:0;;824:39;;874:154;881:10;;874:154;;908:11;918:1;908:11;;:::i;:::-;;-1:-1:-1;977:10:0;985:2;977:5;:10;:::i;:::-;964:24;;:2;:24;:::i;:::-;951:39;;934:6;941;934:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;934:56:0;;;;;;;;-1:-1:-1;1005:11:0;1014:2;1005:11;;:::i;:::-;;;874:154;;30467:321;30597:18;30603:2;30607:7;30597:5;:18::i;:::-;30648:54;30679:1;30683:2;30687:7;30696:5;30648:22;:54::i;:::-;30626:154;;;;-1:-1:-1;;;30626:154:0;;;;;;;:::i;33867:799::-;34022:4;-1:-1:-1;;;;;34043:13:0;;6309:20;6357:8;34039:620;;34079:72;;-1:-1:-1;;;34079:72:0;;-1:-1:-1;;;;;34079:36:0;;;;;:72;;2808:10;;34130:4;;34136:7;;34145:5;;34079:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34079:72:0;;;;;;;;-1:-1:-1;;34079:72:0;;;;;;;;;;;;:::i;:::-;;;34075:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34321:13:0;;34317:272;;34364:60;;-1:-1:-1;;;34364:60:0;;;;;;;:::i;34317:272::-;34539:6;34533:13;34524:6;34520:2;34516:15;34509:38;34075:529;-1:-1:-1;;;;;;34202:51:0;-1:-1:-1;;;34202:51:0;;-1:-1:-1;34195:58:0;;34039:620;-1:-1:-1;34643:4:0;34636:11;;31124:382;-1:-1:-1;;;;;31204:16:0;;31196:61;;;;-1:-1:-1;;;31196:61:0;;22811:2:1;31196:61:0;;;22793:21:1;;;22830:18;;;22823:30;22889:34;22869:18;;;22862:62;22941:18;;31196:61:0;22609:356:1;31196:61:0;29211:4;29235:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29235:16:0;:30;31268:58;;;;-1:-1:-1;;;31268:58:0;;23172:2:1;31268:58:0;;;23154:21:1;23211:2;23191:18;;;23184:30;23250;23230:18;;;23223:58;23298:18;;31268:58:0;22970:352:1;31268:58:0;-1:-1:-1;;;;;31397:13:0;;;;;;:9;:13;;;;;:18;;31414:1;;31397:13;:18;;31414:1;;31397:18;:::i;:::-;;;;-1:-1:-1;;31426:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31426:21:0;-1:-1:-1;;;;;31426:21:0;;;;;;;;31465:33;;31426:16;;;31465:33;;31426:16;;31465:33;31124:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;89:31:1;;79:42;;69:70;;135:1;132;125:12;150:247;209:6;262:2;250:9;241:7;237:23;233:32;230:52;;;278:1;275;268:12;230:52;317:9;304:23;336:31;361:5;336:31;:::i;402:131::-;-1:-1:-1;;;;;;476:32:1;;466:43;;456:71;;523:1;520;513:12;538:245;596:6;649:2;637:9;628:7;624:23;620:32;617:52;;;665:1;662;655:12;617:52;704:9;691:23;723:30;747:5;723:30;:::i;980:258::-;1052:1;1062:113;1076:6;1073:1;1070:13;1062:113;;;1152:11;;;1146:18;1133:11;;;1126:39;1098:2;1091:10;1062:113;;;1193:6;1190:1;1187:13;1184:48;;;-1:-1:-1;;1228:1:1;1210:16;;1203:27;980:258::o;1243:::-;1285:3;1323:5;1317:12;1350:6;1345:3;1338:19;1366:63;1422:6;1415:4;1410:3;1406:14;1399:4;1392:5;1388:16;1366:63;:::i;:::-;1483:2;1462:15;-1:-1:-1;;1458:29:1;1449:39;;;;1490:4;1445:50;;1243:258;-1:-1:-1;;1243:258:1:o;1506:220::-;1655:2;1644:9;1637:21;1618:4;1675:45;1716:2;1705:9;1701:18;1693:6;1675:45;:::i;1731:180::-;1790:6;1843:2;1831:9;1822:7;1818:23;1814:32;1811:52;;;1859:1;1856;1849:12;1811:52;-1:-1:-1;1882:23:1;;1731:180;-1:-1:-1;1731:180:1:o;2124:315::-;2192:6;2200;2253:2;2241:9;2232:7;2228:23;2224:32;2221:52;;;2269:1;2266;2259:12;2221:52;2308:9;2295:23;2327:31;2352:5;2327:31;:::i;:::-;2377:5;2429:2;2414:18;;;;2401:32;;-1:-1:-1;;;2124:315:1:o;2444:156::-;2510:20;;2570:4;2559:16;;2549:27;;2539:55;;2590:1;2587;2580:12;2605:387;2689:6;2697;2705;2713;2766:3;2754:9;2745:7;2741:23;2737:33;2734:53;;;2783:1;2780;2773:12;2734:53;2819:9;2806:23;2796:33;;2848:36;2880:2;2869:9;2865:18;2848:36;:::i;:::-;2605:387;;2838:46;;-1:-1:-1;;;;2931:2:1;2916:18;;2903:32;;2982:2;2967:18;2954:32;;2605:387::o;3403:456::-;3480:6;3488;3496;3549:2;3537:9;3528:7;3524:23;3520:32;3517:52;;;3565:1;3562;3555:12;3517:52;3604:9;3591:23;3623:31;3648:5;3623:31;:::i;:::-;3673:5;-1:-1:-1;3730:2:1;3715:18;;3702:32;3743:33;3702:32;3743:33;:::i;:::-;3403:456;;3795:7;;-1:-1:-1;;;3849:2:1;3834:18;;;;3821:32;;3403:456::o;3864:454::-;3948:6;3956;3964;3972;4025:3;4013:9;4004:7;4000:23;3996:33;3993:53;;;4042:1;4039;4032:12;3993:53;4081:9;4068:23;4100:31;4125:5;4100:31;:::i;:::-;4150:5;-1:-1:-1;4174:36:1;4206:2;4191:18;;4174:36;:::i;4323:127::-;4384:10;4379:3;4375:20;4372:1;4365:31;4415:4;4412:1;4405:15;4439:4;4436:1;4429:15;4455:632;4520:5;4550:18;4591:2;4583:6;4580:14;4577:40;;;4597:18;;:::i;:::-;4672:2;4666:9;4640:2;4726:15;;-1:-1:-1;;4722:24:1;;;4748:2;4718:33;4714:42;4702:55;;;4772:18;;;4792:22;;;4769:46;4766:72;;;4818:18;;:::i;:::-;4858:10;4854:2;4847:22;4887:6;4878:15;;4917:6;4909;4902:22;4957:3;4948:6;4943:3;4939:16;4936:25;4933:45;;;4974:1;4971;4964:12;4933:45;5024:6;5019:3;5012:4;5004:6;5000:17;4987:44;5079:1;5072:4;5063:6;5055;5051:19;5047:30;5040:41;;;;4455:632;;;;;:::o;5092:451::-;5161:6;5214:2;5202:9;5193:7;5189:23;5185:32;5182:52;;;5230:1;5227;5220:12;5182:52;5270:9;5257:23;5303:18;5295:6;5292:30;5289:50;;;5335:1;5332;5325:12;5289:50;5358:22;;5411:4;5403:13;;5399:27;-1:-1:-1;5389:55:1;;5440:1;5437;5430:12;5389:55;5463:74;5529:7;5524:2;5511:16;5506:2;5502;5498:11;5463:74;:::i;5548:127::-;5609:10;5604:3;5600:20;5597:1;5590:31;5640:4;5637:1;5630:15;5664:4;5661:1;5654:15;5680:338;5822:2;5807:18;;5855:1;5844:13;;5834:144;;5900:10;5895:3;5891:20;5888:1;5881:31;5935:4;5932:1;5925:15;5963:4;5960:1;5953:15;5834:144;5987:25;;;5680:338;:::o;6023:416::-;6088:6;6096;6149:2;6137:9;6128:7;6124:23;6120:32;6117:52;;;6165:1;6162;6155:12;6117:52;6204:9;6191:23;6223:31;6248:5;6223:31;:::i;:::-;6273:5;-1:-1:-1;6330:2:1;6315:18;;6302:32;6372:15;;6365:23;6353:36;;6343:64;;6403:1;6400;6393:12;6343:64;6426:7;6416:17;;;6023:416;;;;;:::o;6444:795::-;6539:6;6547;6555;6563;6616:3;6604:9;6595:7;6591:23;6587:33;6584:53;;;6633:1;6630;6623:12;6584:53;6672:9;6659:23;6691:31;6716:5;6691:31;:::i;:::-;6741:5;-1:-1:-1;6798:2:1;6783:18;;6770:32;6811:33;6770:32;6811:33;:::i;:::-;6863:7;-1:-1:-1;6917:2:1;6902:18;;6889:32;;-1:-1:-1;6972:2:1;6957:18;;6944:32;6999:18;6988:30;;6985:50;;;7031:1;7028;7021:12;6985:50;7054:22;;7107:4;7099:13;;7095:27;-1:-1:-1;7085:55:1;;7136:1;7133;7126:12;7085:55;7159:74;7225:7;7220:2;7207:16;7202:2;7198;7194:11;7159:74;:::i;:::-;7149:84;;;6444:795;;;;;;;:::o;7504:388::-;7572:6;7580;7633:2;7621:9;7612:7;7608:23;7604:32;7601:52;;;7649:1;7646;7639:12;7601:52;7688:9;7675:23;7707:31;7732:5;7707:31;:::i;:::-;7757:5;-1:-1:-1;7814:2:1;7799:18;;7786:32;7827:33;7786:32;7827:33;:::i;7897:380::-;7976:1;7972:12;;;;8019;;;8040:61;;8094:4;8086:6;8082:17;8072:27;;8040:61;8147:2;8139:6;8136:14;8116:18;8113:38;8110:161;;;8193:10;8188:3;8184:20;8181:1;8174:31;8228:4;8225:1;8218:15;8256:4;8253:1;8246:15;8110:161;;7897:380;;;:::o;8282:408::-;8484:2;8466:21;;;8523:2;8503:18;;;8496:30;8562:34;8557:2;8542:18;;8535:62;-1:-1:-1;;;8628:2:1;8613:18;;8606:42;8680:3;8665:19;;8282:408::o;10631:127::-;10692:10;10687:3;10683:20;10680:1;10673:31;10723:4;10720:1;10713:15;10747:4;10744:1;10737:15;10763:168;10803:7;10869:1;10865;10861:6;10857:14;10854:1;10851:21;10846:1;10839:9;10832:17;10828:45;10825:71;;;10876:18;;:::i;:::-;-1:-1:-1;10916:9:1;;10763:168::o;12203:128::-;12243:3;12274:1;12270:6;12267:1;12264:13;12261:39;;;12280:18;;:::i;:::-;-1:-1:-1;12316:9:1;;12203:128::o;13573:135::-;13612:3;-1:-1:-1;;13633:17:1;;13630:43;;;13653:18;;:::i;:::-;-1:-1:-1;13700:1:1;13689:13;;13573:135::o;13713:413::-;13915:2;13897:21;;;13954:2;13934:18;;;13927:30;13993:34;13988:2;13973:18;;13966:62;-1:-1:-1;;;14059:2:1;14044:18;;14037:47;14116:3;14101:19;;13713:413::o;17200:127::-;17261:10;17256:3;17252:20;17249:1;17242:31;17292:4;17289:1;17282:15;17316:4;17313:1;17306:15;17332:120;17372:1;17398;17388:35;;17403:18;;:::i;:::-;-1:-1:-1;17437:9:1;;17332:120::o;18227:637::-;18507:3;18545:6;18539:13;18561:53;18607:6;18602:3;18595:4;18587:6;18583:17;18561:53;:::i;:::-;18677:13;;18636:16;;;;18699:57;18677:13;18636:16;18733:4;18721:17;;18699:57;:::i;:::-;-1:-1:-1;;;18778:20:1;;18807:22;;;18856:1;18845:13;;18227:637;-1:-1:-1;;;;18227:637:1:o;20504:125::-;20544:4;20572:1;20569;20566:8;20563:34;;;20577:18;;:::i;:::-;-1:-1:-1;20614:9:1;;20504:125::o;21193:414::-;21395:2;21377:21;;;21434:2;21414:18;;;21407:30;21473:34;21468:2;21453:18;;21446:62;-1:-1:-1;;;21539:2:1;21524:18;;21517:48;21597:3;21582:19;;21193:414::o;21612:112::-;21644:1;21670;21660:35;;21675:18;;:::i;:::-;-1:-1:-1;21709:9:1;;21612:112::o;21729:127::-;21790:10;21785:3;21781:20;21778:1;21771:31;21821:4;21818:1;21811:15;21845:4;21842:1;21835:15;21861:489;-1:-1:-1;;;;;22130:15:1;;;22112:34;;22182:15;;22177:2;22162:18;;22155:43;22229:2;22214:18;;22207:34;;;22277:3;22272:2;22257:18;;22250:31;;;22055:4;;22298:46;;22324:19;;22316:6;22298:46;:::i;:::-;22290:54;21861:489;-1:-1:-1;;;;;;21861:489:1:o;22355:249::-;22424:6;22477:2;22465:9;22456:7;22452:23;22448:32;22445:52;;;22493:1;22490;22483:12;22445:52;22525:9;22519:16;22544:30;22568:5;22544:30;:::i

Swarm Source

ipfs://a132b9fee1c808bceff9cc257115c131dd09cf15f24f6097f58145aa20effc56
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.