ETH Price: $3,259.69 (+3.34%)
Gas: 3 Gwei

AutoMintBot (AMB)
 

Overview

TokenID

123

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

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:
AutoMintApp

Compiler Version
v0.8.14+commit.80d49f37

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-16
*/

// SPDX-License-Identifier: MIT
// File: contracts/automint.sol



// File 1: Address.sol

// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// FILE 2: 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 3: Strings.sol

// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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


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


// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

// File 4: Ownable.sol


pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

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

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





// File 5: IERC165.sol

pragma solidity ^0.8.0;

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


// File 6: 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 7: IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (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 returns (string memory);
}




// File 8: ERC165.sol

// OpenZeppelin Contracts v4.4.1 (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 9: ERC721.sol

// OpenZeppelin Contracts (last updated v4.5.0) (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 virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overridden 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"
        );
        if (to.isContract()) {
            revert ("Token transfer to contract address is not allowed.");
        } else {
            _approve(to, tokenId);
        }
        // _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 {
        _setApprovalForAll(_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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}





// File 10: IERC721Enumerable.sol

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);
}






// File 11: ERC721Enumerable.sol

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



// File 12: IERC721Receiver.sol

// OpenZeppelin Contracts v4.4.1 (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 13: ERC721A.sol

pragma solidity ^0.8.0;


error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable, Ownable {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex = 1;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    //Allow all tokens to transfer to contract
    bool public allowedToContract = false;

    function setAllowToContract() external onlyOwner {
        allowedToContract = !allowedToContract;
    }

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

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

    // Mapping token to allow to transfer to contract
    mapping(uint256 => bool) public _transferToContract;


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

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




    function setAllowTokenToContract(uint256 _tokenId, bool _allow) external onlyOwner {
        _transferToContract[_tokenId] = _allow;
    }

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (!ownership.burned) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }
        revert TokenIndexOutOfBounds();
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        revert();
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant: 
                    // There will always be an ownership that has an address and is not burned 
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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 virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }
        if(!allowedToContract && !_transferToContract[tokenId]){
            if (to.isContract()) {
                revert ("Token transfer to contract address is not allowed.");
            } else {
                _approve(to, tokenId, owner);
            }
        } else {
            _approve(to, tokenId, owner);
        }
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public override {
        if (operator == _msgSender()) revert ApproveToCaller();
        
        if(!allowedToContract){
            if (operator.isContract()) {
                revert ("Token transfer to contract address is not allowed.");
            } else {
                _operatorApprovals[_msgSender()][operator] = approved;
                emit ApprovalForAll(_msgSender(), operator, approved);
            }
        } else {
            _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 {
        _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 {
        _transfer(from, to, tokenId);
        if (!_checkOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        require(tokenId > 0, "Invalid TokenId");
        return tokenId < _currentIndex && !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @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 {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked { 
            _burnCounter++;
        }
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(
        address to,
        uint256 tokenId,
        address owner
    ) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(owner, 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(!allowedToContract && !_transferToContract[tokenId]){
            if (to.isContract()) {
                revert ("Token transfer to contract address is not allowed.");
            } else {
                return true;
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

// FILE 14: T12.sol


contract AutoMintApp is ERC721A {
    using Strings for uint256;
    uint256 public cost;
    uint256 public maxSupply;
    string private BASE_URI;
    uint256 public MAX_MINT_AMOUNT_PER_TX;
    bool public IS_SALE_ACTIVE;


    constructor(
        uint256 price,
        uint256 max_Supply,
        string memory baseUri,
        uint256 maxMintPerTx,
        bool isSaleActive
    ) ERC721A("AutoMintBot", "AMB") {
        cost = price;
        maxSupply = max_Supply;
        BASE_URI = baseUri;
        MAX_MINT_AMOUNT_PER_TX = maxMintPerTx;
        IS_SALE_ACTIVE = isSaleActive;
    }


    /** GETTERS **/

    function _baseURI() internal view virtual override returns (string memory) {
        return BASE_URI;
    }

    /** SETTERS **/

    function setPrice(uint256 customPrice) external onlyOwner {
        cost = customPrice;
    }


    function lowerMaxSupply(uint256 newMaxSupply) external onlyOwner {
        require(newMaxSupply >= _currentIndex, "Invalid new max supply");
        maxSupply = newMaxSupply;
    }

    function setBaseURI(string memory customBaseURI_) external onlyOwner {
        BASE_URI = customBaseURI_;
    }

   

    function setMaxMintPerTx(uint256 maxMintPerTx) external onlyOwner {
        MAX_MINT_AMOUNT_PER_TX = maxMintPerTx;
    }

    function setSaleActive(bool saleIsActive) external onlyOwner {
        IS_SALE_ACTIVE = saleIsActive;
    }


    /** MINT **/

    modifier mintCompliance(uint256 _mintAmount) {
        require(
            _mintAmount > 0 && _mintAmount <= MAX_MINT_AMOUNT_PER_TX,
            "Invalid mint amount!"
        );
        require(
            _currentIndex + _mintAmount <= maxSupply,
            "Max supply exceeded!"
        );
        _;
    }

    function mint(uint256 _mintAmount)
        public
        payable
        mintCompliance(_mintAmount)
    {
        require(IS_SALE_ACTIVE, "Sale is not active!");

        uint256 price = cost * _mintAmount;

        require(msg.value >= price, "Insufficient funds!");

        _safeMint(msg.sender, _mintAmount);
    }

    function godMint(address _to, uint256 _mintAmount)
        public
        mintCompliance(_mintAmount)
        onlyOwner
    {
        _safeMint(_to, _mintAmount);
    }

    /** PAYOUT **/

    function withdraw() external onlyOwner {
        (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
        require(success, "Transfer failed.");
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"max_Supply","type":"uint256"},{"internalType":"string","name":"baseUri","type":"string"},{"internalType":"uint256","name":"maxMintPerTx","type":"uint256"},{"internalType":"bool","name":"isSaleActive","type":"bool"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"IS_SALE_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_AMOUNT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"_transferToContract","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowedToContract","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"godMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"lowerMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setAllowToContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"bool","name":"_allow","type":"bool"}],"name":"setAllowTokenToContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"customBaseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMintPerTx","type":"uint256"}],"name":"setMaxMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"customPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"saleIsActive","type":"bool"}],"name":"setSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600180556000600560006101000a81548160ff0219169083151502179055503480156200003057600080fd5b5060405162004693380380620046938339818101604052810190620000569190620004c6565b6040518060400160405280600b81526020017f4175746f4d696e74426f740000000000000000000000000000000000000000008152506040518060400160405280600381526020017f414d4200000000000000000000000000000000000000000000000000000000008152506000620000d4620001f960201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35081600390805190602001906200018a92919062000201565b508060049080519060200190620001a392919062000201565b50505084600d8190555083600e8190555082600f9080519060200190620001cc92919062000201565b508160108190555080601160006101000a81548160ff0219169083151502179055505050505050620005d1565b600033905090565b8280546200020f906200059c565b90600052602060002090601f0160209004810192826200023357600085556200027f565b82601f106200024e57805160ff19168380011785556200027f565b828001600101855582156200027f579182015b828111156200027e57825182559160200191906001019062000261565b5b5090506200028e919062000292565b5090565b5b80821115620002ad57600081600090555060010162000293565b5090565b6000604051905090565b600080fd5b600080fd5b6000819050919050565b620002da81620002c5565b8114620002e657600080fd5b50565b600081519050620002fa81620002cf565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000355826200030a565b810181811067ffffffffffffffff821117156200037757620003766200031b565b5b80604052505050565b60006200038c620002b1565b90506200039a82826200034a565b919050565b600067ffffffffffffffff821115620003bd57620003bc6200031b565b5b620003c8826200030a565b9050602081019050919050565b60005b83811015620003f5578082015181840152602081019050620003d8565b8381111562000405576000848401525b50505050565b6000620004226200041c846200039f565b62000380565b90508281526020810184848401111562000441576200044062000305565b5b6200044e848285620003d5565b509392505050565b600082601f8301126200046e576200046d62000300565b5b8151620004808482602086016200040b565b91505092915050565b60008115159050919050565b620004a08162000489565b8114620004ac57600080fd5b50565b600081519050620004c08162000495565b92915050565b600080600080600060a08688031215620004e557620004e4620002bb565b5b6000620004f588828901620002e9565b95505060206200050888828901620002e9565b945050604086015167ffffffffffffffff8111156200052c576200052b620002c0565b5b6200053a8882890162000456565b93505060606200054d88828901620002e9565b92505060806200056088828901620004af565b9150509295509295909350565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005b557607f821691505b602082108103620005cb57620005ca6200056d565b5b50919050565b6140b280620005e16000396000f3fe6080604052600436106102045760003560e01c80636352211e11610118578063a0712d68116100a0578063c4e9374d1161006f578063c4e9374d14610730578063c87b56dd14610759578063d5abeb0114610796578063e985e9c5146107c1578063f2fde38b146107fe57610204565b8063a0712d6814610685578063a22cb465146106a1578063b88d4fde146106ca578063c0805197146106f357610204565b8063801fe59b116100e7578063801fe59b146105c6578063841718a6146105dd5780638da5cb5b1461060657806391b7f5ed1461063157806395d89b411461065a57610204565b80636352211e1461050a57806370a0823114610547578063715018a61461058457806376d02b711461059b57610204565b80632f745c591161019b5780634aaf78f11161016a5780634aaf78f1146104275780634f6ccce71461045257806355a554651461048f57806355f804b3146104b8578063616cdb1e146104e157610204565b80632f745c59146103815780633ccfd60b146103be57806341f4a21e146103d557806342842e0e146103fe57610204565b806309ef6527116101d757806309ef6527146102d757806313faede61461030257806318160ddd1461032d57806323b872dd1461035857610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190613197565b610827565b60405161023d91906131df565b60405180910390f35b34801561025257600080fd5b5061025b610971565b6040516102689190613293565b60405180910390f35b34801561027d57600080fd5b50610298600480360381019061029391906132eb565b610a03565b6040516102a59190613359565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d091906133a0565b610a7f565b005b3480156102e357600080fd5b506102ec610c39565b6040516102f991906133ef565b60405180910390f35b34801561030e57600080fd5b50610317610c3f565b60405161032491906133ef565b60405180910390f35b34801561033957600080fd5b50610342610c45565b60405161034f91906133ef565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a919061340a565b610c53565b005b34801561038d57600080fd5b506103a860048036038101906103a391906133a0565b610c63565b6040516103b591906133ef565b60405180910390f35b3480156103ca57600080fd5b506103d3610e3a565b005b3480156103e157600080fd5b506103fc60048036038101906103f791906133a0565b610f65565b005b34801561040a57600080fd5b506104256004803603810190610420919061340a565b611094565b005b34801561043357600080fd5b5061043c6110b4565b60405161044991906131df565b60405180910390f35b34801561045e57600080fd5b50610479600480360381019061047491906132eb565b6110c7565b60405161048691906133ef565b60405180910390f35b34801561049b57600080fd5b506104b660048036038101906104b19190613489565b61120b565b005b3480156104c457600080fd5b506104df60048036038101906104da91906135fe565b6112b6565b005b3480156104ed57600080fd5b50610508600480360381019061050391906132eb565b61134c565b005b34801561051657600080fd5b50610531600480360381019061052c91906132eb565b6113d2565b60405161053e9190613359565b60405180910390f35b34801561055357600080fd5b5061056e60048036038101906105699190613647565b6113e8565b60405161057b91906133ef565b60405180910390f35b34801561059057600080fd5b506105996114b7565b005b3480156105a757600080fd5b506105b06115f1565b6040516105bd91906131df565b60405180910390f35b3480156105d257600080fd5b506105db611604565b005b3480156105e957600080fd5b5061060460048036038101906105ff9190613674565b6116ac565b005b34801561061257600080fd5b5061061b611745565b6040516106289190613359565b60405180910390f35b34801561063d57600080fd5b50610658600480360381019061065391906132eb565b61176e565b005b34801561066657600080fd5b5061066f6117f4565b60405161067c9190613293565b60405180910390f35b61069f600480360381019061069a91906132eb565b611886565b005b3480156106ad57600080fd5b506106c860048036038101906106c391906136a1565b6119dd565b005b3480156106d657600080fd5b506106f160048036038101906106ec9190613782565b611cd4565b005b3480156106ff57600080fd5b5061071a600480360381019061071591906132eb565b611d27565b60405161072791906131df565b60405180910390f35b34801561073c57600080fd5b50610757600480360381019061075291906132eb565b611d47565b005b34801561076557600080fd5b50610780600480360381019061077b91906132eb565b611e12565b60405161078d9190613293565b60405180910390f35b3480156107a257600080fd5b506107ab611eb9565b6040516107b891906133ef565b60405180910390f35b3480156107cd57600080fd5b506107e860048036038101906107e39190613805565b611ebf565b6040516107f591906131df565b60405180910390f35b34801561080a57600080fd5b5061082560048036038101906108209190613647565b611f53565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061095a57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061096a5750610969826120fb565b5b9050919050565b60606003805461098090613874565b80601f01602080910402602001604051908101604052809291908181526020018280546109ac90613874565b80156109f95780601f106109ce576101008083540402835291602001916109f9565b820191906000526020600020905b8154815290600101906020018083116109dc57829003601f168201915b5050505050905090565b6000610a0e82612165565b610a44576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6008600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8a826113d2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610af1576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b106121e2565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b425750610b4081610b3b6121e2565b611ebf565b155b15610b79576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560009054906101000a900460ff16158015610bb45750600a600083815260200190815260200160002060009054906101000a900460ff16155b15610c2857610bd88373ffffffffffffffffffffffffffffffffffffffff166121ea565b15610c18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0f90613917565b60405180910390fd5b610c2383838361220d565b610c34565b610c3383838361220d565b5b505050565b60105481565b600d5481565b600060025460015403905090565b610c5e8383836122bf565b505050565b6000610c6e836113e8565b8210610ca6576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600154905060008060005b83811015610e2f576000600660008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610d905750610e22565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610dd057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e2057868403610e17578195505050505050610e34565b83806001019450505b505b8080600101915050610cb3565b600080fd5b92915050565b610e426121e2565b73ffffffffffffffffffffffffffffffffffffffff16610e60611745565b73ffffffffffffffffffffffffffffffffffffffff1614610eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ead90613983565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610edc906139d4565b60006040518083038185875af1925050503d8060008114610f19576040519150601f19603f3d011682016040523d82523d6000602084013e610f1e565b606091505b5050905080610f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5990613a35565b60405180910390fd5b50565b80600081118015610f7857506010548111155b610fb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fae90613aa1565b60405180910390fd5b600e5481600154610fc89190613af0565b1115611009576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100090613b92565b60405180910390fd5b6110116121e2565b73ffffffffffffffffffffffffffffffffffffffff1661102f611745565b73ffffffffffffffffffffffffffffffffffffffff1614611085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107c90613983565b60405180910390fd5b61108f83836127ae565b505050565b6110af83838360405180602001604052806000815250611cd4565b505050565b600560009054906101000a900460ff1681565b60008060015490506000805b828110156111d3576000600660008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516111c5578583036111bc5781945050505050611206565b82806001019350505b5080806001019150506110d3565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6112136121e2565b73ffffffffffffffffffffffffffffffffffffffff16611231611745565b73ffffffffffffffffffffffffffffffffffffffff1614611287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127e90613983565b60405180910390fd5b80600a600084815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6112be6121e2565b73ffffffffffffffffffffffffffffffffffffffff166112dc611745565b73ffffffffffffffffffffffffffffffffffffffff1614611332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132990613983565b60405180910390fd5b80600f9080519060200190611348929190613045565b5050565b6113546121e2565b73ffffffffffffffffffffffffffffffffffffffff16611372611745565b73ffffffffffffffffffffffffffffffffffffffff16146113c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bf90613983565b60405180910390fd5b8060108190555050565b60006113dd826127cc565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361144f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6114bf6121e2565b73ffffffffffffffffffffffffffffffffffffffff166114dd611745565b73ffffffffffffffffffffffffffffffffffffffff1614611533576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152a90613983565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b601160009054906101000a900460ff1681565b61160c6121e2565b73ffffffffffffffffffffffffffffffffffffffff1661162a611745565b73ffffffffffffffffffffffffffffffffffffffff1614611680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167790613983565b60405180910390fd5b600560009054906101000a900460ff1615600560006101000a81548160ff021916908315150217905550565b6116b46121e2565b73ffffffffffffffffffffffffffffffffffffffff166116d2611745565b73ffffffffffffffffffffffffffffffffffffffff1614611728576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171f90613983565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6117766121e2565b73ffffffffffffffffffffffffffffffffffffffff16611794611745565b73ffffffffffffffffffffffffffffffffffffffff16146117ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e190613983565b60405180910390fd5b80600d8190555050565b60606004805461180390613874565b80601f016020809104026020016040519081016040528092919081815260200182805461182f90613874565b801561187c5780601f106118515761010080835404028352916020019161187c565b820191906000526020600020905b81548152906001019060200180831161185f57829003601f168201915b5050505050905090565b8060008111801561189957506010548111155b6118d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cf90613aa1565b60405180910390fd5b600e54816001546118e99190613af0565b111561192a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192190613b92565b60405180910390fd5b601160009054906101000a900460ff16611979576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197090613bfe565b60405180910390fd5b600082600d546119899190613c1e565b9050803410156119ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c590613cc4565b60405180910390fd5b6119d833846127ae565b505050565b6119e56121e2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a49576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560009054906101000a900460ff16611bc857611a7c8273ffffffffffffffffffffffffffffffffffffffff166121ea565b15611abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab390613917565b60405180910390fd5b8060096000611ac96121e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b766121e2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bbb91906131df565b60405180910390a3611cd0565b8060096000611bd56121e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c826121e2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cc791906131df565b60405180910390a35b5050565b611cdf8484846122bf565b611ceb84848484612a48565b611d21576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600a6020528060005260406000206000915054906101000a900460ff1681565b611d4f6121e2565b73ffffffffffffffffffffffffffffffffffffffff16611d6d611745565b73ffffffffffffffffffffffffffffffffffffffff1614611dc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dba90613983565b60405180910390fd5b600154811015611e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dff90613d30565b60405180910390fd5b80600e8190555050565b6060611e1d82612165565b611e5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5390613dc2565b60405180910390fd5b6000611e66612aff565b90506000815111611e865760405180602001604052806000815250611eb1565b80611e9084612b91565b604051602001611ea1929190613e1e565b6040516020818303038152906040525b915050919050565b600e5481565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f5b6121e2565b73ffffffffffffffffffffffffffffffffffffffff16611f79611745565b73ffffffffffffffffffffffffffffffffffffffff1614611fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc690613983565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361203e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203590613eb4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008082116121a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a090613f20565b60405180910390fd5b600154821080156121db575060066000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b826008600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006122ca826127cc565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166122f16121e2565b73ffffffffffffffffffffffffffffffffffffffff1614806123245750612323826000015161231e6121e2565b611ebf565b5b8061236957506123326121e2565b73ffffffffffffffffffffffffffffffffffffffff1661235184610a03565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806123a2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461240b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612471576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61247e8585856001612cf1565b61248e600084846000015161220d565b6001600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836006600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426006600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361273e5760015481101561273d5782600001516006600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516006600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127a78585856001612cf7565b5050505050565b6127c8828260405180602001604052806000815250612cfd565b5050565b6127d46130cb565b6000829050600154811015612a11576000600660008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612a0f57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128f3578092505050612a43565b5b600115612a0e57818060019003925050600660008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a09578092505050612a43565b6128f4565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600560009054906101000a900460ff16158015612a855750600a600084815260200190815260200160002060009054906101000a900460ff16155b15612af257612aa98473ffffffffffffffffffffffffffffffffffffffff166121ea565b15612ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae090613917565b60405180910390fd5b60019050612af7565b600190505b949350505050565b6060600f8054612b0e90613874565b80601f0160208091040260200160405190810160405280929190818152602001828054612b3a90613874565b8015612b875780601f10612b5c57610100808354040283529160200191612b87565b820191906000526020600020905b815481529060010190602001808311612b6a57829003601f168201915b5050505050905090565b606060008203612bd8576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612cec565b600082905060005b60008214612c0a578080612bf390613f40565b915050600a82612c039190613fb7565b9150612be0565b60008167ffffffffffffffff811115612c2657612c256134d3565b5b6040519080825280601f01601f191660200182016040528015612c585781602001600182028036833780820191505090505b5090505b60008514612ce557600182612c719190613fe8565b9150600a85612c80919061401c565b6030612c8c9190613af0565b60f81b818381518110612ca257612ca161404d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612cde9190613fb7565b9450612c5c565b8093505050505b919050565b50505050565b50505050565b612d0a8383836001612d0f565b505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612d7c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612db6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612dc36000868387612cf1565b83600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846006600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426006600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561302857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612fdc5750612fda6000888488612a48565b155b15613013576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612f61565b50806001819055505061303e6000868387612cf7565b5050505050565b82805461305190613874565b90600052602060002090601f01602090048101928261307357600085556130ba565b82601f1061308c57805160ff19168380011785556130ba565b828001600101855582156130ba579182015b828111156130b957825182559160200191906001019061309e565b5b5090506130c7919061310e565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561312757600081600090555060010161310f565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6131748161313f565b811461317f57600080fd5b50565b6000813590506131918161316b565b92915050565b6000602082840312156131ad576131ac613135565b5b60006131bb84828501613182565b91505092915050565b60008115159050919050565b6131d9816131c4565b82525050565b60006020820190506131f460008301846131d0565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613234578082015181840152602081019050613219565b83811115613243576000848401525b50505050565b6000601f19601f8301169050919050565b6000613265826131fa565b61326f8185613205565b935061327f818560208601613216565b61328881613249565b840191505092915050565b600060208201905081810360008301526132ad818461325a565b905092915050565b6000819050919050565b6132c8816132b5565b81146132d357600080fd5b50565b6000813590506132e5816132bf565b92915050565b60006020828403121561330157613300613135565b5b600061330f848285016132d6565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061334382613318565b9050919050565b61335381613338565b82525050565b600060208201905061336e600083018461334a565b92915050565b61337d81613338565b811461338857600080fd5b50565b60008135905061339a81613374565b92915050565b600080604083850312156133b7576133b6613135565b5b60006133c58582860161338b565b92505060206133d6858286016132d6565b9150509250929050565b6133e9816132b5565b82525050565b600060208201905061340460008301846133e0565b92915050565b60008060006060848603121561342357613422613135565b5b60006134318682870161338b565b93505060206134428682870161338b565b9250506040613453868287016132d6565b9150509250925092565b613466816131c4565b811461347157600080fd5b50565b6000813590506134838161345d565b92915050565b600080604083850312156134a05761349f613135565b5b60006134ae858286016132d6565b92505060206134bf85828601613474565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61350b82613249565b810181811067ffffffffffffffff8211171561352a576135296134d3565b5b80604052505050565b600061353d61312b565b90506135498282613502565b919050565b600067ffffffffffffffff821115613569576135686134d3565b5b61357282613249565b9050602081019050919050565b82818337600083830152505050565b60006135a161359c8461354e565b613533565b9050828152602081018484840111156135bd576135bc6134ce565b5b6135c884828561357f565b509392505050565b600082601f8301126135e5576135e46134c9565b5b81356135f584826020860161358e565b91505092915050565b60006020828403121561361457613613613135565b5b600082013567ffffffffffffffff8111156136325761363161313a565b5b61363e848285016135d0565b91505092915050565b60006020828403121561365d5761365c613135565b5b600061366b8482850161338b565b91505092915050565b60006020828403121561368a57613689613135565b5b600061369884828501613474565b91505092915050565b600080604083850312156136b8576136b7613135565b5b60006136c68582860161338b565b92505060206136d785828601613474565b9150509250929050565b600067ffffffffffffffff8211156136fc576136fb6134d3565b5b61370582613249565b9050602081019050919050565b6000613725613720846136e1565b613533565b905082815260208101848484011115613741576137406134ce565b5b61374c84828561357f565b509392505050565b600082601f830112613769576137686134c9565b5b8135613779848260208601613712565b91505092915050565b6000806000806080858703121561379c5761379b613135565b5b60006137aa8782880161338b565b94505060206137bb8782880161338b565b93505060406137cc878288016132d6565b925050606085013567ffffffffffffffff8111156137ed576137ec61313a565b5b6137f987828801613754565b91505092959194509250565b6000806040838503121561381c5761381b613135565b5b600061382a8582860161338b565b925050602061383b8582860161338b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061388c57607f821691505b60208210810361389f5761389e613845565b5b50919050565b7f546f6b656e207472616e7366657220746f20636f6e747261637420616464726560008201527f7373206973206e6f7420616c6c6f7765642e0000000000000000000000000000602082015250565b6000613901603283613205565b915061390c826138a5565b604082019050919050565b60006020820190508181036000830152613930816138f4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061396d602083613205565b915061397882613937565b602082019050919050565b6000602082019050818103600083015261399c81613960565b9050919050565b600081905092915050565b50565b60006139be6000836139a3565b91506139c9826139ae565b600082019050919050565b60006139df826139b1565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000613a1f601083613205565b9150613a2a826139e9565b602082019050919050565b60006020820190508181036000830152613a4e81613a12565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613a8b601483613205565b9150613a9682613a55565b602082019050919050565b60006020820190508181036000830152613aba81613a7e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613afb826132b5565b9150613b06836132b5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b3b57613b3a613ac1565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613b7c601483613205565b9150613b8782613b46565b602082019050919050565b60006020820190508181036000830152613bab81613b6f565b9050919050565b7f53616c65206973206e6f74206163746976652100000000000000000000000000600082015250565b6000613be8601383613205565b9150613bf382613bb2565b602082019050919050565b60006020820190508181036000830152613c1781613bdb565b9050919050565b6000613c29826132b5565b9150613c34836132b5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c6d57613c6c613ac1565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613cae601383613205565b9150613cb982613c78565b602082019050919050565b60006020820190508181036000830152613cdd81613ca1565b9050919050565b7f496e76616c6964206e6577206d617820737570706c7900000000000000000000600082015250565b6000613d1a601683613205565b9150613d2582613ce4565b602082019050919050565b60006020820190508181036000830152613d4981613d0d565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613dac602f83613205565b9150613db782613d50565b604082019050919050565b60006020820190508181036000830152613ddb81613d9f565b9050919050565b600081905092915050565b6000613df8826131fa565b613e028185613de2565b9350613e12818560208601613216565b80840191505092915050565b6000613e2a8285613ded565b9150613e368284613ded565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613e9e602683613205565b9150613ea982613e42565b604082019050919050565b60006020820190508181036000830152613ecd81613e91565b9050919050565b7f496e76616c696420546f6b656e49640000000000000000000000000000000000600082015250565b6000613f0a600f83613205565b9150613f1582613ed4565b602082019050919050565b60006020820190508181036000830152613f3981613efd565b9050919050565b6000613f4b826132b5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613f7d57613f7c613ac1565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613fc2826132b5565b9150613fcd836132b5565b925082613fdd57613fdc613f88565b5b828204905092915050565b6000613ff3826132b5565b9150613ffe836132b5565b92508282101561401157614010613ac1565b5b828203905092915050565b6000614027826132b5565b9150614032836132b5565b92508261404257614041613f88565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122036133b3a1ad7c16ebeaece7263f5e24747a86976374509c666e7581db27e9c6864736f6c634300080e003300000000000000000000000000000000000000000000000000b1a2bc2ec50000000000000000000000000000000000000000000000000000000000000000012c00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000001e68747470733a2f2f6175746f6d696e742e6170702f6d657461646174612f0000

Deployed Bytecode

0x6080604052600436106102045760003560e01c80636352211e11610118578063a0712d68116100a0578063c4e9374d1161006f578063c4e9374d14610730578063c87b56dd14610759578063d5abeb0114610796578063e985e9c5146107c1578063f2fde38b146107fe57610204565b8063a0712d6814610685578063a22cb465146106a1578063b88d4fde146106ca578063c0805197146106f357610204565b8063801fe59b116100e7578063801fe59b146105c6578063841718a6146105dd5780638da5cb5b1461060657806391b7f5ed1461063157806395d89b411461065a57610204565b80636352211e1461050a57806370a0823114610547578063715018a61461058457806376d02b711461059b57610204565b80632f745c591161019b5780634aaf78f11161016a5780634aaf78f1146104275780634f6ccce71461045257806355a554651461048f57806355f804b3146104b8578063616cdb1e146104e157610204565b80632f745c59146103815780633ccfd60b146103be57806341f4a21e146103d557806342842e0e146103fe57610204565b806309ef6527116101d757806309ef6527146102d757806313faede61461030257806318160ddd1461032d57806323b872dd1461035857610204565b806301ffc9a71461020957806306fdde0314610246578063081812fc14610271578063095ea7b3146102ae575b600080fd5b34801561021557600080fd5b50610230600480360381019061022b9190613197565b610827565b60405161023d91906131df565b60405180910390f35b34801561025257600080fd5b5061025b610971565b6040516102689190613293565b60405180910390f35b34801561027d57600080fd5b50610298600480360381019061029391906132eb565b610a03565b6040516102a59190613359565b60405180910390f35b3480156102ba57600080fd5b506102d560048036038101906102d091906133a0565b610a7f565b005b3480156102e357600080fd5b506102ec610c39565b6040516102f991906133ef565b60405180910390f35b34801561030e57600080fd5b50610317610c3f565b60405161032491906133ef565b60405180910390f35b34801561033957600080fd5b50610342610c45565b60405161034f91906133ef565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a919061340a565b610c53565b005b34801561038d57600080fd5b506103a860048036038101906103a391906133a0565b610c63565b6040516103b591906133ef565b60405180910390f35b3480156103ca57600080fd5b506103d3610e3a565b005b3480156103e157600080fd5b506103fc60048036038101906103f791906133a0565b610f65565b005b34801561040a57600080fd5b506104256004803603810190610420919061340a565b611094565b005b34801561043357600080fd5b5061043c6110b4565b60405161044991906131df565b60405180910390f35b34801561045e57600080fd5b50610479600480360381019061047491906132eb565b6110c7565b60405161048691906133ef565b60405180910390f35b34801561049b57600080fd5b506104b660048036038101906104b19190613489565b61120b565b005b3480156104c457600080fd5b506104df60048036038101906104da91906135fe565b6112b6565b005b3480156104ed57600080fd5b50610508600480360381019061050391906132eb565b61134c565b005b34801561051657600080fd5b50610531600480360381019061052c91906132eb565b6113d2565b60405161053e9190613359565b60405180910390f35b34801561055357600080fd5b5061056e60048036038101906105699190613647565b6113e8565b60405161057b91906133ef565b60405180910390f35b34801561059057600080fd5b506105996114b7565b005b3480156105a757600080fd5b506105b06115f1565b6040516105bd91906131df565b60405180910390f35b3480156105d257600080fd5b506105db611604565b005b3480156105e957600080fd5b5061060460048036038101906105ff9190613674565b6116ac565b005b34801561061257600080fd5b5061061b611745565b6040516106289190613359565b60405180910390f35b34801561063d57600080fd5b50610658600480360381019061065391906132eb565b61176e565b005b34801561066657600080fd5b5061066f6117f4565b60405161067c9190613293565b60405180910390f35b61069f600480360381019061069a91906132eb565b611886565b005b3480156106ad57600080fd5b506106c860048036038101906106c391906136a1565b6119dd565b005b3480156106d657600080fd5b506106f160048036038101906106ec9190613782565b611cd4565b005b3480156106ff57600080fd5b5061071a600480360381019061071591906132eb565b611d27565b60405161072791906131df565b60405180910390f35b34801561073c57600080fd5b50610757600480360381019061075291906132eb565b611d47565b005b34801561076557600080fd5b50610780600480360381019061077b91906132eb565b611e12565b60405161078d9190613293565b60405180910390f35b3480156107a257600080fd5b506107ab611eb9565b6040516107b891906133ef565b60405180910390f35b3480156107cd57600080fd5b506107e860048036038101906107e39190613805565b611ebf565b6040516107f591906131df565b60405180910390f35b34801561080a57600080fd5b5061082560048036038101906108209190613647565b611f53565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806108f257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061095a57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061096a5750610969826120fb565b5b9050919050565b60606003805461098090613874565b80601f01602080910402602001604051908101604052809291908181526020018280546109ac90613874565b80156109f95780601f106109ce576101008083540402835291602001916109f9565b820191906000526020600020905b8154815290600101906020018083116109dc57829003601f168201915b5050505050905090565b6000610a0e82612165565b610a44576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6008600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a8a826113d2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610af1576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b106121e2565b73ffffffffffffffffffffffffffffffffffffffff1614158015610b425750610b4081610b3b6121e2565b611ebf565b155b15610b79576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560009054906101000a900460ff16158015610bb45750600a600083815260200190815260200160002060009054906101000a900460ff16155b15610c2857610bd88373ffffffffffffffffffffffffffffffffffffffff166121ea565b15610c18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0f90613917565b60405180910390fd5b610c2383838361220d565b610c34565b610c3383838361220d565b5b505050565b60105481565b600d5481565b600060025460015403905090565b610c5e8383836122bf565b505050565b6000610c6e836113e8565b8210610ca6576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600154905060008060005b83811015610e2f576000600660008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610d905750610e22565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610dd057806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e2057868403610e17578195505050505050610e34565b83806001019450505b505b8080600101915050610cb3565b600080fd5b92915050565b610e426121e2565b73ffffffffffffffffffffffffffffffffffffffff16610e60611745565b73ffffffffffffffffffffffffffffffffffffffff1614610eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ead90613983565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610edc906139d4565b60006040518083038185875af1925050503d8060008114610f19576040519150601f19603f3d011682016040523d82523d6000602084013e610f1e565b606091505b5050905080610f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5990613a35565b60405180910390fd5b50565b80600081118015610f7857506010548111155b610fb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fae90613aa1565b60405180910390fd5b600e5481600154610fc89190613af0565b1115611009576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100090613b92565b60405180910390fd5b6110116121e2565b73ffffffffffffffffffffffffffffffffffffffff1661102f611745565b73ffffffffffffffffffffffffffffffffffffffff1614611085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107c90613983565b60405180910390fd5b61108f83836127ae565b505050565b6110af83838360405180602001604052806000815250611cd4565b505050565b600560009054906101000a900460ff1681565b60008060015490506000805b828110156111d3576000600660008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516111c5578583036111bc5781945050505050611206565b82806001019350505b5080806001019150506110d3565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6112136121e2565b73ffffffffffffffffffffffffffffffffffffffff16611231611745565b73ffffffffffffffffffffffffffffffffffffffff1614611287576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127e90613983565b60405180910390fd5b80600a600084815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6112be6121e2565b73ffffffffffffffffffffffffffffffffffffffff166112dc611745565b73ffffffffffffffffffffffffffffffffffffffff1614611332576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132990613983565b60405180910390fd5b80600f9080519060200190611348929190613045565b5050565b6113546121e2565b73ffffffffffffffffffffffffffffffffffffffff16611372611745565b73ffffffffffffffffffffffffffffffffffffffff16146113c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bf90613983565b60405180910390fd5b8060108190555050565b60006113dd826127cc565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361144f576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6114bf6121e2565b73ffffffffffffffffffffffffffffffffffffffff166114dd611745565b73ffffffffffffffffffffffffffffffffffffffff1614611533576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152a90613983565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b601160009054906101000a900460ff1681565b61160c6121e2565b73ffffffffffffffffffffffffffffffffffffffff1661162a611745565b73ffffffffffffffffffffffffffffffffffffffff1614611680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167790613983565b60405180910390fd5b600560009054906101000a900460ff1615600560006101000a81548160ff021916908315150217905550565b6116b46121e2565b73ffffffffffffffffffffffffffffffffffffffff166116d2611745565b73ffffffffffffffffffffffffffffffffffffffff1614611728576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171f90613983565b60405180910390fd5b80601160006101000a81548160ff02191690831515021790555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6117766121e2565b73ffffffffffffffffffffffffffffffffffffffff16611794611745565b73ffffffffffffffffffffffffffffffffffffffff16146117ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e190613983565b60405180910390fd5b80600d8190555050565b60606004805461180390613874565b80601f016020809104026020016040519081016040528092919081815260200182805461182f90613874565b801561187c5780601f106118515761010080835404028352916020019161187c565b820191906000526020600020905b81548152906001019060200180831161185f57829003601f168201915b5050505050905090565b8060008111801561189957506010548111155b6118d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118cf90613aa1565b60405180910390fd5b600e54816001546118e99190613af0565b111561192a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161192190613b92565b60405180910390fd5b601160009054906101000a900460ff16611979576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161197090613bfe565b60405180910390fd5b600082600d546119899190613c1e565b9050803410156119ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c590613cc4565b60405180910390fd5b6119d833846127ae565b505050565b6119e56121e2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611a49576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560009054906101000a900460ff16611bc857611a7c8273ffffffffffffffffffffffffffffffffffffffff166121ea565b15611abc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab390613917565b60405180910390fd5b8060096000611ac96121e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b766121e2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611bbb91906131df565b60405180910390a3611cd0565b8060096000611bd56121e2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c826121e2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611cc791906131df565b60405180910390a35b5050565b611cdf8484846122bf565b611ceb84848484612a48565b611d21576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b600a6020528060005260406000206000915054906101000a900460ff1681565b611d4f6121e2565b73ffffffffffffffffffffffffffffffffffffffff16611d6d611745565b73ffffffffffffffffffffffffffffffffffffffff1614611dc3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dba90613983565b60405180910390fd5b600154811015611e08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dff90613d30565b60405180910390fd5b80600e8190555050565b6060611e1d82612165565b611e5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5390613dc2565b60405180910390fd5b6000611e66612aff565b90506000815111611e865760405180602001604052806000815250611eb1565b80611e9084612b91565b604051602001611ea1929190613e1e565b6040516020818303038152906040525b915050919050565b600e5481565b6000600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f5b6121e2565b73ffffffffffffffffffffffffffffffffffffffff16611f79611745565b73ffffffffffffffffffffffffffffffffffffffff1614611fcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc690613983565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361203e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203590613eb4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008082116121a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a090613f20565b60405180910390fd5b600154821080156121db575060066000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b826008600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006122ca826127cc565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff166122f16121e2565b73ffffffffffffffffffffffffffffffffffffffff1614806123245750612323826000015161231e6121e2565b611ebf565b5b8061236957506123326121e2565b73ffffffffffffffffffffffffffffffffffffffff1661235184610a03565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806123a2576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461240b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612471576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61247e8585856001612cf1565b61248e600084846000015161220d565b6001600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836006600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426006600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff160361273e5760015481101561273d5782600001516006600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516006600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127a78585856001612cf7565b5050505050565b6127c8828260405180602001604052806000815250612cfd565b5050565b6127d46130cb565b6000829050600154811015612a11576000600660008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612a0f57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146128f3578092505050612a43565b5b600115612a0e57818060019003925050600660008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612a09578092505050612a43565b6128f4565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600560009054906101000a900460ff16158015612a855750600a600084815260200190815260200160002060009054906101000a900460ff16155b15612af257612aa98473ffffffffffffffffffffffffffffffffffffffff166121ea565b15612ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ae090613917565b60405180910390fd5b60019050612af7565b600190505b949350505050565b6060600f8054612b0e90613874565b80601f0160208091040260200160405190810160405280929190818152602001828054612b3a90613874565b8015612b875780601f10612b5c57610100808354040283529160200191612b87565b820191906000526020600020905b815481529060010190602001808311612b6a57829003601f168201915b5050505050905090565b606060008203612bd8576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612cec565b600082905060005b60008214612c0a578080612bf390613f40565b915050600a82612c039190613fb7565b9150612be0565b60008167ffffffffffffffff811115612c2657612c256134d3565b5b6040519080825280601f01601f191660200182016040528015612c585781602001600182028036833780820191505090505b5090505b60008514612ce557600182612c719190613fe8565b9150600a85612c80919061401c565b6030612c8c9190613af0565b60f81b818381518110612ca257612ca161404d565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612cde9190613fb7565b9450612c5c565b8093505050505b919050565b50505050565b50505050565b612d0a8383836001612d0f565b505050565b60006001549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603612d7c576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008403612db6576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612dc36000868387612cf1565b83600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846006600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426006600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b8581101561302857818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612fdc5750612fda6000888488612a48565b155b15613013576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612f61565b50806001819055505061303e6000868387612cf7565b5050505050565b82805461305190613874565b90600052602060002090601f01602090048101928261307357600085556130ba565b82601f1061308c57805160ff19168380011785556130ba565b828001600101855582156130ba579182015b828111156130b957825182559160200191906001019061309e565b5b5090506130c7919061310e565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561312757600081600090555060010161310f565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6131748161313f565b811461317f57600080fd5b50565b6000813590506131918161316b565b92915050565b6000602082840312156131ad576131ac613135565b5b60006131bb84828501613182565b91505092915050565b60008115159050919050565b6131d9816131c4565b82525050565b60006020820190506131f460008301846131d0565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613234578082015181840152602081019050613219565b83811115613243576000848401525b50505050565b6000601f19601f8301169050919050565b6000613265826131fa565b61326f8185613205565b935061327f818560208601613216565b61328881613249565b840191505092915050565b600060208201905081810360008301526132ad818461325a565b905092915050565b6000819050919050565b6132c8816132b5565b81146132d357600080fd5b50565b6000813590506132e5816132bf565b92915050565b60006020828403121561330157613300613135565b5b600061330f848285016132d6565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061334382613318565b9050919050565b61335381613338565b82525050565b600060208201905061336e600083018461334a565b92915050565b61337d81613338565b811461338857600080fd5b50565b60008135905061339a81613374565b92915050565b600080604083850312156133b7576133b6613135565b5b60006133c58582860161338b565b92505060206133d6858286016132d6565b9150509250929050565b6133e9816132b5565b82525050565b600060208201905061340460008301846133e0565b92915050565b60008060006060848603121561342357613422613135565b5b60006134318682870161338b565b93505060206134428682870161338b565b9250506040613453868287016132d6565b9150509250925092565b613466816131c4565b811461347157600080fd5b50565b6000813590506134838161345d565b92915050565b600080604083850312156134a05761349f613135565b5b60006134ae858286016132d6565b92505060206134bf85828601613474565b9150509250929050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61350b82613249565b810181811067ffffffffffffffff8211171561352a576135296134d3565b5b80604052505050565b600061353d61312b565b90506135498282613502565b919050565b600067ffffffffffffffff821115613569576135686134d3565b5b61357282613249565b9050602081019050919050565b82818337600083830152505050565b60006135a161359c8461354e565b613533565b9050828152602081018484840111156135bd576135bc6134ce565b5b6135c884828561357f565b509392505050565b600082601f8301126135e5576135e46134c9565b5b81356135f584826020860161358e565b91505092915050565b60006020828403121561361457613613613135565b5b600082013567ffffffffffffffff8111156136325761363161313a565b5b61363e848285016135d0565b91505092915050565b60006020828403121561365d5761365c613135565b5b600061366b8482850161338b565b91505092915050565b60006020828403121561368a57613689613135565b5b600061369884828501613474565b91505092915050565b600080604083850312156136b8576136b7613135565b5b60006136c68582860161338b565b92505060206136d785828601613474565b9150509250929050565b600067ffffffffffffffff8211156136fc576136fb6134d3565b5b61370582613249565b9050602081019050919050565b6000613725613720846136e1565b613533565b905082815260208101848484011115613741576137406134ce565b5b61374c84828561357f565b509392505050565b600082601f830112613769576137686134c9565b5b8135613779848260208601613712565b91505092915050565b6000806000806080858703121561379c5761379b613135565b5b60006137aa8782880161338b565b94505060206137bb8782880161338b565b93505060406137cc878288016132d6565b925050606085013567ffffffffffffffff8111156137ed576137ec61313a565b5b6137f987828801613754565b91505092959194509250565b6000806040838503121561381c5761381b613135565b5b600061382a8582860161338b565b925050602061383b8582860161338b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061388c57607f821691505b60208210810361389f5761389e613845565b5b50919050565b7f546f6b656e207472616e7366657220746f20636f6e747261637420616464726560008201527f7373206973206e6f7420616c6c6f7765642e0000000000000000000000000000602082015250565b6000613901603283613205565b915061390c826138a5565b604082019050919050565b60006020820190508181036000830152613930816138f4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061396d602083613205565b915061397882613937565b602082019050919050565b6000602082019050818103600083015261399c81613960565b9050919050565b600081905092915050565b50565b60006139be6000836139a3565b91506139c9826139ae565b600082019050919050565b60006139df826139b1565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000613a1f601083613205565b9150613a2a826139e9565b602082019050919050565b60006020820190508181036000830152613a4e81613a12565b9050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613a8b601483613205565b9150613a9682613a55565b602082019050919050565b60006020820190508181036000830152613aba81613a7e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613afb826132b5565b9150613b06836132b5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b3b57613b3a613ac1565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613b7c601483613205565b9150613b8782613b46565b602082019050919050565b60006020820190508181036000830152613bab81613b6f565b9050919050565b7f53616c65206973206e6f74206163746976652100000000000000000000000000600082015250565b6000613be8601383613205565b9150613bf382613bb2565b602082019050919050565b60006020820190508181036000830152613c1781613bdb565b9050919050565b6000613c29826132b5565b9150613c34836132b5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613c6d57613c6c613ac1565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000613cae601383613205565b9150613cb982613c78565b602082019050919050565b60006020820190508181036000830152613cdd81613ca1565b9050919050565b7f496e76616c6964206e6577206d617820737570706c7900000000000000000000600082015250565b6000613d1a601683613205565b9150613d2582613ce4565b602082019050919050565b60006020820190508181036000830152613d4981613d0d565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000613dac602f83613205565b9150613db782613d50565b604082019050919050565b60006020820190508181036000830152613ddb81613d9f565b9050919050565b600081905092915050565b6000613df8826131fa565b613e028185613de2565b9350613e12818560208601613216565b80840191505092915050565b6000613e2a8285613ded565b9150613e368284613ded565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613e9e602683613205565b9150613ea982613e42565b604082019050919050565b60006020820190508181036000830152613ecd81613e91565b9050919050565b7f496e76616c696420546f6b656e49640000000000000000000000000000000000600082015250565b6000613f0a600f83613205565b9150613f1582613ed4565b602082019050919050565b60006020820190508181036000830152613f3981613efd565b9050919050565b6000613f4b826132b5565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203613f7d57613f7c613ac1565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613fc2826132b5565b9150613fcd836132b5565b925082613fdd57613fdc613f88565b5b828204905092915050565b6000613ff3826132b5565b9150613ffe836132b5565b92508282101561401157614010613ac1565b5b828203905092915050565b6000614027826132b5565b9150614032836132b5565b92508261404257614041613f88565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122036133b3a1ad7c16ebeaece7263f5e24747a86976374509c666e7581db27e9c6864736f6c634300080e0033

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

00000000000000000000000000000000000000000000000000b1a2bc2ec50000000000000000000000000000000000000000000000000000000000000000012c00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000001e68747470733a2f2f6175746f6d696e742e6170702f6d657461646174612f0000

-----Decoded View---------------
Arg [0] : price (uint256): 50000000000000000
Arg [1] : max_Supply (uint256): 300
Arg [2] : baseUri (string): https://automint.app/metadata/
Arg [3] : maxMintPerTx (uint256): 4
Arg [4] : isSaleActive (bool): True

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000b1a2bc2ec50000
Arg [1] : 000000000000000000000000000000000000000000000000000000000000012c
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [5] : 000000000000000000000000000000000000000000000000000000000000001e
Arg [6] : 68747470733a2f2f6175746f6d696e742e6170702f6d657461646174612f0000


Deployed Bytecode Sourcemap

69598:2541:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52699:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55309:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57120:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56386:668;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;69756:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69669:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49928:288;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58358:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51522:1105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71952:182;;;;;;;;;;;;;:::i;:::-;;71748:174;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58599:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;48528:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50509:713;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49588:140;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70680:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;70808:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55118:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53135:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14747:148;;;;;;;;;;;;;:::i;:::-;;69800:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48574:106;;;;;;;;;;;;;:::i;:::-;;70938:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14096:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70384:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55478:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;71408:332;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57396:660;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58855:342;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49326:51;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;70489:183;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55653:329;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;69695:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58127:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15050:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52699:372;52801:4;52853:25;52838:40;;;:11;:40;;;;:105;;;;52910:33;52895:48;;;:11;:48;;;;52838:105;:172;;;;52975:35;52960:50;;;:11;:50;;;;52838:172;:225;;;;53027:36;53051:11;53027:23;:36::i;:::-;52838:225;52818:245;;52699:372;;;:::o;55309:100::-;55363:13;55396:5;55389:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55309:100;:::o;57120:204::-;57188:7;57213:16;57221:7;57213;:16::i;:::-;57208:64;;57238:34;;;;;;;;;;;;;;57208:64;57292:15;:24;57308:7;57292:24;;;;;;;;;;;;;;;;;;;;;57285:31;;57120:204;;;:::o;56386:668::-;56459:13;56475:24;56491:7;56475:15;:24::i;:::-;56459:40;;56520:5;56514:11;;:2;:11;;;56510:48;;56534:24;;;;;;;;;;;;;;56510:48;56591:5;56575:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;56601:37;56618:5;56625:12;:10;:12::i;:::-;56601:16;:37::i;:::-;56600:38;56575:63;56571:138;;;56662:35;;;;;;;;;;;;;;56571:138;56723:17;;;;;;;;;;;56722:18;:51;;;;;56745:19;:28;56765:7;56745:28;;;;;;;;;;;;;;;;;;;;;56744:29;56722:51;56719:328;;;56793:15;:2;:13;;;:15::i;:::-;56789:186;;;56829:61;;;;;;;;;;:::i;:::-;;;;;;;;56789:186;56931:28;56940:2;56944:7;56953:5;56931:8;:28::i;:::-;56719:328;;;57007:28;57016:2;57020:7;57029:5;57007:8;:28::i;:::-;56719:328;56448:606;56386:668;;:::o;69756:37::-;;;;:::o;69669:19::-;;;;:::o;49928:288::-;49989:7;50181:12;;50165:13;;:28;50158:35;;49928:288;:::o;58358:170::-;58492:28;58502:4;58508:2;58512:7;58492:9;:28::i;:::-;58358:170;;;:::o;51522:1105::-;51611:7;51644:16;51654:5;51644:9;:16::i;:::-;51635:5;:25;51631:61;;51669:23;;;;;;;;;;;;;;51631:61;51703:22;51728:13;;51703:38;;51752:19;51782:25;51983:9;51978:557;51998:14;51994:1;:18;51978:557;;;52038:31;52072:11;:14;52084:1;52072:14;;;;;;;;;;;52038:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52109:9;:16;;;52105:73;;;52150:8;;;52105:73;52226:1;52200:28;;:9;:14;;;:28;;;52196:111;;52273:9;:14;;;52253:34;;52196:111;52350:5;52329:26;;:17;:26;;;52325:195;;52399:5;52384:11;:20;52380:85;;52440:1;52433:8;;;;;;;;;52380:85;52487:13;;;;;;;52325:195;52019:516;51978:557;52014:3;;;;;;;51978:557;;;52611:8;;;51522:1105;;;;;:::o;71952:182::-;14327:12;:10;:12::i;:::-;14316:23;;:7;:5;:7::i;:::-;:23;;;14308:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;72003:12:::1;72029:10;72021:24;;72053:21;72021:58;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72002:77;;;72098:7;72090:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;71991:143;71952:182::o:0;71748:174::-;71839:11;71169:1;71155:11;:15;:56;;;;;71189:22;;71174:11;:37;;71155:56;71133:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;71323:9;;71308:11;71292:13;;:27;;;;:::i;:::-;:40;;71270:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;14327:12:::1;:10;:12::i;:::-;14316:23;;:7;:5;:7::i;:::-;:23;;;14308:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71887:27:::2;71897:3;71902:11;71887:9;:27::i;:::-;71748:174:::0;;;:::o;58599:185::-;58737:39;58754:4;58760:2;58764:7;58737:39;;;;;;;;;;;;:16;:39::i;:::-;58599:185;;;:::o;48528:37::-;;;;;;;;;;;;;:::o;50509:713::-;50576:7;50596:22;50621:13;;50596:38;;50645:19;50840:9;50835:328;50855:14;50851:1;:18;50835:328;;;50895:31;50929:11;:14;50941:1;50929:14;;;;;;;;;;;50895:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50967:9;:16;;;50962:186;;51027:5;51012:11;:20;51008:85;;51068:1;51061:8;;;;;;;;51008:85;51115:13;;;;;;;50962:186;50876:287;50871:3;;;;;;;50835:328;;;;51191:23;;;;;;;;;;;;;;50509:713;;;;:::o;49588:140::-;14327:12;:10;:12::i;:::-;14316:23;;:7;:5;:7::i;:::-;:23;;;14308:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49714:6:::1;49682:19;:29;49702:8;49682:29;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;49588:140:::0;;:::o;70680:113::-;14327:12;:10;:12::i;:::-;14316:23;;:7;:5;:7::i;:::-;:23;;;14308:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;70771:14:::1;70760:8;:25;;;;;;;;;;;;:::i;:::-;;70680:113:::0;:::o;70808:122::-;14327:12;:10;:12::i;:::-;14316:23;;:7;:5;:7::i;:::-;:23;;;14308:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;70910:12:::1;70885:22;:37;;;;70808:122:::0;:::o;55118:124::-;55182:7;55209:20;55221:7;55209:11;:20::i;:::-;:25;;;55202:32;;55118:124;;;:::o;53135:206::-;53199:7;53240:1;53223:19;;:5;:19;;;53219:60;;53251:28;;;;;;;;;;;;;;53219:60;53305:12;:19;53318:5;53305:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;53297:36;;53290:43;;53135:206;;;:::o;14747:148::-;14327:12;:10;:12::i;:::-;14316:23;;:7;:5;:7::i;:::-;:23;;;14308:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14854:1:::1;14817:40;;14838:6;::::0;::::1;;;;;;;;14817:40;;;;;;;;;;;;14885:1;14868:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;14747:148::o:0;69800:26::-;;;;;;;;;;;;;:::o;48574:106::-;14327:12;:10;:12::i;:::-;14316:23;;:7;:5;:7::i;:::-;:23;;;14308:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48655:17:::1;;;;;;;;;;;48654:18;48634:17;;:38;;;;;;;;;;;;;;;;;;48574:106::o:0;70938:109::-;14327:12;:10;:12::i;:::-;14316:23;;:7;:5;:7::i;:::-;:23;;;14308:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;71027:12:::1;71010:14;;:29;;;;;;;;;;;;;;;;;;70938:109:::0;:::o;14096:87::-;14142:7;14169:6;;;;;;;;;;;14162:13;;14096:87;:::o;70384:95::-;14327:12;:10;:12::i;:::-;14316:23;;:7;:5;:7::i;:::-;:23;;;14308:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;70460:11:::1;70453:4;:18;;;;70384:95:::0;:::o;55478:104::-;55534:13;55567:7;55560:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55478:104;:::o;71408:332::-;71500:11;71169:1;71155:11;:15;:56;;;;;71189:22;;71174:11;:37;;71155:56;71133:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;71323:9;;71308:11;71292:13;;:27;;;;:::i;:::-;:40;;71270:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;71537:14:::1;;;;;;;;;;;71529:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;71588:13;71611:11;71604:4;;:18;;;;:::i;:::-;71588:34;;71656:5;71643:9;:18;;71635:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;71698:34;71708:10;71720:11;71698:9;:34::i;:::-;71518:222;71408:332:::0;;:::o;57396:660::-;57499:12;:10;:12::i;:::-;57487:24;;:8;:24;;;57483:54;;57520:17;;;;;;;;;;;;;;57483:54;57562:17;;;;;;;;;;;57558:491;;57599:21;:8;:19;;;:21::i;:::-;57595:289;;;57641:61;;;;;;;;;;:::i;:::-;;;;;;;;57595:289;57788:8;57743:18;:32;57762:12;:10;:12::i;:::-;57743:32;;;;;;;;;;;;;;;:42;57776:8;57743:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;57849:8;57820:48;;57835:12;:10;:12::i;:::-;57820:48;;;57859:8;57820:48;;;;;;:::i;:::-;;;;;;;;57558:491;;;57961:8;57916:18;:32;57935:12;:10;:12::i;:::-;57916:32;;;;;;;;;;;;;;;:42;57949:8;57916:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;58018:8;57989:48;;58004:12;:10;:12::i;:::-;57989:48;;;58028:8;57989:48;;;;;;:::i;:::-;;;;;;;;57558:491;57396:660;;:::o;58855:342::-;59022:28;59032:4;59038:2;59042:7;59022:9;:28::i;:::-;59066:48;59089:4;59095:2;59099:7;59108:5;59066:22;:48::i;:::-;59061:129;;59138:40;;;;;;;;;;;;;;59061:129;58855:342;;;;:::o;49326:51::-;;;;;;;;;;;;;;;;;;;;;;:::o;70489:183::-;14327:12;:10;:12::i;:::-;14316:23;;:7;:5;:7::i;:::-;:23;;;14308:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;70589:13:::1;;70573:12;:29;;70565:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;70652:12;70640:9;:24;;;;70489:183:::0;:::o;55653:329::-;55721:13;55755:16;55763:7;55755;:16::i;:::-;55747:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;55836:21;55860:10;:8;:10::i;:::-;55836:34;;55912:1;55894:7;55888:21;:25;:86;;;;;;;;;;;;;;;;;55940:7;55949:18;:7;:16;:18::i;:::-;55923:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;55888:86;55881:93;;;55653:329;;;:::o;69695:24::-;;;;:::o;58127:164::-;58224:4;58248:18;:25;58267:5;58248:25;;;;;;;;;;;;;;;:35;58274:8;58248:35;;;;;;;;;;;;;;;;;;;;;;;;;58241:42;;58127:164;;;;:::o;15050:244::-;14327:12;:10;:12::i;:::-;14316:23;;:7;:5;:7::i;:::-;:23;;;14308:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15159:1:::1;15139:22;;:8;:22;;::::0;15131:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;15249:8;15220:38;;15241:6;::::0;::::1;;;;;;;;15220:38;;;;;;;;;;;;15278:8;15269:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;15050:244:::0;:::o;22370:157::-;22455:4;22494:25;22479:40;;;:11;:40;;;;22472:47;;22370:157;;;:::o;59452:194::-;59509:4;59544:1;59534:7;:11;59526:39;;;;;;;;;;;;:::i;:::-;;;;;;;;;59593:13;;59583:7;:23;:55;;;;;59611:11;:20;59623:7;59611:20;;;;;;;;;;;:27;;;;;;;;;;;;59610:28;59583:55;59576:62;;59452:194;;;:::o;9122:98::-;9175:7;9202:10;9195:17;;9122:98;:::o;1260:326::-;1320:4;1577:1;1555:7;:19;;;:23;1548:30;;1260:326;;;:::o;66708:196::-;66850:2;66823:15;:24;66839:7;66823:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;66888:7;66884:2;66868:28;;66877:5;66868:28;;;;;;;;;;;;66708:196;;;:::o;62209:2112::-;62324:35;62362:20;62374:7;62362:11;:20::i;:::-;62324:58;;62395:22;62437:13;:18;;;62421:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;62472:50;62489:13;:18;;;62509:12;:10;:12::i;:::-;62472:16;:50::i;:::-;62421:101;:154;;;;62563:12;:10;:12::i;:::-;62539:36;;:20;62551:7;62539:11;:20::i;:::-;:36;;;62421:154;62395:181;;62594:17;62589:66;;62620:35;;;;;;;;;;;;;;62589:66;62692:4;62670:26;;:13;:18;;;:26;;;62666:67;;62705:28;;;;;;;;;;;;;;62666:67;62762:1;62748:16;;:2;:16;;;62744:52;;62773:23;;;;;;;;;;;;;;62744:52;62809:43;62831:4;62837:2;62841:7;62850:1;62809:21;:43::i;:::-;62917:49;62934:1;62938:7;62947:13;:18;;;62917:8;:49::i;:::-;63292:1;63262:12;:18;63275:4;63262:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63336:1;63308:12;:16;63321:2;63308:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;63382:2;63354:11;:20;63366:7;63354:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;63444:15;63399:11;:20;63411:7;63399:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;63712:19;63744:1;63734:7;:11;63712:33;;63805:1;63764:43;;:11;:24;63776:11;63764:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;63760:445;;63989:13;;63975:11;:27;63971:219;;;64059:13;:18;;;64027:11;:24;64039:11;64027:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;64142:13;:28;;;64100:11;:24;64112:11;64100:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;63971:219;63760:445;63237:979;64252:7;64248:2;64233:27;;64242:4;64233:27;;;;;;;;;;;;64271:42;64292:4;64298:2;64302:7;64311:1;64271:20;:42::i;:::-;62313:2008;;62209:2112;;;:::o;59654:104::-;59723:27;59733:2;59737:8;59723:27;;;;;;;;;;;;:9;:27::i;:::-;59654:104;;:::o;53973:1083::-;54034:21;;:::i;:::-;54068:12;54083:7;54068:22;;54139:13;;54132:4;:20;54128:861;;;54173:31;54207:11;:17;54219:4;54207:17;;;;;;;;;;;54173:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54248:9;:16;;;54243:731;;54319:1;54293:28;;:9;:14;;;:28;;;54289:101;;54357:9;54350:16;;;;;;54289:101;54694:261;54701:4;54694:261;;;54734:6;;;;;;;;54779:11;:17;54791:4;54779:17;;;;;;;;;;;54767:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54853:1;54827:28;;:9;:14;;;:28;;;54823:109;;54895:9;54888:16;;;;;;54823:109;54694:261;;;54243:731;54154:835;54128:861;55017:31;;;;;;;;;;;;;;53973:1083;;;;:::o;67469:473::-;67624:4;67645:17;;;;;;;;;;;67644:18;:51;;;;;67667:19;:28;67687:7;67667:28;;;;;;;;;;;;;;;;;;;;;67666:29;67644:51;67641:294;;;67715:15;:2;:13;;;:15::i;:::-;67711:169;;;67751:61;;;;;;;;;;:::i;:::-;;;;;;;;67711:169;67860:4;67853:11;;;;67641:294;67919:4;67912:11;;67469:473;;;;;;;:::o;70244:109::-;70304:13;70337:8;70330:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70244:109;:::o;9805:723::-;9861:13;10091:1;10082:5;:10;10078:53;;10109:10;;;;;;;;;;;;;;;;;;;;;10078:53;10141:12;10156:5;10141:20;;10172:14;10197:78;10212:1;10204:4;:9;10197:78;;10230:8;;;;;:::i;:::-;;;;10261:2;10253:10;;;;;:::i;:::-;;;10197:78;;;10285:19;10317:6;10307:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10285:39;;10335:154;10351:1;10342:5;:10;10335:154;;10379:1;10369:11;;;;;:::i;:::-;;;10446:2;10438:5;:10;;;;:::i;:::-;10425:2;:24;;;;:::i;:::-;10412:39;;10395:6;10402;10395:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;10475:2;10466:11;;;;;:::i;:::-;;;10335:154;;;10513:6;10499:21;;;;;9805:723;;;;:::o;68590:159::-;;;;;:::o;69408:158::-;;;;;:::o;60121:163::-;60244:32;60250:2;60254:8;60264:5;60271:4;60244:5;:32::i;:::-;60121:163;;;:::o;60543:1412::-;60682:20;60705:13;;60682:36;;60747:1;60733:16;;:2;:16;;;60729:48;;60758:19;;;;;;;;;;;;;;60729:48;60804:1;60792:8;:13;60788:44;;60814:18;;;;;;;;;;;;;;60788:44;60845:61;60875:1;60879:2;60883:12;60897:8;60845:21;:61::i;:::-;61218:8;61183:12;:16;61196:2;61183:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61282:8;61242:12;:16;61255:2;61242:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;61341:2;61308:11;:25;61320:12;61308:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;61408:15;61358:11;:25;61370:12;61358:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;61441:20;61464:12;61441:35;;61498:9;61493:328;61513:8;61509:1;:12;61493:328;;;61577:12;61573:2;61552:38;;61569:1;61552:38;;;;;;;;;;;;61613:4;:68;;;;;61622:59;61653:1;61657:2;61661:12;61675:5;61622:22;:59::i;:::-;61621:60;61613:68;61609:164;;;61713:40;;;;;;;;;;;;;;61609:164;61791:14;;;;;;;61523:3;;;;;;;61493:328;;;;61853:12;61837:13;:28;;;;61158:719;61887:60;61916:1;61920:2;61924:12;61938:8;61887:20;:60::i;:::-;60671:1284;60543:1412;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:619::-;5367:6;5375;5383;5432:2;5420:9;5411:7;5407:23;5403:32;5400:119;;;5438:79;;:::i;:::-;5400:119;5558:1;5583:53;5628:7;5619:6;5608:9;5604:22;5583:53;:::i;:::-;5573:63;;5529:117;5685:2;5711:53;5756:7;5747:6;5736:9;5732:22;5711:53;:::i;:::-;5701:63;;5656:118;5813:2;5839:53;5884:7;5875:6;5864:9;5860:22;5839:53;:::i;:::-;5829:63;;5784:118;5290:619;;;;;:::o;5915:116::-;5985:21;6000:5;5985:21;:::i;:::-;5978:5;5975:32;5965:60;;6021:1;6018;6011:12;5965:60;5915:116;:::o;6037:133::-;6080:5;6118:6;6105:20;6096:29;;6134:30;6158:5;6134:30;:::i;:::-;6037:133;;;;:::o;6176:468::-;6241:6;6249;6298:2;6286:9;6277:7;6273:23;6269:32;6266:119;;;6304:79;;:::i;:::-;6266:119;6424:1;6449:53;6494:7;6485:6;6474:9;6470:22;6449:53;:::i;:::-;6439:63;;6395:117;6551:2;6577:50;6619:7;6610:6;6599:9;6595:22;6577:50;:::i;:::-;6567:60;;6522:115;6176:468;;;;;:::o;6650:117::-;6759:1;6756;6749:12;6773:117;6882:1;6879;6872:12;6896:180;6944:77;6941:1;6934:88;7041:4;7038:1;7031:15;7065:4;7062:1;7055:15;7082:281;7165:27;7187:4;7165:27;:::i;:::-;7157:6;7153:40;7295:6;7283:10;7280:22;7259:18;7247:10;7244:34;7241:62;7238:88;;;7306:18;;:::i;:::-;7238:88;7346:10;7342:2;7335:22;7125:238;7082:281;;:::o;7369:129::-;7403:6;7430:20;;:::i;:::-;7420:30;;7459:33;7487:4;7479:6;7459:33;:::i;:::-;7369:129;;;:::o;7504:308::-;7566:4;7656:18;7648:6;7645:30;7642:56;;;7678:18;;:::i;:::-;7642:56;7716:29;7738:6;7716:29;:::i;:::-;7708:37;;7800:4;7794;7790:15;7782:23;;7504:308;;;:::o;7818:154::-;7902:6;7897:3;7892;7879:30;7964:1;7955:6;7950:3;7946:16;7939:27;7818:154;;;:::o;7978:412::-;8056:5;8081:66;8097:49;8139:6;8097:49;:::i;:::-;8081:66;:::i;:::-;8072:75;;8170:6;8163:5;8156:21;8208:4;8201:5;8197:16;8246:3;8237:6;8232:3;8228:16;8225:25;8222:112;;;8253:79;;:::i;:::-;8222:112;8343:41;8377:6;8372:3;8367;8343:41;:::i;:::-;8062:328;7978:412;;;;;:::o;8410:340::-;8466:5;8515:3;8508:4;8500:6;8496:17;8492:27;8482:122;;8523:79;;:::i;:::-;8482:122;8640:6;8627:20;8665:79;8740:3;8732:6;8725:4;8717:6;8713:17;8665:79;:::i;:::-;8656:88;;8472:278;8410:340;;;;:::o;8756:509::-;8825:6;8874:2;8862:9;8853:7;8849:23;8845:32;8842:119;;;8880:79;;:::i;:::-;8842:119;9028:1;9017:9;9013:17;9000:31;9058:18;9050:6;9047:30;9044:117;;;9080:79;;:::i;:::-;9044:117;9185:63;9240:7;9231:6;9220:9;9216:22;9185:63;:::i;:::-;9175:73;;8971:287;8756:509;;;;:::o;9271:329::-;9330:6;9379:2;9367:9;9358:7;9354:23;9350:32;9347:119;;;9385:79;;:::i;:::-;9347:119;9505:1;9530:53;9575:7;9566:6;9555:9;9551:22;9530:53;:::i;:::-;9520:63;;9476:117;9271:329;;;;:::o;9606:323::-;9662:6;9711:2;9699:9;9690:7;9686:23;9682:32;9679:119;;;9717:79;;:::i;:::-;9679:119;9837:1;9862:50;9904:7;9895:6;9884:9;9880:22;9862:50;:::i;:::-;9852:60;;9808:114;9606:323;;;;:::o;9935:468::-;10000:6;10008;10057:2;10045:9;10036:7;10032:23;10028:32;10025:119;;;10063:79;;:::i;:::-;10025:119;10183:1;10208:53;10253:7;10244:6;10233:9;10229:22;10208:53;:::i;:::-;10198:63;;10154:117;10310:2;10336:50;10378:7;10369:6;10358:9;10354:22;10336:50;:::i;:::-;10326:60;;10281:115;9935:468;;;;;:::o;10409:307::-;10470:4;10560:18;10552:6;10549:30;10546:56;;;10582:18;;:::i;:::-;10546:56;10620:29;10642:6;10620:29;:::i;:::-;10612:37;;10704:4;10698;10694:15;10686:23;;10409:307;;;:::o;10722:410::-;10799:5;10824:65;10840:48;10881:6;10840:48;:::i;:::-;10824:65;:::i;:::-;10815:74;;10912:6;10905:5;10898:21;10950:4;10943:5;10939:16;10988:3;10979:6;10974:3;10970:16;10967:25;10964:112;;;10995:79;;:::i;:::-;10964:112;11085:41;11119:6;11114:3;11109;11085:41;:::i;:::-;10805:327;10722:410;;;;;:::o;11151:338::-;11206:5;11255:3;11248:4;11240:6;11236:17;11232:27;11222:122;;11263:79;;:::i;:::-;11222:122;11380:6;11367:20;11405:78;11479:3;11471:6;11464:4;11456:6;11452:17;11405:78;:::i;:::-;11396:87;;11212:277;11151:338;;;;:::o;11495:943::-;11590:6;11598;11606;11614;11663:3;11651:9;11642:7;11638:23;11634:33;11631:120;;;11670:79;;:::i;:::-;11631:120;11790:1;11815:53;11860:7;11851:6;11840:9;11836:22;11815:53;:::i;:::-;11805:63;;11761:117;11917:2;11943:53;11988:7;11979:6;11968:9;11964:22;11943:53;:::i;:::-;11933:63;;11888:118;12045:2;12071:53;12116:7;12107:6;12096:9;12092:22;12071:53;:::i;:::-;12061:63;;12016:118;12201:2;12190:9;12186:18;12173:32;12232:18;12224:6;12221:30;12218:117;;;12254:79;;:::i;:::-;12218:117;12359:62;12413:7;12404:6;12393:9;12389:22;12359:62;:::i;:::-;12349:72;;12144:287;11495:943;;;;;;;:::o;12444:474::-;12512:6;12520;12569:2;12557:9;12548:7;12544:23;12540:32;12537:119;;;12575:79;;:::i;:::-;12537:119;12695:1;12720:53;12765:7;12756:6;12745:9;12741:22;12720:53;:::i;:::-;12710:63;;12666:117;12822:2;12848:53;12893:7;12884:6;12873:9;12869:22;12848:53;:::i;:::-;12838:63;;12793:118;12444:474;;;;;:::o;12924:180::-;12972:77;12969:1;12962:88;13069:4;13066:1;13059:15;13093:4;13090:1;13083:15;13110:320;13154:6;13191:1;13185:4;13181:12;13171:22;;13238:1;13232:4;13228:12;13259:18;13249:81;;13315:4;13307:6;13303:17;13293:27;;13249:81;13377:2;13369:6;13366:14;13346:18;13343:38;13340:84;;13396:18;;:::i;:::-;13340:84;13161:269;13110:320;;;:::o;13436:237::-;13576:34;13572:1;13564:6;13560:14;13553:58;13645:20;13640:2;13632:6;13628:15;13621:45;13436:237;:::o;13679:366::-;13821:3;13842:67;13906:2;13901:3;13842:67;:::i;:::-;13835:74;;13918:93;14007:3;13918:93;:::i;:::-;14036:2;14031:3;14027:12;14020:19;;13679:366;;;:::o;14051:419::-;14217:4;14255:2;14244:9;14240:18;14232:26;;14304:9;14298:4;14294:20;14290:1;14279:9;14275:17;14268:47;14332:131;14458:4;14332:131;:::i;:::-;14324:139;;14051:419;;;:::o;14476:182::-;14616:34;14612:1;14604:6;14600:14;14593:58;14476:182;:::o;14664:366::-;14806:3;14827:67;14891:2;14886:3;14827:67;:::i;:::-;14820:74;;14903:93;14992:3;14903:93;:::i;:::-;15021:2;15016:3;15012:12;15005:19;;14664:366;;;:::o;15036:419::-;15202:4;15240:2;15229:9;15225:18;15217:26;;15289:9;15283:4;15279:20;15275:1;15264:9;15260:17;15253:47;15317:131;15443:4;15317:131;:::i;:::-;15309:139;;15036:419;;;:::o;15461:147::-;15562:11;15599:3;15584:18;;15461:147;;;;:::o;15614:114::-;;:::o;15734:398::-;15893:3;15914:83;15995:1;15990:3;15914:83;:::i;:::-;15907:90;;16006:93;16095:3;16006:93;:::i;:::-;16124:1;16119:3;16115:11;16108:18;;15734:398;;;:::o;16138:379::-;16322:3;16344:147;16487:3;16344:147;:::i;:::-;16337:154;;16508:3;16501:10;;16138:379;;;:::o;16523:166::-;16663:18;16659:1;16651:6;16647:14;16640:42;16523:166;:::o;16695:366::-;16837:3;16858:67;16922:2;16917:3;16858:67;:::i;:::-;16851:74;;16934:93;17023:3;16934:93;:::i;:::-;17052:2;17047:3;17043:12;17036:19;;16695:366;;;:::o;17067:419::-;17233:4;17271:2;17260:9;17256:18;17248:26;;17320:9;17314:4;17310:20;17306:1;17295:9;17291:17;17284:47;17348:131;17474:4;17348:131;:::i;:::-;17340:139;;17067:419;;;:::o;17492:170::-;17632:22;17628:1;17620:6;17616:14;17609:46;17492:170;:::o;17668:366::-;17810:3;17831:67;17895:2;17890:3;17831:67;:::i;:::-;17824:74;;17907:93;17996:3;17907:93;:::i;:::-;18025:2;18020:3;18016:12;18009:19;;17668:366;;;:::o;18040:419::-;18206:4;18244:2;18233:9;18229:18;18221:26;;18293:9;18287:4;18283:20;18279:1;18268:9;18264:17;18257:47;18321:131;18447:4;18321:131;:::i;:::-;18313:139;;18040:419;;;:::o;18465:180::-;18513:77;18510:1;18503:88;18610:4;18607:1;18600:15;18634:4;18631:1;18624:15;18651:305;18691:3;18710:20;18728:1;18710:20;:::i;:::-;18705:25;;18744:20;18762:1;18744:20;:::i;:::-;18739:25;;18898:1;18830:66;18826:74;18823:1;18820:81;18817:107;;;18904:18;;:::i;:::-;18817:107;18948:1;18945;18941:9;18934:16;;18651:305;;;;:::o;18962:170::-;19102:22;19098:1;19090:6;19086:14;19079:46;18962:170;:::o;19138:366::-;19280:3;19301:67;19365:2;19360:3;19301:67;:::i;:::-;19294:74;;19377:93;19466:3;19377:93;:::i;:::-;19495:2;19490:3;19486:12;19479:19;;19138:366;;;:::o;19510:419::-;19676:4;19714:2;19703:9;19699:18;19691:26;;19763:9;19757:4;19753:20;19749:1;19738:9;19734:17;19727:47;19791:131;19917:4;19791:131;:::i;:::-;19783:139;;19510:419;;;:::o;19935:169::-;20075:21;20071:1;20063:6;20059:14;20052:45;19935:169;:::o;20110:366::-;20252:3;20273:67;20337:2;20332:3;20273:67;:::i;:::-;20266:74;;20349:93;20438:3;20349:93;:::i;:::-;20467:2;20462:3;20458:12;20451:19;;20110:366;;;:::o;20482:419::-;20648:4;20686:2;20675:9;20671:18;20663:26;;20735:9;20729:4;20725:20;20721:1;20710:9;20706:17;20699:47;20763:131;20889:4;20763:131;:::i;:::-;20755:139;;20482:419;;;:::o;20907:348::-;20947:7;20970:20;20988:1;20970:20;:::i;:::-;20965:25;;21004:20;21022:1;21004:20;:::i;:::-;20999:25;;21192:1;21124:66;21120:74;21117:1;21114:81;21109:1;21102:9;21095:17;21091:105;21088:131;;;21199:18;;:::i;:::-;21088:131;21247:1;21244;21240:9;21229:20;;20907:348;;;;:::o;21261:169::-;21401:21;21397:1;21389:6;21385:14;21378:45;21261:169;:::o;21436:366::-;21578:3;21599:67;21663:2;21658:3;21599:67;:::i;:::-;21592:74;;21675:93;21764:3;21675:93;:::i;:::-;21793:2;21788:3;21784:12;21777:19;;21436:366;;;:::o;21808:419::-;21974:4;22012:2;22001:9;21997:18;21989:26;;22061:9;22055:4;22051:20;22047:1;22036:9;22032:17;22025:47;22089:131;22215:4;22089:131;:::i;:::-;22081:139;;21808:419;;;:::o;22233:172::-;22373:24;22369:1;22361:6;22357:14;22350:48;22233:172;:::o;22411:366::-;22553:3;22574:67;22638:2;22633:3;22574:67;:::i;:::-;22567:74;;22650:93;22739:3;22650:93;:::i;:::-;22768:2;22763:3;22759:12;22752:19;;22411:366;;;:::o;22783:419::-;22949:4;22987:2;22976:9;22972:18;22964:26;;23036:9;23030:4;23026:20;23022:1;23011:9;23007:17;23000:47;23064:131;23190:4;23064:131;:::i;:::-;23056:139;;22783:419;;;:::o;23208:234::-;23348:34;23344:1;23336:6;23332:14;23325:58;23417:17;23412:2;23404:6;23400:15;23393:42;23208:234;:::o;23448:366::-;23590:3;23611:67;23675:2;23670:3;23611:67;:::i;:::-;23604:74;;23687:93;23776:3;23687:93;:::i;:::-;23805:2;23800:3;23796:12;23789:19;;23448:366;;;:::o;23820:419::-;23986:4;24024:2;24013:9;24009:18;24001:26;;24073:9;24067:4;24063:20;24059:1;24048:9;24044:17;24037:47;24101:131;24227:4;24101:131;:::i;:::-;24093:139;;23820:419;;;:::o;24245:148::-;24347:11;24384:3;24369:18;;24245:148;;;;:::o;24399:377::-;24505:3;24533:39;24566:5;24533:39;:::i;:::-;24588:89;24670:6;24665:3;24588:89;:::i;:::-;24581:96;;24686:52;24731:6;24726:3;24719:4;24712:5;24708:16;24686:52;:::i;:::-;24763:6;24758:3;24754:16;24747:23;;24509:267;24399:377;;;;:::o;24782:435::-;24962:3;24984:95;25075:3;25066:6;24984:95;:::i;:::-;24977:102;;25096:95;25187:3;25178:6;25096:95;:::i;:::-;25089:102;;25208:3;25201:10;;24782:435;;;;;:::o;25223:225::-;25363:34;25359:1;25351:6;25347:14;25340:58;25432:8;25427:2;25419:6;25415:15;25408:33;25223:225;:::o;25454:366::-;25596:3;25617:67;25681:2;25676:3;25617:67;:::i;:::-;25610:74;;25693:93;25782:3;25693:93;:::i;:::-;25811:2;25806:3;25802:12;25795:19;;25454:366;;;:::o;25826:419::-;25992:4;26030:2;26019:9;26015:18;26007:26;;26079:9;26073:4;26069:20;26065:1;26054:9;26050:17;26043:47;26107:131;26233:4;26107:131;:::i;:::-;26099:139;;25826:419;;;:::o;26251:165::-;26391:17;26387:1;26379:6;26375:14;26368:41;26251:165;:::o;26422:366::-;26564:3;26585:67;26649:2;26644:3;26585:67;:::i;:::-;26578:74;;26661:93;26750:3;26661:93;:::i;:::-;26779:2;26774:3;26770:12;26763:19;;26422:366;;;:::o;26794:419::-;26960:4;26998:2;26987:9;26983:18;26975:26;;27047:9;27041:4;27037:20;27033:1;27022:9;27018:17;27011:47;27075:131;27201:4;27075:131;:::i;:::-;27067:139;;26794:419;;;:::o;27219:233::-;27258:3;27281:24;27299:5;27281:24;:::i;:::-;27272:33;;27327:66;27320:5;27317:77;27314:103;;27397:18;;:::i;:::-;27314:103;27444:1;27437:5;27433:13;27426:20;;27219:233;;;:::o;27458:180::-;27506:77;27503:1;27496:88;27603:4;27600:1;27593:15;27627:4;27624:1;27617:15;27644:185;27684:1;27701:20;27719:1;27701:20;:::i;:::-;27696:25;;27735:20;27753:1;27735:20;:::i;:::-;27730:25;;27774:1;27764:35;;27779:18;;:::i;:::-;27764:35;27821:1;27818;27814:9;27809:14;;27644:185;;;;:::o;27835:191::-;27875:4;27895:20;27913:1;27895:20;:::i;:::-;27890:25;;27929:20;27947:1;27929:20;:::i;:::-;27924:25;;27968:1;27965;27962:8;27959:34;;;27973:18;;:::i;:::-;27959:34;28018:1;28015;28011:9;28003:17;;27835:191;;;;:::o;28032:176::-;28064:1;28081:20;28099:1;28081:20;:::i;:::-;28076:25;;28115:20;28133:1;28115:20;:::i;:::-;28110:25;;28154:1;28144:35;;28159:18;;:::i;:::-;28144:35;28200:1;28197;28193:9;28188:14;;28032:176;;;;:::o;28214:180::-;28262:77;28259:1;28252:88;28359:4;28356:1;28349:15;28383:4;28380:1;28373:15

Swarm Source

ipfs://36133b3a1ad7c16ebeaece7263f5e24747a86976374509c666e7581db27e9c68
Loading...
Loading
Loading...
Loading
[ 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.