ETH Price: $3,387.49 (-1.58%)
Gas: 2 Gwei

Token

Five Penguins (5P)
 

Overview

Max Total Supply

3,125 5P

Holders

1,161

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 5P
0x47c2ac06520722aaa3e32d99ec6a2352b48b1b8a
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
FivePenguins

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-12-17
*/

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

// File: @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/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/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: @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;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


pragma solidity ^0.8.0;

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

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

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

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

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

}

// File: @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/ERC721.sol


pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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


pragma solidity ^0.8.0;

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

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

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


pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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


pragma solidity ^0.8.0;

contract FivePenguins is ERC721, ReentrancyGuard {
    address public immutable owner;
    uint256 public constant MAX_SUPPLY = 3125;
    uint256 public price = 1 ether / 20;
    bool public presaleEnabled;
    bool public saleEnabled;
    mapping (address => bool) public admins;
    bool private adminsLocked;
    mapping (address => bool) public whitelist;
    mapping (address => bool) public freeMintClaimed;
    uint256 public totalSupply;
    string private uri;

    constructor(string memory name, string memory symbol, string memory _uri) ERC721(name, symbol) {
        owner = msg.sender;
        uri = _uri;
    }

    function baseURI() public view returns (string memory) {
        return _baseURI();
    }
  
    function _baseURI() internal view override returns (string memory) {
        return uri;
    }

    function canClaimFreeMint(address claimer) public view returns (bool) {
        return whitelist[claimer] && !freeMintClaimed[claimer];
    }

    function soldOut() public view returns (bool) {
        return totalSupply >= MAX_SUPPLY;
    }

    function mint(uint256 amountToBuy) public payable nonReentrant {
        bool onWhitelist = whitelist[msg.sender];
        bool _canClaimFreeMint = onWhitelist && !freeMintClaimed[msg.sender];

        require(totalSupply < MAX_SUPPLY, "No more penguins!");

        if (!saleEnabled && presaleEnabled) {
            require(onWhitelist, "Address not whitelisted");
        } else {
            require(saleEnabled, "Minting disabled");
        }

        require(amountToBuy > 0 && amountToBuy <= 10, "Invalid amount");

        // Validate sent ETH amount
        if (_canClaimFreeMint) {
            require(msg.value == price * (amountToBuy - 1), "Invalid amount of ether for amount to buy");
            freeMintClaimed[msg.sender] = true;
        } else {
            require(msg.value == price * amountToBuy, "Invalid amount of ether for amount to buy");
        }

        for (uint256 tokensLeftToMint = amountToBuy; tokensLeftToMint != 0; tokensLeftToMint--) {
            _mint(msg.sender, ++totalSupply);
            if (totalSupply == MAX_SUPPLY) {
                saleEnabled = false;
                presaleEnabled = false;
                if (_canClaimFreeMint && (amountToBuy - tokensLeftToMint - 1) > 0) {
                    payable(msg.sender).transfer((amountToBuy - tokensLeftToMint - 1) * price);
                } else if (!_canClaimFreeMint) {
                    payable(msg.sender).transfer((amountToBuy - tokensLeftToMint) * price);
                }
                break;
            }
        }
    }

    function withdraw() public {
        require(msg.sender == owner || admins[msg.sender], "Only owner or admin can withdraw");
        payable(owner).transfer(address(this).balance);
    }

    function setPresaleEnabled(bool to) external {
        require(msg.sender == owner || admins[msg.sender], "Only owner or admin can change presale state");
        require(!saleEnabled, "Cannot change presale state while public sale is live");
        require(totalSupply != MAX_SUPPLY, "Cannot change presale state after selling out");
        presaleEnabled = to;
    }

    function setSaleEnabled(bool to) external {
        require(msg.sender == owner || admins[msg.sender], "Only owner or admin can change sale state");
        require(presaleEnabled, "Presale must be live in order to turn on public sale");
        require(totalSupply != MAX_SUPPLY, "Cannot change sale state after selling out");
        saleEnabled = to;
    }

    function setPrice(uint256 to) external {
        require(msg.sender == owner || admins[msg.sender], "Only owner or admin can set prices");
        price = to;
    }

    function addToWhitelist(address[] calldata addresses) external {
        require(msg.sender == owner || admins[msg.sender], "Only owner or admin can add to whitelist");
        for (uint i = 0; i < addresses.length; i++) {
            whitelist[addresses[i]] = true;
        }
    }

    function removeFromWhitelist(address[] calldata addresses) external {
        require(msg.sender == owner || admins[msg.sender], "Only owner or admin can remove from whitelist");
        for (uint i = 0; i < addresses.length; i++) {
            whitelist[addresses[i]] = false;
        }
    }

    function addAdmins(address[] calldata addresses) external {
        require(msg.sender == owner, "Only owner can add administrators");
        require(!adminsLocked, "Cannot change administrators while locked");
        for (uint i = 0; i < addresses.length; i++) {
            admins[addresses[i]] = true;
        }
    }

    function removeAdmins(address[] calldata addresses) external {
        require(msg.sender == owner, "Only owner can remove administrators");
        require(!adminsLocked, "Cannot change administrators while locked");
        for (uint i = 0; i < addresses.length; i++) {
            admins[addresses[i]] = false;
        }
    }

    function setAdminsLock(bool to) external {
        require(msg.sender == owner, "Only owner can set admin lock state");
        adminsLocked = to;
    }

    function tokenOwners(uint256 startAt, uint256 limit) public view returns (address[] memory, uint256) {
        address[] memory addresses = new address[](limit);
        uint256 length = 0;
        for (uint256 i = 0; i < limit && i + startAt <= totalSupply; i++) {
            addresses[i] = ownerOf(startAt + i);
            length++;
        }
        return (addresses, length);
    }

    function airdrop(address[] calldata addresses) external {
        require(msg.sender == owner, "Only owner can airdrop");
        for (uint256 i = 0; i < addresses.length; i++) {
            _mint(addresses[i], i + 1);
            totalSupply++;
        }
    }
    
    function setFreeMintClaimed(address[] calldata addresses) external {
        require(msg.sender == owner, "Only owner can setFreeMintClaimed");
        for (uint256 i = 0; i < addresses.length; i++) {
            freeMintClaimed[addresses[i]] = true;
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"_uri","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addAdmins","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"admins","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"claimer","type":"address"}],"name":"canClaimFreeMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMintClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountToBuy","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeAdmins","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromWhitelist","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":"saleEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"to","type":"bool"}],"name":"setAdminsLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"setFreeMintClaimed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"to","type":"bool"}],"name":"setPresaleEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"to","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"to","type":"bool"}],"name":"setSaleEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"soldOut","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"startAt","type":"uint256"},{"internalType":"uint256","name":"limit","type":"uint256"}],"name":"tokenOwners","outputs":[{"internalType":"address[]","name":"","type":"address[]"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a060405266b1a2bc2ec500006007553480156200001c57600080fd5b5060405162002dbd38038062002dbd8339810160408190526200003f91620001f9565b825183908390620000589060009060208501906200009c565b5080516200006e9060019060208401906200009c565b50506001600655503360601b60805280516200009290600e9060208401906200009c565b50505050620002dd565b828054620000aa906200028a565b90600052602060002090601f016020900481019282620000ce576000855562000119565b82601f10620000e957805160ff191683800117855562000119565b8280016001018555821562000119579182015b8281111562000119578251825591602001919060010190620000fc565b50620001279291506200012b565b5090565b5b808211156200012757600081556001016200012c565b600082601f8301126200015457600080fd5b81516001600160401b0380821115620001715762000171620002c7565b604051601f8301601f19908116603f011681019082821181831017156200019c576200019c620002c7565b81604052838152602092508683858801011115620001b957600080fd5b600091505b83821015620001dd5785820183015181830184015290820190620001be565b83821115620001ef5760008385830101525b9695505050505050565b6000806000606084860312156200020f57600080fd5b83516001600160401b03808211156200022757600080fd5b620002358783880162000142565b945060208601519150808211156200024c57600080fd5b6200025a8783880162000142565b935060408601519150808211156200027157600080fd5b50620002808682870162000142565b9150509250925092565b600181811c908216806200029f57607f821691505b60208210811415620002c157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160601c612a6d620003506000396000818161052201528181610a1b01528181610baf01528181610cc801528181610d5c01528181610e9d015281816110c4015281816111a2015281816112b701528181611368015281816117d5015281816119690152611c210152612a6d6000f3fe6080604052600436106102255760003560e01c8063729ad39e11610123578063a0712d68116100ab578063c70b12701161006f578063c70b127014610672578063c87b56dd14610692578063e0ec7c36146106b2578063e985e9c5146106e2578063fee152181461072b57600080fd5b8063a0712d68146105df578063a192783c146105f2578063a22cb46514610612578063b88d4fde14610632578063c10225b81461065257600080fd5b806391b7f5ed116100f257806391b7f5ed1461054457806395d89b41146105645780639b19251a146105795780639c54df64146105a9578063a035b1fe146105c957600080fd5b8063729ad39e146104b65780637f649783146104d6578063893da6c9146104f65780638da5cb5b1461051057600080fd5b8063377e11e0116101b1578063548db17411610175578063548db174146104225780636352211e146104425780636c0360eb1461046257806370a082311461047757806371b9b6461461049757600080fd5b8063377e11e01461036f5780633ccfd60b1461038f57806342842e0e146103a4578063429b62e5146103c4578063543e062c146103f457600080fd5b8063143b237f116101f8578063143b237f146102db57806318160ddd146102f557806323b872dd146103195780633020a18e1461033957806332cb6b0c1461035957600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063095ea7b3146102b9575b600080fd5b34801561023657600080fd5b5061024a610245366004612614565b61074b565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061027461079d565b6040516102569190612772565b34801561028d57600080fd5b506102a161029c36600461264e565b61082f565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102d96102d436600461255a565b6108c9565b005b3480156102e757600080fd5b5060085461024a9060ff1681565b34801561030157600080fd5b5061030b600d5481565b604051908152602001610256565b34801561032557600080fd5b506102d9610334366004612418565b6109df565b34801561034557600080fd5b506102d96103543660046125f9565b610a10565b34801561036557600080fd5b5061030b610c3581565b34801561037b57600080fd5b506102d961038a366004612584565b610ba4565b34801561039b57600080fd5b506102d9610cbd565b3480156103b057600080fd5b506102d96103bf366004612418565b610da7565b3480156103d057600080fd5b5061024a6103df3660046123ca565b60096020526000908152604090205460ff1681565b34801561040057600080fd5b5061041461040f366004612667565b610dc2565b604051610256929190612721565b34801561042e57600080fd5b506102d961043d366004612584565b610e92565b34801561044e57600080fd5b506102a161045d36600461264e565b610fac565b34801561046e57600080fd5b50610274611023565b34801561048357600080fd5b5061030b6104923660046123ca565b611032565b3480156104a357600080fd5b5060085461024a90610100900460ff1681565b3480156104c257600080fd5b506102d96104d1366004612584565b6110b9565b3480156104e257600080fd5b506102d96104f1366004612584565b611197565b34801561050257600080fd5b50600d54610c35111561024a565b34801561051c57600080fd5b506102a17f000000000000000000000000000000000000000000000000000000000000000081565b34801561055057600080fd5b506102d961055f36600461264e565b6112ac565b34801561057057600080fd5b5061027461134e565b34801561058557600080fd5b5061024a6105943660046123ca565b600b6020526000908152604090205460ff1681565b3480156105b557600080fd5b506102d96105c4366004612584565b61135d565b3480156105d557600080fd5b5061030b60075481565b6102d96105ed36600461264e565b611474565b3480156105fe57600080fd5b506102d961060d3660046125f9565b6117ca565b34801561061e57600080fd5b506102d961062d366004612530565b611861565b34801561063e57600080fd5b506102d961064d366004612454565b611926565b34801561065e57600080fd5b506102d961066d3660046125f9565b61195e565b34801561067e57600080fd5b5061024a61068d3660046123ca565b611af8565b34801561069e57600080fd5b506102746106ad36600461264e565b611b3b565b3480156106be57600080fd5b5061024a6106cd3660046123ca565b600c6020526000908152604090205460ff1681565b3480156106ee57600080fd5b5061024a6106fd3660046123e5565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561073757600080fd5b506102d9610746366004612584565b611c16565b60006001600160e01b031982166380ac58cd60e01b148061077c57506001600160e01b03198216635b5e139f60e01b145b8061079757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546107ac9061295f565b80601f01602080910402602001604051908101604052809291908181526020018280546107d89061295f565b80156108255780601f106107fa57610100808354040283529160200191610825565b820191906000526020600020905b81548152906001019060200180831161080857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108ad5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108d482610fac565b9050806001600160a01b0316836001600160a01b031614156109425760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108a4565b336001600160a01b038216148061095e575061095e81336106fd565b6109d05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108a4565b6109da8383611d0a565b505050565b6109e93382611d78565b610a055760405162461bcd60e51b81526004016108a490612869565b6109da838383611e6f565b336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161480610a5657503360009081526009602052604090205460ff165b610ab45760405162461bcd60e51b815260206004820152602960248201527f4f6e6c79206f776e6572206f722061646d696e2063616e206368616e67652073604482015268616c6520737461746560b81b60648201526084016108a4565b60085460ff16610b235760405162461bcd60e51b815260206004820152603460248201527f50726573616c65206d757374206265206c69766520696e206f7264657220746f604482015273207475726e206f6e207075626c69632073616c6560601b60648201526084016108a4565b610c35600d541415610b8a5760405162461bcd60e51b815260206004820152602a60248201527f43616e6e6f74206368616e67652073616c652073746174652061667465722073604482015269195b1b1a5b99c81bdd5d60b21b60648201526084016108a4565b600880549115156101000261ff0019909216919091179055565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614610c285760405162461bcd60e51b8152602060048201526024808201527f4f6e6c79206f776e65722063616e2072656d6f76652061646d696e6973747261604482015263746f727360e01b60648201526084016108a4565b600a5460ff1615610c4b5760405162461bcd60e51b81526004016108a490612785565b60005b818110156109da57600060096000858585818110610c6e57610c6e6129f5565b9050602002016020810190610c8391906123ca565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610cb58161299a565b915050610c4e565b336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161480610d0357503360009081526009602052604090205460ff165b610d4f5760405162461bcd60e51b815260206004820181905260248201527f4f6e6c79206f776e6572206f722061646d696e2063616e20776974686472617760448201526064016108a4565b6040516001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016904780156108fc02916000818181858888f19350505050158015610da4573d6000803e3d6000fd5b50565b6109da83838360405180602001604052806000815250611926565b60606000808367ffffffffffffffff811115610de057610de0612a0b565b604051908082528060200260200182016040528015610e09578160200160208202803683370190505b5090506000805b8581108015610e2a5750600d54610e2788836128ba565b11155b15610e8657610e3c61045d82896128ba565b838281518110610e4e57610e4e6129f5565b6001600160a01b039092166020928302919091019091015281610e708161299a565b9250508080610e7e9061299a565b915050610e10565b50909590945092505050565b336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161480610ed857503360009081526009602052604090205460ff165b610f3a5760405162461bcd60e51b815260206004820152602d60248201527f4f6e6c79206f776e6572206f722061646d696e2063616e2072656d6f7665206660448201526c1c9bdb481dda1a5d195b1a5cdd609a1b60648201526084016108a4565b60005b818110156109da576000600b6000858585818110610f5d57610f5d6129f5565b9050602002016020810190610f7291906123ca565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610fa48161299a565b915050610f3d565b6000818152600260205260408120546001600160a01b0316806107975760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108a4565b606061102d61200f565b905090565b60006001600160a01b03821661109d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108a4565b506001600160a01b031660009081526003602052604090205490565b336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161461112a5760405162461bcd60e51b815260206004820152601660248201527504f6e6c79206f776e65722063616e2061697264726f760541b60448201526064016108a4565b60005b818110156109da5761116f83838381811061114a5761114a6129f5565b905060200201602081019061115f91906123ca565b61116a8360016128ba565b61201e565b600d805490600061117f8361299a565b9190505550808061118f9061299a565b91505061112d565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614806111dd57503360009081526009602052604090205460ff165b61123a5760405162461bcd60e51b815260206004820152602860248201527f4f6e6c79206f776e6572206f722061646d696e2063616e2061646420746f20776044820152671a1a5d195b1a5cdd60c21b60648201526084016108a4565b60005b818110156109da576001600b600085858581811061125d5761125d6129f5565b905060200201602081019061127291906123ca565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806112a48161299a565b91505061123d565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614806112f257503360009081526009602052604090205460ff165b6113495760405162461bcd60e51b815260206004820152602260248201527f4f6e6c79206f776e6572206f722061646d696e2063616e207365742070726963604482015261657360f01b60648201526084016108a4565b600755565b6060600180546107ac9061295f565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146113df5760405162461bcd60e51b815260206004820152602160248201527f4f6e6c79206f776e65722063616e206164642061646d696e6973747261746f726044820152607360f81b60648201526084016108a4565b600a5460ff16156114025760405162461bcd60e51b81526004016108a490612785565b60005b818110156109da57600160096000858585818110611425576114256129f5565b905060200201602081019061143a91906123ca565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061146c8161299a565b915050611405565b600260065414156114c75760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108a4565b6002600655336000908152600b602052604081205460ff16908180156114fd5750336000908152600c602052604090205460ff16155b9050610c35600d54106115465760405162461bcd60e51b81526020600482015260116024820152704e6f206d6f72652070656e6775696e732160781b60448201526064016108a4565b600854610100900460ff16158015611560575060085460ff165b156115b757816115b25760405162461bcd60e51b815260206004820152601760248201527f41646472657373206e6f742077686974656c697374656400000000000000000060448201526064016108a4565b611601565b600854610100900460ff166116015760405162461bcd60e51b815260206004820152601060248201526f135a5b9d1a5b99c8191a5cd8589b195960821b60448201526064016108a4565b6000831180156116125750600a8311155b61164f5760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b60448201526064016108a4565b80156116aa57611660600184612905565b60075461166d91906128e6565b341461168b5760405162461bcd60e51b81526004016108a490612820565b336000908152600c60205260409020805460ff191660011790556116d6565b826007546116b891906128e6565b34146116d65760405162461bcd60e51b81526004016108a490612820565b825b80156117bf576116fb33600d600081546116f19061299a565b918290555061201e565b610c35600d5414156117ad576008805461ffff191690558180156117345750600060016117288387612905565b6117329190612905565b115b156117905760075433906108fc90600161174e8589612905565b6117589190612905565b61176291906128e6565b6040518115909202916000818181858888f1935050505015801561178a573d6000803e3d6000fd5b506117bf565b816117a85760075433906108fc906117588488612905565b6117bf565b806117b781612948565b9150506116d8565b505060016006555050565b336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161461184e5760405162461bcd60e51b815260206004820152602360248201527f4f6e6c79206f776e65722063616e207365742061646d696e206c6f636b20737460448201526261746560e81b60648201526084016108a4565b600a805460ff1916911515919091179055565b6001600160a01b0382163314156118ba5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108a4565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6119303383611d78565b61194c5760405162461bcd60e51b81526004016108a490612869565b61195884848484612160565b50505050565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614806119a457503360009081526009602052604090205460ff165b611a055760405162461bcd60e51b815260206004820152602c60248201527f4f6e6c79206f776e6572206f722061646d696e2063616e206368616e6765207060448201526b726573616c6520737461746560a01b60648201526084016108a4565b600854610100900460ff1615611a7b5760405162461bcd60e51b815260206004820152603560248201527f43616e6e6f74206368616e67652070726573616c65207374617465207768696c60448201527465207075626c69632073616c65206973206c69766560581b60648201526084016108a4565b610c35600d541415611ae55760405162461bcd60e51b815260206004820152602d60248201527f43616e6e6f74206368616e67652070726573616c65207374617465206166746560448201526c1c881cd95b1b1a5b99c81bdd5d609a1b60648201526084016108a4565b6008805460ff1916911515919091179055565b6001600160a01b0381166000908152600b602052604081205460ff1680156107975750506001600160a01b03166000908152600c602052604090205460ff161590565b6000818152600260205260409020546060906001600160a01b0316611bba5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108a4565b6000611bc461200f565b90506000815111611be45760405180602001604052806000815250611c0f565b80611bee84612193565b604051602001611bff9291906126b5565b6040516020818303038152906040525b9392505050565b336001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001614611c985760405162461bcd60e51b815260206004820152602160248201527f4f6e6c79206f776e65722063616e20736574467265654d696e74436c61696d656044820152601960fa1b60648201526084016108a4565b60005b818110156109da576001600c6000858585818110611cbb57611cbb6129f5565b9050602002016020810190611cd091906123ca565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611d028161299a565b915050611c9b565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611d3f82610fac565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611df15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108a4565b6000611dfc83610fac565b9050806001600160a01b0316846001600160a01b03161480611e375750836001600160a01b0316611e2c8461082f565b6001600160a01b0316145b80611e6757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611e8282610fac565b6001600160a01b031614611eea5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108a4565b6001600160a01b038216611f4c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108a4565b611f57600082611d0a565b6001600160a01b0383166000908152600360205260408120805460019290611f80908490612905565b90915550506001600160a01b0382166000908152600360205260408120805460019290611fae9084906128ba565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6060600e80546107ac9061295f565b6001600160a01b0382166120745760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108a4565b6000818152600260205260409020546001600160a01b0316156120d95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108a4565b6001600160a01b03821660009081526003602052604081208054600192906121029084906128ba565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b61216b848484611e6f565b61217784848484612291565b6119585760405162461bcd60e51b81526004016108a4906127ce565b6060816121b75750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121e157806121cb8161299a565b91506121da9050600a836128d2565b91506121bb565b60008167ffffffffffffffff8111156121fc576121fc612a0b565b6040519080825280601f01601f191660200182016040528015612226576020820181803683370190505b5090505b8415611e675761223b600183612905565b9150612248600a866129b5565b6122539060306128ba565b60f81b818381518110612268576122686129f5565b60200101906001600160f81b031916908160001a90535061228a600a866128d2565b945061222a565b60006001600160a01b0384163b1561239357604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906122d59033908990889088906004016126e4565b602060405180830381600087803b1580156122ef57600080fd5b505af192505050801561231f575060408051601f3d908101601f1916820190925261231c91810190612631565b60015b612379573d80801561234d576040519150601f19603f3d011682016040523d82523d6000602084013e612352565b606091505b5080516123715760405162461bcd60e51b81526004016108a4906127ce565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e67565b506001949350505050565b80356001600160a01b03811681146123b557600080fd5b919050565b803580151581146123b557600080fd5b6000602082840312156123dc57600080fd5b611c0f8261239e565b600080604083850312156123f857600080fd5b6124018361239e565b915061240f6020840161239e565b90509250929050565b60008060006060848603121561242d57600080fd5b6124368461239e565b92506124446020850161239e565b9150604084013590509250925092565b6000806000806080858703121561246a57600080fd5b6124738561239e565b93506124816020860161239e565b925060408501359150606085013567ffffffffffffffff808211156124a557600080fd5b818701915087601f8301126124b957600080fd5b8135818111156124cb576124cb612a0b565b604051601f8201601f19908116603f011681019083821181831017156124f3576124f3612a0b565b816040528281528a602084870101111561250c57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561254357600080fd5b61254c8361239e565b915061240f602084016123ba565b6000806040838503121561256d57600080fd5b6125768361239e565b946020939093013593505050565b6000806020838503121561259757600080fd5b823567ffffffffffffffff808211156125af57600080fd5b818501915085601f8301126125c357600080fd5b8135818111156125d257600080fd5b8660208260051b85010111156125e757600080fd5b60209290920196919550909350505050565b60006020828403121561260b57600080fd5b611c0f826123ba565b60006020828403121561262657600080fd5b8135611c0f81612a21565b60006020828403121561264357600080fd5b8151611c0f81612a21565b60006020828403121561266057600080fd5b5035919050565b6000806040838503121561267a57600080fd5b50508035926020909101359150565b600081518084526126a181602086016020860161291c565b601f01601f19169290920160200192915050565b600083516126c781846020880161291c565b8351908301906126db81836020880161291c565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061271790830184612689565b9695505050505050565b604080825283519082018190526000906020906060840190828701845b828110156127635781516001600160a01b03168452928401929084019060010161273e565b50505092019290925292915050565b602081526000611c0f6020830184612689565b60208082526029908201527f43616e6e6f74206368616e67652061646d696e6973747261746f7273207768696040820152681b19481b1bd8dad95960ba1b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526029908201527f496e76616c696420616d6f756e74206f6620657468657220666f7220616d6f756040820152686e7420746f2062757960b81b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156128cd576128cd6129c9565b500190565b6000826128e1576128e16129df565b500490565b6000816000190483118215151615612900576129006129c9565b500290565b600082821015612917576129176129c9565b500390565b60005b8381101561293757818101518382015260200161291f565b838111156119585750506000910152565b600081612957576129576129c9565b506000190190565b600181811c9082168061297357607f821691505b6020821081141561299457634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129ae576129ae6129c9565b5060010190565b6000826129c4576129c46129df565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610da457600080fdfea2646970667358221220829bb29eac0ced6dfe79bc5b05f0a4e6d52b859c6f95cf70117d0ff8a73be27864736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000d466976652050656e6775696e7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000235500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5947446b3159446975525177486936456b444639463647706266384755524e4a75765361585a6a78463859312f00000000000000000000

Deployed Bytecode

0x6080604052600436106102255760003560e01c8063729ad39e11610123578063a0712d68116100ab578063c70b12701161006f578063c70b127014610672578063c87b56dd14610692578063e0ec7c36146106b2578063e985e9c5146106e2578063fee152181461072b57600080fd5b8063a0712d68146105df578063a192783c146105f2578063a22cb46514610612578063b88d4fde14610632578063c10225b81461065257600080fd5b806391b7f5ed116100f257806391b7f5ed1461054457806395d89b41146105645780639b19251a146105795780639c54df64146105a9578063a035b1fe146105c957600080fd5b8063729ad39e146104b65780637f649783146104d6578063893da6c9146104f65780638da5cb5b1461051057600080fd5b8063377e11e0116101b1578063548db17411610175578063548db174146104225780636352211e146104425780636c0360eb1461046257806370a082311461047757806371b9b6461461049757600080fd5b8063377e11e01461036f5780633ccfd60b1461038f57806342842e0e146103a4578063429b62e5146103c4578063543e062c146103f457600080fd5b8063143b237f116101f8578063143b237f146102db57806318160ddd146102f557806323b872dd146103195780633020a18e1461033957806332cb6b0c1461035957600080fd5b806301ffc9a71461022a57806306fdde031461025f578063081812fc14610281578063095ea7b3146102b9575b600080fd5b34801561023657600080fd5b5061024a610245366004612614565b61074b565b60405190151581526020015b60405180910390f35b34801561026b57600080fd5b5061027461079d565b6040516102569190612772565b34801561028d57600080fd5b506102a161029c36600461264e565b61082f565b6040516001600160a01b039091168152602001610256565b3480156102c557600080fd5b506102d96102d436600461255a565b6108c9565b005b3480156102e757600080fd5b5060085461024a9060ff1681565b34801561030157600080fd5b5061030b600d5481565b604051908152602001610256565b34801561032557600080fd5b506102d9610334366004612418565b6109df565b34801561034557600080fd5b506102d96103543660046125f9565b610a10565b34801561036557600080fd5b5061030b610c3581565b34801561037b57600080fd5b506102d961038a366004612584565b610ba4565b34801561039b57600080fd5b506102d9610cbd565b3480156103b057600080fd5b506102d96103bf366004612418565b610da7565b3480156103d057600080fd5b5061024a6103df3660046123ca565b60096020526000908152604090205460ff1681565b34801561040057600080fd5b5061041461040f366004612667565b610dc2565b604051610256929190612721565b34801561042e57600080fd5b506102d961043d366004612584565b610e92565b34801561044e57600080fd5b506102a161045d36600461264e565b610fac565b34801561046e57600080fd5b50610274611023565b34801561048357600080fd5b5061030b6104923660046123ca565b611032565b3480156104a357600080fd5b5060085461024a90610100900460ff1681565b3480156104c257600080fd5b506102d96104d1366004612584565b6110b9565b3480156104e257600080fd5b506102d96104f1366004612584565b611197565b34801561050257600080fd5b50600d54610c35111561024a565b34801561051c57600080fd5b506102a17f000000000000000000000000edb43e538e2668733b3a1ed282463dfda793722081565b34801561055057600080fd5b506102d961055f36600461264e565b6112ac565b34801561057057600080fd5b5061027461134e565b34801561058557600080fd5b5061024a6105943660046123ca565b600b6020526000908152604090205460ff1681565b3480156105b557600080fd5b506102d96105c4366004612584565b61135d565b3480156105d557600080fd5b5061030b60075481565b6102d96105ed36600461264e565b611474565b3480156105fe57600080fd5b506102d961060d3660046125f9565b6117ca565b34801561061e57600080fd5b506102d961062d366004612530565b611861565b34801561063e57600080fd5b506102d961064d366004612454565b611926565b34801561065e57600080fd5b506102d961066d3660046125f9565b61195e565b34801561067e57600080fd5b5061024a61068d3660046123ca565b611af8565b34801561069e57600080fd5b506102746106ad36600461264e565b611b3b565b3480156106be57600080fd5b5061024a6106cd3660046123ca565b600c6020526000908152604090205460ff1681565b3480156106ee57600080fd5b5061024a6106fd3660046123e5565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561073757600080fd5b506102d9610746366004612584565b611c16565b60006001600160e01b031982166380ac58cd60e01b148061077c57506001600160e01b03198216635b5e139f60e01b145b8061079757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546107ac9061295f565b80601f01602080910402602001604051908101604052809291908181526020018280546107d89061295f565b80156108255780601f106107fa57610100808354040283529160200191610825565b820191906000526020600020905b81548152906001019060200180831161080857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108ad5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108d482610fac565b9050806001600160a01b0316836001600160a01b031614156109425760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108a4565b336001600160a01b038216148061095e575061095e81336106fd565b6109d05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108a4565b6109da8383611d0a565b505050565b6109e93382611d78565b610a055760405162461bcd60e51b81526004016108a490612869565b6109da838383611e6f565b336001600160a01b037f000000000000000000000000edb43e538e2668733b3a1ed282463dfda7937220161480610a5657503360009081526009602052604090205460ff165b610ab45760405162461bcd60e51b815260206004820152602960248201527f4f6e6c79206f776e6572206f722061646d696e2063616e206368616e67652073604482015268616c6520737461746560b81b60648201526084016108a4565b60085460ff16610b235760405162461bcd60e51b815260206004820152603460248201527f50726573616c65206d757374206265206c69766520696e206f7264657220746f604482015273207475726e206f6e207075626c69632073616c6560601b60648201526084016108a4565b610c35600d541415610b8a5760405162461bcd60e51b815260206004820152602a60248201527f43616e6e6f74206368616e67652073616c652073746174652061667465722073604482015269195b1b1a5b99c81bdd5d60b21b60648201526084016108a4565b600880549115156101000261ff0019909216919091179055565b336001600160a01b037f000000000000000000000000edb43e538e2668733b3a1ed282463dfda79372201614610c285760405162461bcd60e51b8152602060048201526024808201527f4f6e6c79206f776e65722063616e2072656d6f76652061646d696e6973747261604482015263746f727360e01b60648201526084016108a4565b600a5460ff1615610c4b5760405162461bcd60e51b81526004016108a490612785565b60005b818110156109da57600060096000858585818110610c6e57610c6e6129f5565b9050602002016020810190610c8391906123ca565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610cb58161299a565b915050610c4e565b336001600160a01b037f000000000000000000000000edb43e538e2668733b3a1ed282463dfda7937220161480610d0357503360009081526009602052604090205460ff165b610d4f5760405162461bcd60e51b815260206004820181905260248201527f4f6e6c79206f776e6572206f722061646d696e2063616e20776974686472617760448201526064016108a4565b6040516001600160a01b037f000000000000000000000000edb43e538e2668733b3a1ed282463dfda793722016904780156108fc02916000818181858888f19350505050158015610da4573d6000803e3d6000fd5b50565b6109da83838360405180602001604052806000815250611926565b60606000808367ffffffffffffffff811115610de057610de0612a0b565b604051908082528060200260200182016040528015610e09578160200160208202803683370190505b5090506000805b8581108015610e2a5750600d54610e2788836128ba565b11155b15610e8657610e3c61045d82896128ba565b838281518110610e4e57610e4e6129f5565b6001600160a01b039092166020928302919091019091015281610e708161299a565b9250508080610e7e9061299a565b915050610e10565b50909590945092505050565b336001600160a01b037f000000000000000000000000edb43e538e2668733b3a1ed282463dfda7937220161480610ed857503360009081526009602052604090205460ff165b610f3a5760405162461bcd60e51b815260206004820152602d60248201527f4f6e6c79206f776e6572206f722061646d696e2063616e2072656d6f7665206660448201526c1c9bdb481dda1a5d195b1a5cdd609a1b60648201526084016108a4565b60005b818110156109da576000600b6000858585818110610f5d57610f5d6129f5565b9050602002016020810190610f7291906123ca565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610fa48161299a565b915050610f3d565b6000818152600260205260408120546001600160a01b0316806107975760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108a4565b606061102d61200f565b905090565b60006001600160a01b03821661109d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108a4565b506001600160a01b031660009081526003602052604090205490565b336001600160a01b037f000000000000000000000000edb43e538e2668733b3a1ed282463dfda7937220161461112a5760405162461bcd60e51b815260206004820152601660248201527504f6e6c79206f776e65722063616e2061697264726f760541b60448201526064016108a4565b60005b818110156109da5761116f83838381811061114a5761114a6129f5565b905060200201602081019061115f91906123ca565b61116a8360016128ba565b61201e565b600d805490600061117f8361299a565b9190505550808061118f9061299a565b91505061112d565b336001600160a01b037f000000000000000000000000edb43e538e2668733b3a1ed282463dfda79372201614806111dd57503360009081526009602052604090205460ff165b61123a5760405162461bcd60e51b815260206004820152602860248201527f4f6e6c79206f776e6572206f722061646d696e2063616e2061646420746f20776044820152671a1a5d195b1a5cdd60c21b60648201526084016108a4565b60005b818110156109da576001600b600085858581811061125d5761125d6129f5565b905060200201602081019061127291906123ca565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806112a48161299a565b91505061123d565b336001600160a01b037f000000000000000000000000edb43e538e2668733b3a1ed282463dfda79372201614806112f257503360009081526009602052604090205460ff165b6113495760405162461bcd60e51b815260206004820152602260248201527f4f6e6c79206f776e6572206f722061646d696e2063616e207365742070726963604482015261657360f01b60648201526084016108a4565b600755565b6060600180546107ac9061295f565b336001600160a01b037f000000000000000000000000edb43e538e2668733b3a1ed282463dfda793722016146113df5760405162461bcd60e51b815260206004820152602160248201527f4f6e6c79206f776e65722063616e206164642061646d696e6973747261746f726044820152607360f81b60648201526084016108a4565b600a5460ff16156114025760405162461bcd60e51b81526004016108a490612785565b60005b818110156109da57600160096000858585818110611425576114256129f5565b905060200201602081019061143a91906123ca565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061146c8161299a565b915050611405565b600260065414156114c75760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016108a4565b6002600655336000908152600b602052604081205460ff16908180156114fd5750336000908152600c602052604090205460ff16155b9050610c35600d54106115465760405162461bcd60e51b81526020600482015260116024820152704e6f206d6f72652070656e6775696e732160781b60448201526064016108a4565b600854610100900460ff16158015611560575060085460ff165b156115b757816115b25760405162461bcd60e51b815260206004820152601760248201527f41646472657373206e6f742077686974656c697374656400000000000000000060448201526064016108a4565b611601565b600854610100900460ff166116015760405162461bcd60e51b815260206004820152601060248201526f135a5b9d1a5b99c8191a5cd8589b195960821b60448201526064016108a4565b6000831180156116125750600a8311155b61164f5760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b60448201526064016108a4565b80156116aa57611660600184612905565b60075461166d91906128e6565b341461168b5760405162461bcd60e51b81526004016108a490612820565b336000908152600c60205260409020805460ff191660011790556116d6565b826007546116b891906128e6565b34146116d65760405162461bcd60e51b81526004016108a490612820565b825b80156117bf576116fb33600d600081546116f19061299a565b918290555061201e565b610c35600d5414156117ad576008805461ffff191690558180156117345750600060016117288387612905565b6117329190612905565b115b156117905760075433906108fc90600161174e8589612905565b6117589190612905565b61176291906128e6565b6040518115909202916000818181858888f1935050505015801561178a573d6000803e3d6000fd5b506117bf565b816117a85760075433906108fc906117588488612905565b6117bf565b806117b781612948565b9150506116d8565b505060016006555050565b336001600160a01b037f000000000000000000000000edb43e538e2668733b3a1ed282463dfda7937220161461184e5760405162461bcd60e51b815260206004820152602360248201527f4f6e6c79206f776e65722063616e207365742061646d696e206c6f636b20737460448201526261746560e81b60648201526084016108a4565b600a805460ff1916911515919091179055565b6001600160a01b0382163314156118ba5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108a4565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6119303383611d78565b61194c5760405162461bcd60e51b81526004016108a490612869565b61195884848484612160565b50505050565b336001600160a01b037f000000000000000000000000edb43e538e2668733b3a1ed282463dfda79372201614806119a457503360009081526009602052604090205460ff165b611a055760405162461bcd60e51b815260206004820152602c60248201527f4f6e6c79206f776e6572206f722061646d696e2063616e206368616e6765207060448201526b726573616c6520737461746560a01b60648201526084016108a4565b600854610100900460ff1615611a7b5760405162461bcd60e51b815260206004820152603560248201527f43616e6e6f74206368616e67652070726573616c65207374617465207768696c60448201527465207075626c69632073616c65206973206c69766560581b60648201526084016108a4565b610c35600d541415611ae55760405162461bcd60e51b815260206004820152602d60248201527f43616e6e6f74206368616e67652070726573616c65207374617465206166746560448201526c1c881cd95b1b1a5b99c81bdd5d609a1b60648201526084016108a4565b6008805460ff1916911515919091179055565b6001600160a01b0381166000908152600b602052604081205460ff1680156107975750506001600160a01b03166000908152600c602052604090205460ff161590565b6000818152600260205260409020546060906001600160a01b0316611bba5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016108a4565b6000611bc461200f565b90506000815111611be45760405180602001604052806000815250611c0f565b80611bee84612193565b604051602001611bff9291906126b5565b6040516020818303038152906040525b9392505050565b336001600160a01b037f000000000000000000000000edb43e538e2668733b3a1ed282463dfda79372201614611c985760405162461bcd60e51b815260206004820152602160248201527f4f6e6c79206f776e65722063616e20736574467265654d696e74436c61696d656044820152601960fa1b60648201526084016108a4565b60005b818110156109da576001600c6000858585818110611cbb57611cbb6129f5565b9050602002016020810190611cd091906123ca565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611d028161299a565b915050611c9b565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611d3f82610fac565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611df15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108a4565b6000611dfc83610fac565b9050806001600160a01b0316846001600160a01b03161480611e375750836001600160a01b0316611e2c8461082f565b6001600160a01b0316145b80611e6757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611e8282610fac565b6001600160a01b031614611eea5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108a4565b6001600160a01b038216611f4c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108a4565b611f57600082611d0a565b6001600160a01b0383166000908152600360205260408120805460019290611f80908490612905565b90915550506001600160a01b0382166000908152600360205260408120805460019290611fae9084906128ba565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6060600e80546107ac9061295f565b6001600160a01b0382166120745760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108a4565b6000818152600260205260409020546001600160a01b0316156120d95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108a4565b6001600160a01b03821660009081526003602052604081208054600192906121029084906128ba565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b61216b848484611e6f565b61217784848484612291565b6119585760405162461bcd60e51b81526004016108a4906127ce565b6060816121b75750506040805180820190915260018152600360fc1b602082015290565b8160005b81156121e157806121cb8161299a565b91506121da9050600a836128d2565b91506121bb565b60008167ffffffffffffffff8111156121fc576121fc612a0b565b6040519080825280601f01601f191660200182016040528015612226576020820181803683370190505b5090505b8415611e675761223b600183612905565b9150612248600a866129b5565b6122539060306128ba565b60f81b818381518110612268576122686129f5565b60200101906001600160f81b031916908160001a90535061228a600a866128d2565b945061222a565b60006001600160a01b0384163b1561239357604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906122d59033908990889088906004016126e4565b602060405180830381600087803b1580156122ef57600080fd5b505af192505050801561231f575060408051601f3d908101601f1916820190925261231c91810190612631565b60015b612379573d80801561234d576040519150601f19603f3d011682016040523d82523d6000602084013e612352565b606091505b5080516123715760405162461bcd60e51b81526004016108a4906127ce565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e67565b506001949350505050565b80356001600160a01b03811681146123b557600080fd5b919050565b803580151581146123b557600080fd5b6000602082840312156123dc57600080fd5b611c0f8261239e565b600080604083850312156123f857600080fd5b6124018361239e565b915061240f6020840161239e565b90509250929050565b60008060006060848603121561242d57600080fd5b6124368461239e565b92506124446020850161239e565b9150604084013590509250925092565b6000806000806080858703121561246a57600080fd5b6124738561239e565b93506124816020860161239e565b925060408501359150606085013567ffffffffffffffff808211156124a557600080fd5b818701915087601f8301126124b957600080fd5b8135818111156124cb576124cb612a0b565b604051601f8201601f19908116603f011681019083821181831017156124f3576124f3612a0b565b816040528281528a602084870101111561250c57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561254357600080fd5b61254c8361239e565b915061240f602084016123ba565b6000806040838503121561256d57600080fd5b6125768361239e565b946020939093013593505050565b6000806020838503121561259757600080fd5b823567ffffffffffffffff808211156125af57600080fd5b818501915085601f8301126125c357600080fd5b8135818111156125d257600080fd5b8660208260051b85010111156125e757600080fd5b60209290920196919550909350505050565b60006020828403121561260b57600080fd5b611c0f826123ba565b60006020828403121561262657600080fd5b8135611c0f81612a21565b60006020828403121561264357600080fd5b8151611c0f81612a21565b60006020828403121561266057600080fd5b5035919050565b6000806040838503121561267a57600080fd5b50508035926020909101359150565b600081518084526126a181602086016020860161291c565b601f01601f19169290920160200192915050565b600083516126c781846020880161291c565b8351908301906126db81836020880161291c565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061271790830184612689565b9695505050505050565b604080825283519082018190526000906020906060840190828701845b828110156127635781516001600160a01b03168452928401929084019060010161273e565b50505092019290925292915050565b602081526000611c0f6020830184612689565b60208082526029908201527f43616e6e6f74206368616e67652061646d696e6973747261746f7273207768696040820152681b19481b1bd8dad95960ba1b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526029908201527f496e76616c696420616d6f756e74206f6620657468657220666f7220616d6f756040820152686e7420746f2062757960b81b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156128cd576128cd6129c9565b500190565b6000826128e1576128e16129df565b500490565b6000816000190483118215151615612900576129006129c9565b500290565b600082821015612917576129176129c9565b500390565b60005b8381101561293757818101518382015260200161291f565b838111156119585750506000910152565b600081612957576129576129c9565b506000190190565b600181811c9082168061297357607f821691505b6020821081141561299457634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129ae576129ae6129c9565b5060010190565b6000826129c4576129c46129df565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610da457600080fdfea2646970667358221220829bb29eac0ced6dfe79bc5b05f0a4e6d52b859c6f95cf70117d0ff8a73be27864736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000d466976652050656e6775696e7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000235500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5947446b3159446975525177486936456b444639463647706266384755524e4a75765361585a6a78463859312f00000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Five Penguins
Arg [1] : symbol (string): 5P
Arg [2] : _uri (string): ipfs://QmYGDk1YDiuRQwHi6EkDF9F6Gpbf8GURNJuvSaXZjxF8Y1/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [4] : 466976652050656e6775696e7300000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 3550000000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d5947446b3159446975525177486936456b444639463647
Arg [9] : 706266384755524e4a75765361585a6a78463859312f00000000000000000000


Deployed Bytecode Sourcemap

35946:6211:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20581:292;;;;;;;;;;-1:-1:-1;20581:292:0;;;;;:::i;:::-;;:::i;:::-;;;6893:14:1;;6886:22;6868:41;;6856:2;6841:18;20581:292:0;;;;;;;;21513:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22973:221::-;;;;;;;;;;-1:-1:-1;22973:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5455:32:1;;;5437:51;;5425:2;5410:18;22973:221:0;5291:203:1;22510:397:0;;;;;;;;;;-1:-1:-1;22510:397:0;;;;;:::i;:::-;;:::i;:::-;;36129:26;;;;;;;;;;-1:-1:-1;36129:26:0;;;;;;;;36374;;;;;;;;;;;;;;;;;;;21512:25:1;;;21500:2;21485:18;36374:26:0;21366:177:1;23863:305:0;;;;;;;;;;-1:-1:-1;23863:305:0;;;;;:::i;:::-;;:::i;39210:364::-;;;;;;;;;;-1:-1:-1;39210:364:0;;;;;:::i;:::-;;:::i;36039:41::-;;;;;;;;;;;;36076:4;36039:41;;40694:335;;;;;;;;;;-1:-1:-1;40694:335:0;;;;;:::i;:::-;;:::i;38630:189::-;;;;;;;;;;;;;:::i;24239:151::-;;;;;;;;;;-1:-1:-1;24239:151:0;;;;;:::i;:::-;;:::i;36192:39::-;;;;;;;;;;-1:-1:-1;36192:39:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;41200:396;;;;;;;;;;-1:-1:-1;41200:396:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;40052:298::-;;;;;;;;;;-1:-1:-1;40052:298:0;;;;;:::i;:::-;;:::i;21207:239::-;;;;;;;;;;-1:-1:-1;21207:239:0;;;;;:::i;:::-;;:::i;36595:91::-;;;;;;;;;;;;;:::i;20937:208::-;;;;;;;;;;-1:-1:-1;20937:208:0;;;;;:::i;:::-;;:::i;36162:23::-;;;;;;;;;;-1:-1:-1;36162:23:0;;;;;;;;;;;41604:267;;;;;;;;;;-1:-1:-1;41604:267:0;;;;;:::i;:::-;;:::i;39757:287::-;;;;;;;;;;-1:-1:-1;39757:287:0;;;;;:::i;:::-;;:::i;36951:97::-;;;;;;;;;;-1:-1:-1;37015:11:0;;36076:4;-1:-1:-1;37015:25:0;36951:97;;36002:30;;;;;;;;;;;;;;;39582:167;;;;;;;;;;-1:-1:-1;39582:167:0;;;;;:::i;:::-;;:::i;21682:104::-;;;;;;;;;;;;;:::i;36270:42::-;;;;;;;;;;-1:-1:-1;36270:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;40358:328;;;;;;;;;;-1:-1:-1;40358:328:0;;;;;:::i;:::-;;:::i;36087:35::-;;;;;;;;;;;;;;;;37056:1566;;;;;;:::i;:::-;;:::i;41037:155::-;;;;;;;;;;-1:-1:-1;41037:155:0;;;;;:::i;:::-;;:::i;23266:295::-;;;;;;;;;;-1:-1:-1;23266:295:0;;;;;:::i;:::-;;:::i;24461:285::-;;;;;;;;;;-1:-1:-1;24461:285:0;;;;;:::i;:::-;;:::i;38827:375::-;;;;;;;;;;-1:-1:-1;38827:375:0;;;;;:::i;:::-;;:::i;36800:143::-;;;;;;;;;;-1:-1:-1;36800:143:0;;;;;:::i;:::-;;:::i;21857:360::-;;;;;;;;;;-1:-1:-1;21857:360:0;;;;;:::i;:::-;;:::i;36319:48::-;;;;;;;;;;-1:-1:-1;36319:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;23632:164;;;;;;;;;;-1:-1:-1;23632:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;23753:25:0;;;23729:4;23753:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23632:164;41883:271;;;;;;;;;;-1:-1:-1;41883:271:0;;;;;:::i;:::-;;:::i;20581:292::-;20683:4;-1:-1:-1;;;;;;20707:40:0;;-1:-1:-1;;;20707:40:0;;:105;;-1:-1:-1;;;;;;;20764:48:0;;-1:-1:-1;;;20764:48:0;20707:105;:158;;;-1:-1:-1;;;;;;;;;;19190:40:0;;;20829:36;20700:165;20581:292;-1:-1:-1;;20581:292:0:o;21513:100::-;21567:13;21600:5;21593:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21513:100;:::o;22973:221::-;23049:7;26302:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26302:16:0;23069:73;;;;-1:-1:-1;;;23069:73:0;;16463:2:1;23069:73:0;;;16445:21:1;16502:2;16482:18;;;16475:30;16541:34;16521:18;;;16514:62;-1:-1:-1;;;16592:18:1;;;16585:42;16644:19;;23069:73:0;;;;;;;;;-1:-1:-1;23162:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23162:24:0;;22973:221::o;22510:397::-;22591:13;22607:23;22622:7;22607:14;:23::i;:::-;22591:39;;22655:5;-1:-1:-1;;;;;22649:11:0;:2;-1:-1:-1;;;;;22649:11:0;;;22641:57;;;;-1:-1:-1;;;22641:57:0;;19569:2:1;22641:57:0;;;19551:21:1;19608:2;19588:18;;;19581:30;19647:34;19627:18;;;19620:62;-1:-1:-1;;;19698:18:1;;;19691:31;19739:19;;22641:57:0;19367:397:1;22641:57:0;15955:10;-1:-1:-1;;;;;22719:21:0;;;;:62;;-1:-1:-1;22744:37:0;22761:5;15955:10;23632:164;:::i;22744:37::-;22711:154;;;;-1:-1:-1;;;22711:154:0;;14144:2:1;22711:154:0;;;14126:21:1;14183:2;14163:18;;;14156:30;14222:34;14202:18;;;14195:62;14293:26;14273:18;;;14266:54;14337:19;;22711:154:0;13942:420:1;22711:154:0;22878:21;22887:2;22891:7;22878:8;:21::i;:::-;22580:327;22510:397;;:::o;23863:305::-;24024:41;15955:10;24057:7;24024:18;:41::i;:::-;24016:103;;;;-1:-1:-1;;;24016:103:0;;;;;;;:::i;:::-;24132:28;24142:4;24148:2;24152:7;24132:9;:28::i;39210:364::-;39271:10;-1:-1:-1;;;;;39285:5:0;39271:19;;;:41;;-1:-1:-1;39301:10:0;39294:18;;;;:6;:18;;;;;;;;39271:41;39263:95;;;;-1:-1:-1;;;39263:95:0;;20798:2:1;39263:95:0;;;20780:21:1;20837:2;20817:18;;;20810:30;20876:34;20856:18;;;20849:62;-1:-1:-1;;;20927:18:1;;;20920:39;20976:19;;39263:95:0;20596:405:1;39263:95:0;39377:14;;;;39369:79;;;;-1:-1:-1;;;39369:79:0;;19148:2:1;39369:79:0;;;19130:21:1;19187:2;19167:18;;;19160:30;19226:34;19206:18;;;19199:62;-1:-1:-1;;;19277:18:1;;;19270:50;19337:19;;39369:79:0;18946:416:1;39369:79:0;36076:4;39467:11;;:25;;39459:80;;;;-1:-1:-1;;;39459:80:0;;12905:2:1;39459:80:0;;;12887:21:1;12944:2;12924:18;;;12917:30;12983:34;12963:18;;;12956:62;-1:-1:-1;;;13034:18:1;;;13027:40;13084:19;;39459:80:0;12703:406:1;39459:80:0;39550:11;:16;;;;;;;-1:-1:-1;;39550:16:0;;;;;;;;;39210:364::o;40694:335::-;40774:10;-1:-1:-1;;;;;40788:5:0;40774:19;;40766:68;;;;-1:-1:-1;;;40766:68:0;;10524:2:1;40766:68:0;;;10506:21:1;10563:2;10543:18;;;10536:30;10602:34;10582:18;;;10575:62;-1:-1:-1;;;10653:18:1;;;10646:34;10697:19;;40766:68:0;10322:400:1;40766:68:0;40854:12;;;;40853:13;40845:67;;;;-1:-1:-1;;;40845:67:0;;;;;;;:::i;:::-;40928:6;40923:99;40940:20;;;40923:99;;;41005:5;40982:6;:20;40989:9;;40999:1;40989:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;40982:20:0;;;;;;;;;;;;-1:-1:-1;40982:20:0;:28;;-1:-1:-1;;40982:28:0;;;;;;;;;;40962:3;;;;:::i;:::-;;;;40923:99;;38630:189;38676:10;-1:-1:-1;;;;;38690:5:0;38676:19;;;:41;;-1:-1:-1;38706:10:0;38699:18;;;;:6;:18;;;;;;;;38676:41;38668:86;;;;-1:-1:-1;;;38668:86:0;;15390:2:1;38668:86:0;;;15372:21:1;;;15409:18;;;15402:30;15468:34;15448:18;;;15441:62;15520:18;;38668:86:0;15188:356:1;38668:86:0;38765:46;;-1:-1:-1;;;;;38773:5:0;38765:23;;38789:21;38765:46;;;;;;;;;38789:21;38765:23;:46;;;;;;;;;;;;;;;;;;;;;38630:189::o;24239:151::-;24343:39;24360:4;24366:2;24370:7;24343:39;;;;;;;;;;;;:16;:39::i;41200:396::-;41274:16;41292:7;41312:26;41355:5;41341:20;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41341:20:0;;41312:49;;41372:14;41406:9;41401:151;41425:5;41421:1;:9;:39;;;;-1:-1:-1;41449:11:0;;41434;41438:7;41434:1;:11;:::i;:::-;:26;;41421:39;41401:151;;;41497:20;41505:11;41515:1;41505:7;:11;:::i;41497:20::-;41482:9;41492:1;41482:12;;;;;;;;:::i;:::-;-1:-1:-1;;;;;41482:35:0;;;:12;;;;;;;;;;;:35;41532:8;;;;:::i;:::-;;;;41462:3;;;;;:::i;:::-;;;;41401:151;;;-1:-1:-1;41570:9:0;;;;-1:-1:-1;41200:396:0;-1:-1:-1;;;41200:396:0:o;40052:298::-;40139:10;-1:-1:-1;;;;;40153:5:0;40139:19;;;:41;;-1:-1:-1;40169:10:0;40162:18;;;;:6;:18;;;;;;;;40139:41;40131:99;;;;-1:-1:-1;;;40131:99:0;;13316:2:1;40131:99:0;;;13298:21:1;13355:2;13335:18;;;13328:30;13394:34;13374:18;;;13367:62;-1:-1:-1;;;13445:18:1;;;13438:43;13498:19;;40131:99:0;13114:409:1;40131:99:0;40246:6;40241:102;40258:20;;;40241:102;;;40326:5;40300:9;:23;40310:9;;40320:1;40310:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;40300:23:0;;;;;;;;;;;;-1:-1:-1;40300:23:0;:31;;-1:-1:-1;;40300:31:0;;;;;;;;;;40280:3;;;;:::i;:::-;;;;40241:102;;21207:239;21279:7;21315:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21315:16:0;21350:19;21342:73;;;;-1:-1:-1;;;21342:73:0;;14980:2:1;21342:73:0;;;14962:21:1;15019:2;14999:18;;;14992:30;15058:34;15038:18;;;15031:62;-1:-1:-1;;;15109:18:1;;;15102:39;15158:19;;21342:73:0;14778:405:1;36595:91:0;36635:13;36668:10;:8;:10::i;:::-;36661:17;;36595:91;:::o;20937:208::-;21009:7;-1:-1:-1;;;;;21037:19:0;;21029:74;;;;-1:-1:-1;;;21029:74:0;;14569:2:1;21029:74:0;;;14551:21:1;14608:2;14588:18;;;14581:30;14647:34;14627:18;;;14620:62;-1:-1:-1;;;14698:18:1;;;14691:40;14748:19;;21029:74:0;14367:406:1;21029:74:0;-1:-1:-1;;;;;;21121:16:0;;;;;:9;:16;;;;;;;20937:208::o;41604:267::-;41679:10;-1:-1:-1;;;;;41693:5:0;41679:19;;41671:54;;;;-1:-1:-1;;;41671:54:0;;15751:2:1;41671:54:0;;;15733:21:1;15790:2;15770:18;;;15763:30;-1:-1:-1;;;15809:18:1;;;15802:52;15871:18;;41671:54:0;15549:346:1;41671:54:0;41741:9;41736:128;41756:20;;;41736:128;;;41798:26;41804:9;;41814:1;41804:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;41818:5;:1;41822;41818:5;:::i;:::-;41798;:26::i;:::-;41839:11;:13;;;:11;:13;;;:::i;:::-;;;;;;41778:3;;;;;:::i;:::-;;;;41736:128;;39757:287;39839:10;-1:-1:-1;;;;;39853:5:0;39839:19;;;:41;;-1:-1:-1;39869:10:0;39862:18;;;;:6;:18;;;;;;;;39839:41;39831:94;;;;-1:-1:-1;;;39831:94:0;;20389:2:1;39831:94:0;;;20371:21:1;20428:2;20408:18;;;20401:30;20467:34;20447:18;;;20440:62;-1:-1:-1;;;20518:18:1;;;20511:38;20566:19;;39831:94:0;20187:404:1;39831:94:0;39941:6;39936:101;39953:20;;;39936:101;;;40021:4;39995:9;:23;40005:9;;40015:1;40005:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;39995:23:0;;;;;;;;;;;;-1:-1:-1;39995:23:0;:30;;-1:-1:-1;;39995:30:0;;;;;;;;;;39975:3;;;;:::i;:::-;;;;39936:101;;39582:167;39640:10;-1:-1:-1;;;;;39654:5:0;39640:19;;;:41;;-1:-1:-1;39670:10:0;39663:18;;;;:6;:18;;;;;;;;39640:41;39632:88;;;;-1:-1:-1;;;39632:88:0;;16876:2:1;39632:88:0;;;16858:21:1;16915:2;16895:18;;;16888:30;16954:34;16934:18;;;16927:62;-1:-1:-1;;;17005:18:1;;;16998:32;17047:19;;39632:88:0;16674:398:1;39632:88:0;39731:5;:10;39582:167::o;21682:104::-;21738:13;21771:7;21764:14;;;;;:::i;40358:328::-;40435:10;-1:-1:-1;;;;;40449:5:0;40435:19;;40427:65;;;;-1:-1:-1;;;40427:65:0;;12503:2:1;40427:65:0;;;12485:21:1;12542:2;12522:18;;;12515:30;12581:34;12561:18;;;12554:62;-1:-1:-1;;;12632:18:1;;;12625:31;12673:19;;40427:65:0;12301:397:1;40427:65:0;40512:12;;;;40511:13;40503:67;;;;-1:-1:-1;;;40503:67:0;;;;;;;:::i;:::-;40586:6;40581:98;40598:20;;;40581:98;;;40663:4;40640:6;:20;40647:9;;40657:1;40647:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;40640:20:0;;;;;;;;;;;;-1:-1:-1;40640:20:0;:27;;-1:-1:-1;;40640:27:0;;;;;;;;;;40620:3;;;;:::i;:::-;;;;40581:98;;37056:1566;34970:1;35568:7;;:19;;35560:63;;;;-1:-1:-1;;;35560:63:0;;21208:2:1;35560:63:0;;;21190:21:1;21247:2;21227:18;;;21220:30;21286:33;21266:18;;;21259:61;21337:18;;35560:63:0;21006:355:1;35560:63:0;34970:1;35701:7;:18;37159:10:::1;37130:16;37149:21:::0;;;:9:::1;:21;::::0;;;;;::::1;;::::0;;37206:43;::::1;;;-1:-1:-1::0;37238:10:0::1;37222:27;::::0;;;:15:::1;:27;::::0;;;;;::::1;;37221:28;37206:43;37181:68;;36076:4;37270:11;;:24;37262:54;;;::::0;-1:-1:-1;;;37262:54:0;;17279:2:1;37262:54:0::1;::::0;::::1;17261:21:1::0;17318:2;17298:18;;;17291:30;-1:-1:-1;;;17337:18:1;;;17330:47;17394:18;;37262:54:0::1;17077:341:1::0;37262:54:0::1;37334:11;::::0;::::1;::::0;::::1;;;37333:12;:30:::0;::::1;;;-1:-1:-1::0;37349:14:0::1;::::0;::::1;;37333:30;37329:183;;;37388:11;37380:47;;;::::0;-1:-1:-1;;;37380:47:0;;18796:2:1;37380:47:0::1;::::0;::::1;18778:21:1::0;18835:2;18815:18;;;18808:30;18874:25;18854:18;;;18847:53;18917:18;;37380:47:0::1;18594:347:1::0;37380:47:0::1;37329:183;;;37468:11;::::0;::::1;::::0;::::1;;;37460:40;;;::::0;-1:-1:-1;;;37460:40:0;;17625:2:1;37460:40:0::1;::::0;::::1;17607:21:1::0;17664:2;17644:18;;;17637:30;-1:-1:-1;;;17683:18:1;;;17676:46;17739:18;;37460:40:0::1;17423:340:1::0;37460:40:0::1;37546:1;37532:11;:15;:36;;;;;37566:2;37551:11;:17;;37532:36;37524:63;;;::::0;-1:-1:-1;;;37524:63:0;;9771:2:1;37524:63:0::1;::::0;::::1;9753:21:1::0;9810:2;9790:18;;;9783:30;-1:-1:-1;;;9829:18:1;;;9822:44;9883:18;;37524:63:0::1;9569:338:1::0;37524:63:0::1;37641:17;37637:310;;;37705:15;37719:1;37705:11:::0;:15:::1;:::i;:::-;37696:5;;:25;;;;:::i;:::-;37683:9;:38;37675:92;;;;-1:-1:-1::0;;;37675:92:0::1;;;;;;;:::i;:::-;37798:10;37782:27;::::0;;;:15:::1;:27;::::0;;;;:34;;-1:-1:-1;;37782:34:0::1;37812:4;37782:34;::::0;;37637:310:::1;;;37878:11;37870:5;;:19;;;;:::i;:::-;37857:9;:32;37849:86;;;;-1:-1:-1::0;;;37849:86:0::1;;;;;;;:::i;:::-;37991:11:::0;37959:656:::1;38004:21:::0;;37959:656:::1;;38062:32;38068:10;38082:11;;38080:13;;;;;:::i;:::-;::::0;;;;-1:-1:-1;38062:5:0::1;:32::i;:::-;36076:4;38113:11;;:25;38109:495;;;38159:11;:19:::0;;-1:-1:-1;;38197:22:0;;;38242:17;:61;::::1;;;-1:-1:-1::0;38302:1:0::1;38297;38264:30;38278:16:::0;38264:11;:30:::1;:::i;:::-;:34;;;;:::i;:::-;38263:40;38242:61;38238:327;;;38396:5;::::0;38336:10:::1;::::0;38328:74:::1;::::0;38391:1:::1;38358:30;38372:16:::0;38358:11;:30:::1;:::i;:::-;:34;;;;:::i;:::-;38357:44;;;;:::i;:::-;38328:74;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;38583:5;;38238:327;38433:17;38428:137;;38539:5;::::0;38483:10:::1;::::0;38475:70:::1;::::0;38505:30:::1;38519:16:::0;38505:11;:30:::1;:::i;38428:137::-;38583:5;;38109:495;38027:18:::0;::::1;::::0;::::1;:::i;:::-;;;;37959:656;;;-1:-1:-1::0;;34926:1:0;35880:7;:22;-1:-1:-1;;37056:1566:0:o;41037:155::-;41097:10;-1:-1:-1;;;;;41111:5:0;41097:19;;41089:67;;;;-1:-1:-1;;;41089:67:0;;7346:2:1;41089:67:0;;;7328:21:1;7385:2;7365:18;;;7358:30;7424:34;7404:18;;;7397:62;-1:-1:-1;;;7475:18:1;;;7468:33;7518:19;;41089:67:0;7144:399:1;41089:67:0;41167:12;:17;;-1:-1:-1;;41167:17:0;;;;;;;;;;41037:155::o;23266:295::-;-1:-1:-1;;;;;23369:24:0;;15955:10;23369:24;;23361:62;;;;-1:-1:-1;;;23361:62:0;;11334:2:1;23361:62:0;;;11316:21:1;11373:2;11353:18;;;11346:30;11412:27;11392:18;;;11385:55;11457:18;;23361:62:0;11132:349:1;23361:62:0;15955:10;23436:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;23436:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;23436:53:0;;;;;;;;;;23505:48;;6868:41:1;;;23436:42:0;;15955:10;23505:48;;6841:18:1;23505:48:0;;;;;;;23266:295;;:::o;24461:285::-;24593:41;15955:10;24626:7;24593:18;:41::i;:::-;24585:103;;;;-1:-1:-1;;;24585:103:0;;;;;;;:::i;:::-;24699:39;24713:4;24719:2;24723:7;24732:5;24699:13;:39::i;:::-;24461:285;;;;:::o;38827:375::-;38891:10;-1:-1:-1;;;;;38905:5:0;38891:19;;;:41;;-1:-1:-1;38921:10:0;38914:18;;;;:6;:18;;;;;;;;38891:41;38883:98;;;;-1:-1:-1;;;38883:98:0;;7750:2:1;38883:98:0;;;7732:21:1;7789:2;7769:18;;;7762:30;7828:34;7808:18;;;7801:62;-1:-1:-1;;;7879:18:1;;;7872:42;7931:19;;38883:98:0;7548:408:1;38883:98:0;39001:11;;;;;;;39000:12;38992:78;;;;-1:-1:-1;;;38992:78:0;;8992:2:1;38992:78:0;;;8974:21:1;9031:2;9011:18;;;9004:30;9070:34;9050:18;;;9043:62;-1:-1:-1;;;9121:18:1;;;9114:51;9182:19;;38992:78:0;8790:417:1;38992:78:0;36076:4;39089:11;;:25;;39081:83;;;;-1:-1:-1;;;39081:83:0;;13730:2:1;39081:83:0;;;13712:21:1;13769:2;13749:18;;;13742:30;13808:34;13788:18;;;13781:62;-1:-1:-1;;;13859:18:1;;;13852:43;13912:19;;39081:83:0;13528:409:1;39081:83:0;39175:14;:19;;-1:-1:-1;;39175:19:0;;;;;;;;;;38827:375::o;36800:143::-;-1:-1:-1;;;;;36888:18:0;;36864:4;36888:18;;;:9;:18;;;;;;;;:47;;;;-1:-1:-1;;;;;;;36911:24:0;;;;;:15;:24;;;;;;;;36910:25;;36800:143::o;21857:360::-;26278:4;26302:16;;;:7;:16;;;;;;21930:13;;-1:-1:-1;;;;;26302:16:0;21956:76;;;;-1:-1:-1;;;21956:76:0;;18380:2:1;21956:76:0;;;18362:21:1;18419:2;18399:18;;;18392:30;18458:34;18438:18;;;18431:62;-1:-1:-1;;;18509:18:1;;;18502:45;18564:19;;21956:76:0;18178:411:1;21956:76:0;22045:21;22069:10;:8;:10::i;:::-;22045:34;;22121:1;22103:7;22097:21;:25;:112;;;;;;;;;;;;;;;;;22162:7;22171:18;:7;:16;:18::i;:::-;22145:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22097:112;22090:119;21857:360;-1:-1:-1;;;21857:360:0:o;41883:271::-;41969:10;-1:-1:-1;;;;;41983:5:0;41969:19;;41961:65;;;;-1:-1:-1;;;41961:65:0;;11688:2:1;41961:65:0;;;11670:21:1;11727:2;11707:18;;;11700:30;11766:34;11746:18;;;11739:62;-1:-1:-1;;;11817:18:1;;;11810:31;11858:19;;41961:65:0;11486:397:1;41961:65:0;42042:9;42037:110;42057:20;;;42037:110;;;42131:4;42099:15;:29;42115:9;;42125:1;42115:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;42099:29:0;;;;;;;;;;;;-1:-1:-1;42099:29:0;:36;;-1:-1:-1;;42099:36:0;;;;;;;;;;42079:3;;;;:::i;:::-;;;;42037:110;;30090:174;30165:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30165:29:0;-1:-1:-1;;;;;30165:29:0;;;;;;;;:24;;30219:23;30165:24;30219:14;:23::i;:::-;-1:-1:-1;;;;;30210:46:0;;;;;;;;;;;30090:174;;:::o;26507:348::-;26600:4;26302:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26302:16:0;26617:73;;;;-1:-1:-1;;;26617:73:0;;12090:2:1;26617:73:0;;;12072:21:1;12129:2;12109:18;;;12102:30;12168:34;12148:18;;;12141:62;-1:-1:-1;;;12219:18:1;;;12212:42;12271:19;;26617:73:0;11888:408:1;26617:73:0;26701:13;26717:23;26732:7;26717:14;:23::i;:::-;26701:39;;26770:5;-1:-1:-1;;;;;26759:16:0;:7;-1:-1:-1;;;;;26759:16:0;;:51;;;;26803:7;-1:-1:-1;;;;;26779:31:0;:20;26791:7;26779:11;:20::i;:::-;-1:-1:-1;;;;;26779:31:0;;26759:51;:87;;;-1:-1:-1;;;;;;23753:25:0;;;23729:4;23753:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;26814:32;26751:96;26507:348;-1:-1:-1;;;;26507:348:0:o;29428:544::-;29553:4;-1:-1:-1;;;;;29526:31:0;:23;29541:7;29526:14;:23::i;:::-;-1:-1:-1;;;;;29526:31:0;;29518:85;;;;-1:-1:-1;;;29518:85:0;;17970:2:1;29518:85:0;;;17952:21:1;18009:2;17989:18;;;17982:30;18048:34;18028:18;;;18021:62;-1:-1:-1;;;18099:18:1;;;18092:39;18148:19;;29518:85:0;17768:405:1;29518:85:0;-1:-1:-1;;;;;29622:16:0;;29614:65;;;;-1:-1:-1;;;29614:65:0;;10929:2:1;29614:65:0;;;10911:21:1;10968:2;10948:18;;;10941:30;11007:34;10987:18;;;10980:62;-1:-1:-1;;;11058:18:1;;;11051:34;11102:19;;29614:65:0;10727:400:1;29614:65:0;29796:29;29813:1;29817:7;29796:8;:29::i;:::-;-1:-1:-1;;;;;29838:15:0;;;;;;:9;:15;;;;;:20;;29857:1;;29838:15;:20;;29857:1;;29838:20;:::i;:::-;;;;-1:-1:-1;;;;;;;29869:13:0;;;;;;:9;:13;;;;;:18;;29886:1;;29869:13;:18;;29886:1;;29869:18;:::i;:::-;;;;-1:-1:-1;;29898:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29898:21:0;-1:-1:-1;;;;;29898:21:0;;;;;;;;;29937:27;;29898:16;;29937:27;;;;;;;29428:544;;;:::o;36696:96::-;36748:13;36781:3;36774:10;;;;;:::i;28120:382::-;-1:-1:-1;;;;;28200:16:0;;28192:61;;;;-1:-1:-1;;;28192:61:0;;16102:2:1;28192:61:0;;;16084:21:1;;;16121:18;;;16114:30;16180:34;16160:18;;;16153:62;16232:18;;28192:61:0;15900:356:1;28192:61:0;26278:4;26302:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26302:16:0;:30;28264:58;;;;-1:-1:-1;;;28264:58:0;;9414:2:1;28264:58:0;;;9396:21:1;9453:2;9433:18;;;9426:30;9492;9472:18;;;9465:58;9540:18;;28264:58:0;9212:352:1;28264:58:0;-1:-1:-1;;;;;28393:13:0;;;;;;:9;:13;;;;;:18;;28410:1;;28393:13;:18;;28410:1;;28393:18;:::i;:::-;;;;-1:-1:-1;;28422:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28422:21:0;-1:-1:-1;;;;;28422:21:0;;;;;;;;28461:33;;28422:16;;;28461:33;;28422:16;;28461:33;28120:382;;:::o;25628:272::-;25742:28;25752:4;25758:2;25762:7;25742:9;:28::i;:::-;25789:48;25812:4;25818:2;25822:7;25831:5;25789:22;:48::i;:::-;25781:111;;;;-1:-1:-1;;;25781:111:0;;;;;;;:::i;16528:723::-;16584:13;16805:10;16801:53;;-1:-1:-1;;16832:10:0;;;;;;;;;;;;-1:-1:-1;;;16832:10:0;;;;;16528:723::o;16801:53::-;16879:5;16864:12;16920:78;16927:9;;16920:78;;16953:8;;;;:::i;:::-;;-1:-1:-1;16976:10:0;;-1:-1:-1;16984:2:0;16976:10;;:::i;:::-;;;16920:78;;;17008:19;17040:6;17030:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17030:17:0;;17008:39;;17058:154;17065:10;;17058:154;;17092:11;17102:1;17092:11;;:::i;:::-;;-1:-1:-1;17161:10:0;17169:2;17161:5;:10;:::i;:::-;17148:24;;:2;:24;:::i;:::-;17135:39;;17118:6;17125;17118:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17118:56:0;;;;;;;;-1:-1:-1;17189:11:0;17198:2;17189:11;;:::i;:::-;;;17058:154;;30829:843;30950:4;-1:-1:-1;;;;;30976:13:0;;8361:20;8400:8;30972:693;;31012:72;;-1:-1:-1;;;31012:72:0;;-1:-1:-1;;;;;31012:36:0;;;;;:72;;15955:10;;31063:4;;31069:7;;31078:5;;31012:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31012:72:0;;;;;;;;-1:-1:-1;;31012:72:0;;;;;;;;;;;;:::i;:::-;;;31008:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31258:13:0;;31254:341;;31301:60;;-1:-1:-1;;;31301:60:0;;;;;;;:::i;31254:341::-;31545:6;31539:13;31530:6;31526:2;31522:15;31515:38;31008:602;-1:-1:-1;;;;;;31135:55:0;-1:-1:-1;;;31135:55:0;;-1:-1:-1;31128:62:0;;30972:693;-1:-1:-1;31649:4:0;30829:843;;;;;;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:160::-;257:20;;313:13;;306:21;296:32;;286:60;;342:1;339;332:12;357:186;416:6;469:2;457:9;448:7;444:23;440:32;437:52;;;485:1;482;475:12;437:52;508:29;527:9;508:29;:::i;548:260::-;616:6;624;677:2;665:9;656:7;652:23;648:32;645:52;;;693:1;690;683:12;645:52;716:29;735:9;716:29;:::i;:::-;706:39;;764:38;798:2;787:9;783:18;764:38;:::i;:::-;754:48;;548:260;;;;;:::o;813:328::-;890:6;898;906;959:2;947:9;938:7;934:23;930:32;927:52;;;975:1;972;965:12;927:52;998:29;1017:9;998:29;:::i;:::-;988:39;;1046:38;1080:2;1069:9;1065:18;1046:38;:::i;:::-;1036:48;;1131:2;1120:9;1116:18;1103:32;1093:42;;813:328;;;;;:::o;1146:1138::-;1241:6;1249;1257;1265;1318:3;1306:9;1297:7;1293:23;1289:33;1286:53;;;1335:1;1332;1325:12;1286:53;1358:29;1377:9;1358:29;:::i;:::-;1348:39;;1406:38;1440:2;1429:9;1425:18;1406:38;:::i;:::-;1396:48;;1491:2;1480:9;1476:18;1463:32;1453:42;;1546:2;1535:9;1531:18;1518:32;1569:18;1610:2;1602:6;1599:14;1596:34;;;1626:1;1623;1616:12;1596:34;1664:6;1653:9;1649:22;1639:32;;1709:7;1702:4;1698:2;1694:13;1690:27;1680:55;;1731:1;1728;1721:12;1680:55;1767:2;1754:16;1789:2;1785;1782:10;1779:36;;;1795:18;;:::i;:::-;1870:2;1864:9;1838:2;1924:13;;-1:-1:-1;;1920:22:1;;;1944:2;1916:31;1912:40;1900:53;;;1968:18;;;1988:22;;;1965:46;1962:72;;;2014:18;;:::i;:::-;2054:10;2050:2;2043:22;2089:2;2081:6;2074:18;2129:7;2124:2;2119;2115;2111:11;2107:20;2104:33;2101:53;;;2150:1;2147;2140:12;2101:53;2206:2;2201;2197;2193:11;2188:2;2180:6;2176:15;2163:46;2251:1;2246:2;2241;2233:6;2229:15;2225:24;2218:35;2272:6;2262:16;;;;;;;1146:1138;;;;;;;:::o;2289:254::-;2354:6;2362;2415:2;2403:9;2394:7;2390:23;2386:32;2383:52;;;2431:1;2428;2421:12;2383:52;2454:29;2473:9;2454:29;:::i;:::-;2444:39;;2502:35;2533:2;2522:9;2518:18;2502:35;:::i;2548:254::-;2616:6;2624;2677:2;2665:9;2656:7;2652:23;2648:32;2645:52;;;2693:1;2690;2683:12;2645:52;2716:29;2735:9;2716:29;:::i;:::-;2706:39;2792:2;2777:18;;;;2764:32;;-1:-1:-1;;;2548:254:1:o;2807:615::-;2893:6;2901;2954:2;2942:9;2933:7;2929:23;2925:32;2922:52;;;2970:1;2967;2960:12;2922:52;3010:9;2997:23;3039:18;3080:2;3072:6;3069:14;3066:34;;;3096:1;3093;3086:12;3066:34;3134:6;3123:9;3119:22;3109:32;;3179:7;3172:4;3168:2;3164:13;3160:27;3150:55;;3201:1;3198;3191:12;3150:55;3241:2;3228:16;3267:2;3259:6;3256:14;3253:34;;;3283:1;3280;3273:12;3253:34;3336:7;3331:2;3321:6;3318:1;3314:14;3310:2;3306:23;3302:32;3299:45;3296:65;;;3357:1;3354;3347:12;3296:65;3388:2;3380:11;;;;;3410:6;;-1:-1:-1;2807:615:1;;-1:-1:-1;;;;2807:615:1:o;3427:180::-;3483:6;3536:2;3524:9;3515:7;3511:23;3507:32;3504:52;;;3552:1;3549;3542:12;3504:52;3575:26;3591:9;3575:26;:::i;3612:245::-;3670:6;3723:2;3711:9;3702:7;3698:23;3694:32;3691:52;;;3739:1;3736;3729:12;3691:52;3778:9;3765:23;3797:30;3821:5;3797:30;:::i;3862:249::-;3931:6;3984:2;3972:9;3963:7;3959:23;3955:32;3952:52;;;4000:1;3997;3990:12;3952:52;4032:9;4026:16;4051:30;4075:5;4051:30;:::i;4116:180::-;4175:6;4228:2;4216:9;4207:7;4203:23;4199:32;4196:52;;;4244:1;4241;4234:12;4196:52;-1:-1:-1;4267:23:1;;4116:180;-1:-1:-1;4116:180:1:o;4301:248::-;4369:6;4377;4430:2;4418:9;4409:7;4405:23;4401:32;4398:52;;;4446:1;4443;4436:12;4398:52;-1:-1:-1;;4469:23:1;;;4539:2;4524:18;;;4511:32;;-1:-1:-1;4301:248:1:o;4554:257::-;4595:3;4633:5;4627:12;4660:6;4655:3;4648:19;4676:63;4732:6;4725:4;4720:3;4716:14;4709:4;4702:5;4698:16;4676:63;:::i;:::-;4793:2;4772:15;-1:-1:-1;;4768:29:1;4759:39;;;;4800:4;4755:50;;4554:257;-1:-1:-1;;4554:257:1:o;4816:470::-;4995:3;5033:6;5027:13;5049:53;5095:6;5090:3;5083:4;5075:6;5071:17;5049:53;:::i;:::-;5165:13;;5124:16;;;;5187:57;5165:13;5124:16;5221:4;5209:17;;5187:57;:::i;:::-;5260:20;;4816:470;-1:-1:-1;;;;4816:470:1:o;5499:488::-;-1:-1:-1;;;;;5768:15:1;;;5750:34;;5820:15;;5815:2;5800:18;;5793:43;5867:2;5852:18;;5845:34;;;5915:3;5910:2;5895:18;;5888:31;;;5693:4;;5936:45;;5961:19;;5953:6;5936:45;:::i;:::-;5928:53;5499:488;-1:-1:-1;;;;;;5499:488:1:o;5992:731::-;6210:2;6222:21;;;6292:13;;6195:18;;;6314:22;;;6162:4;;6389;;6367:2;6352:18;;;6416:15;;;6162:4;6459:195;6473:6;6470:1;6467:13;6459:195;;;6538:13;;-1:-1:-1;;;;;6534:39:1;6522:52;;6594:12;;;;6629:15;;;;6570:1;6488:9;6459:195;;;-1:-1:-1;;;6690:18:1;;6683:34;;;;6671:3;5992:731;-1:-1:-1;;5992:731:1:o;6920:219::-;7069:2;7058:9;7051:21;7032:4;7089:44;7129:2;7118:9;7114:18;7106:6;7089:44;:::i;7961:405::-;8163:2;8145:21;;;8202:2;8182:18;;;8175:30;8241:34;8236:2;8221:18;;8214:62;-1:-1:-1;;;8307:2:1;8292:18;;8285:39;8356:3;8341:19;;7961:405::o;8371:414::-;8573:2;8555:21;;;8612:2;8592:18;;;8585:30;8651:34;8646:2;8631:18;;8624:62;-1:-1:-1;;;8717:2:1;8702:18;;8695:48;8775:3;8760:19;;8371:414::o;9912:405::-;10114:2;10096:21;;;10153:2;10133:18;;;10126:30;10192:34;10187:2;10172:18;;10165:62;-1:-1:-1;;;10258:2:1;10243:18;;10236:39;10307:3;10292:19;;9912:405::o;19769:413::-;19971:2;19953:21;;;20010:2;19990:18;;;19983:30;20049:34;20044:2;20029:18;;20022:62;-1:-1:-1;;;20115:2:1;20100:18;;20093:47;20172:3;20157:19;;19769:413::o;21548:128::-;21588:3;21619:1;21615:6;21612:1;21609:13;21606:39;;;21625:18;;:::i;:::-;-1:-1:-1;21661:9:1;;21548:128::o;21681:120::-;21721:1;21747;21737:35;;21752:18;;:::i;:::-;-1:-1:-1;21786:9:1;;21681:120::o;21806:168::-;21846:7;21912:1;21908;21904:6;21900:14;21897:1;21894:21;21889:1;21882:9;21875:17;21871:45;21868:71;;;21919:18;;:::i;:::-;-1:-1:-1;21959:9:1;;21806:168::o;21979:125::-;22019:4;22047:1;22044;22041:8;22038:34;;;22052:18;;:::i;:::-;-1:-1:-1;22089:9:1;;21979:125::o;22109:258::-;22181:1;22191:113;22205:6;22202:1;22199:13;22191:113;;;22281:11;;;22275:18;22262:11;;;22255:39;22227:2;22220:10;22191:113;;;22322:6;22319:1;22316:13;22313:48;;;-1:-1:-1;;22357:1:1;22339:16;;22332:27;22109:258::o;22372:136::-;22411:3;22439:5;22429:39;;22448:18;;:::i;:::-;-1:-1:-1;;;22484:18:1;;22372:136::o;22513:380::-;22592:1;22588:12;;;;22635;;;22656:61;;22710:4;22702:6;22698:17;22688:27;;22656:61;22763:2;22755:6;22752:14;22732:18;22729:38;22726:161;;;22809:10;22804:3;22800:20;22797:1;22790:31;22844:4;22841:1;22834:15;22872:4;22869:1;22862:15;22726:161;;22513:380;;;:::o;22898:135::-;22937:3;-1:-1:-1;;22958:17:1;;22955:43;;;22978:18;;:::i;:::-;-1:-1:-1;23025:1:1;23014:13;;22898:135::o;23038:112::-;23070:1;23096;23086:35;;23101:18;;:::i;:::-;-1:-1:-1;23135:9:1;;23038:112::o;23155:127::-;23216:10;23211:3;23207:20;23204:1;23197:31;23247:4;23244:1;23237:15;23271:4;23268:1;23261:15;23287:127;23348:10;23343:3;23339:20;23336:1;23329:31;23379:4;23376:1;23369:15;23403:4;23400:1;23393:15;23419:127;23480:10;23475:3;23471:20;23468:1;23461:31;23511:4;23508:1;23501:15;23535:4;23532:1;23525:15;23551:127;23612:10;23607:3;23603:20;23600:1;23593:31;23643:4;23640:1;23633:15;23667:4;23664:1;23657:15;23683:131;-1:-1:-1;;;;;;23757:32:1;;23747:43;;23737:71;;23804:1;23801;23794:12

Swarm Source

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