ETH Price: $3,097.46 (+2.12%)
Gas: 3 Gwei

Token

Angel Alliance (AGA)
 

Overview

Max Total Supply

725 AGA

Holders

406

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
savageheart.eth
Balance
1 AGA
0x06186E1BFb2309c3CBc9dFed039a45d7187bd6D1
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:
AngelAllianceContract

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 1600 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-26
*/

// SPDX-License-Identifier: MIT

// 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: @openzeppelin/contracts/utils/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/Context.sol


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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


// OpenZeppelin Contracts (last updated v4.5.0) (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: @openzeppelin/contracts/token/ERC721/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: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

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


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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// 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 view returns (string memory);
}

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _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: contracts/AngelAllianceContract.sol



pragma solidity >=0.7.0 <0.9.0;




contract AngelAllianceContract is ERC721, Ownable {
    using Strings for uint256;
    using Counters for Counters.Counter;

    Counters.Counter private supply;

    string public uriPrefix = "";
    string public uriSuffix = ".json";
    string public hiddenMetadataUri;

    uint256 public whitelistCost = 0.07 ether;
    uint256 public publicCost = 0.08 ether;
    uint256 public maxSupply = 6666;
    uint256 public maxMintAmountPerTx = 5;

    mapping(address => uint256) public presaleWhitelist;
    mapping(address => uint256) public giveawayList;

    bool public presaleActive = false;
    bool public saleActive = false;
    bool public revealed = false;

    constructor() ERC721("Angel Alliance", "AGA") {
        setHiddenMetadataUri(
            "ipfs://QmPL5yJCTAWPutjha8WGYQiXABjSE9xXdRmD98AGfjz8hJ/hidden.json"
        );
    }

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

    function totalSupply() public view returns (uint256) {
        return supply.current();
    }

    function mint(uint256 _mintAmount)
        public
        payable
        mintCompliance(_mintAmount)
    {
        require(saleActive, "The public sale is not active!");
        require(msg.value >= publicCost * _mintAmount, "Insufficient funds!");

        _mintLoop(msg.sender, _mintAmount);
    }

    function mintPresale(uint256 _mintAmount)
        public
        payable
        mintCompliance(_mintAmount)
    {
        uint256 reserved = presaleWhitelist[msg.sender];
        require(presaleActive, "No presale active");
        require(reserved > 0, "This address is not authorized for presale");
        require(_mintAmount <= reserved, "Exceeded allowed amount");
        require(
            msg.value >= whitelistCost * _mintAmount,
            "Insufficient funds!"
        );

        presaleWhitelist[msg.sender] = reserved - _mintAmount;

        _mintLoop(msg.sender, _mintAmount);
    }

    function mintGiveaway(uint256 _mintAmount)
        public
        payable
        mintCompliance(_mintAmount)
    {
        uint256 reserved = giveawayList[msg.sender];
        require(reserved > 0, "This address is not authorized for presale");
        require(
            _mintAmount <= reserved,
            "Exceeded allowed amount for giveaway"
        );

        giveawayList[msg.sender] = reserved - _mintAmount;

        _mintLoop(msg.sender, _mintAmount);
    }

    function editPresale(address[] calldata presaleAddresses, uint256 amount)
        external
        onlyOwner
    {
        for (uint256 i; i < presaleAddresses.length; i++) {
            presaleWhitelist[presaleAddresses[i]] = amount;
        }
    }

    function editGiveaway(address[] calldata giveawayAddresses, uint256 amount)
        external
        onlyOwner
    {
        for (uint256 i; i < giveawayAddresses.length; i++) {
            giveawayList[giveawayAddresses[i]] = amount;
        }
    }

    function mintForAddress(uint256 _mintAmount, address _receiver)
        public
        mintCompliance(_mintAmount)
        onlyOwner
    {
        _mintLoop(_receiver, _mintAmount);
    }

    function walletOfOwner(address _owner)
        public
        view
        returns (uint256[] memory)
    {
        uint256 ownerTokenCount = balanceOf(_owner);
        uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
        uint256 currentTokenId = 1;
        uint256 ownedTokenIndex = 0;

        while (
            ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply
        ) {
            address currentTokenOwner = ownerOf(currentTokenId);

            if (currentTokenOwner == _owner) {
                ownedTokenIds[ownedTokenIndex] = currentTokenId;

                ownedTokenIndex++;
            }

            currentTokenId++;
        }

        return ownedTokenIds;
    }

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

        if (revealed == false) {
            return hiddenMetadataUri;
        }

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

    function setRevealed(bool _state) public onlyOwner {
        revealed = _state;
    }

    function setWhitelistCost(uint256 _cost) public onlyOwner {
        whitelistCost = _cost;
    }

    function setPublicCost(uint256 _cost) public onlyOwner {
        publicCost = _cost;
    }

    function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx)
        public
        onlyOwner
    {
        maxMintAmountPerTx = _maxMintAmountPerTx;
    }

    function setHiddenMetadataUri(string memory _hiddenMetadataUri)
        public
        onlyOwner
    {
        hiddenMetadataUri = _hiddenMetadataUri;
    }

    function setUriPrefix(string memory _uriPrefix) public onlyOwner {
        uriPrefix = _uriPrefix;
    }

    function setUriSuffix(string memory _uriSuffix) public onlyOwner {
        uriSuffix = _uriSuffix;
    }

    function setSaleActive(bool _state) public onlyOwner {
        saleActive = _state;
    }

    function togglePresale() external onlyOwner {
        presaleActive = !presaleActive;
    }

    function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "Balance is 0");

        (bool sOne, ) = payable(0x5fABA91b149a847E63BbD9BacD868ed64082F895)
            .call{value: (balance * 8) / 100}("");
        require(sOne);

        (bool sTwo, ) = payable(0xd392BA033f591873DBB304d23Fdf8700Ae7a8fB7)
            .call{value: (balance * 33) / 100}("");
        require(sTwo);

        (bool sThree, ) = payable(0x6158198d2ce499B5a35F53e863fD96A56deFA461)
            .call{value: (balance * 13) / 100}("");
        require(sThree);

        (bool sFour, ) = payable(0x3Bd8f269BE2686CeeA171cc92B4d4BD62B6E5a41)
            .call{value: (balance * 4) / 100}("");
        require(sFour);

        (bool sFive, ) = payable(0x34058a448870c5D0e70BF00fBa6b025118854622)
            .call{value: (balance * 8) / 100}("");
        require(sFive);

        (bool sSix, ) = payable(0xe01D66C696326eaD4e1939B8f10c2405c340e966)
            .call{value: ((balance * 15) / 2) / 100}("");
        require(sSix);

        (bool sSeven, ) = payable(0x5a1A247446aF232dC3479edd7bE5Df1A6CcAEeBf)
            .call{value: ((balance * 15) / 2) / 100}("");
        require(sSeven);

        (bool sEight, ) = payable(0xB6153F659E2d36ba8fE1ff042efe55b5D69Bf978)
            .call{value: (balance * 7) / 100}("");
        require(sEight);

        (bool sNine, ) = payable(0x8C628f407D5b39494Fd3E8e880E2Efa4681c8217)
            .call{value: (balance * 4) / 100}("");
        require(sNine);

        (bool sTen, ) = payable(0x8E03b00b3ab0EeaFfa931259b2c1D89086da4F6D)
            .call{value: (balance * 3) / 100}("");
        require(sTen);

        (bool sEleven, ) = payable(0x7Fa829e6258899af8b6E7dE4FEee75e22F9A58Dd)
            .call{value: (balance * 5) / 100}("");
        require(sEleven);

        // This will transfer the remaining contract balance to the owner.
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }

    function _mintLoop(address _receiver, uint256 _mintAmount) internal {
        for (uint256 i = 0; i < _mintAmount; i++) {
            supply.increment();
            _safeMint(_receiver, supply.current());
        }
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":[{"internalType":"address[]","name":"giveawayAddresses","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"editGiveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"presaleAddresses","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"editPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"giveawayList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintGiveaway","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintPresale","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":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setPublicCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setWhitelistCost","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":[],"name":"togglePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b9160089162000203565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a9160099162000203565b5066f8b0a10e470000600b5567011c37937e080000600c55611a0a600d556005600e556011805462ffffff191690553480156200008657600080fd5b50604080518082018252600e81526d416e67656c20416c6c69616e636560901b60208083019182528351808501909452600384526241474160e81b908401528151919291620000d89160009162000203565b508051620000ee90600190602084019062000203565b5050506200010b620001056200013560201b60201c565b62000139565b6200012f604051806080016040528060418152602001620039bf604191396200018b565b620002e6565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620001ea5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b8051620001ff90600a90602084019062000203565b5050565b8280546200021190620002a9565b90600052602060002090601f01602090048101928262000235576000855562000280565b82601f106200025057805160ff191683800117855562000280565b8280016001018555821562000280579182015b828111156200028057825182559160200191906001019062000263565b506200028e92915062000292565b5090565b5b808211156200028e576000815560010162000293565b600181811c90821680620002be57607f821691505b60208210811415620002e057634e487b7160e01b600052602260045260246000fd5b50919050565b6136c980620002f66000396000f3fe6080604052600436106102fd5760003560e01c80637ec4a6591161018f578063b071401b116100e1578063e7b99ec71161008a578063efbd73f411610064578063efbd73f41461084e578063f2fde38b1461086e578063f759867a1461088e57600080fd5b8063e7b99ec7146107c2578063e985e9c5146107d8578063eb8835ab1461082157600080fd5b8063d49479eb116100bb578063d49479eb1461076c578063d5abeb011461078c578063e0a80853146107a257600080fd5b8063b071401b1461070c578063b88d4fde1461072c578063c87b56dd1461074c57600080fd5b80638da5cb5b11610143578063a0712d681161011d578063a0712d68146106c4578063a22cb465146106d7578063a45ba8e7146106f757600080fd5b80638da5cb5b1461067b57806394354fd01461069957806395d89b41146106af57600080fd5b8063841718a611610174578063841718a6146106185780638693da20146106385780638d55e1eb1461064e57600080fd5b80637ec4a659146105d8578063811d2437146105f857600080fd5b806342842e0e1161025357806362b99ad4116101fc57806370a08231116101d657806370a0823114610590578063715018a6146105b05780637af66cec146105c557600080fd5b806362b99ad41461053c5780636352211e1461055157806368428a1b1461057157600080fd5b8063518302271161022d57806351830227146104ed57806353135ca01461050d5780635503a0e81461052757600080fd5b806342842e0e14610480578063438b6300146104a05780634fdd43cb146104cd57600080fd5b806316ba10e0116102b5578063343937431161028f57806334393743146104365780633ccfd60b1461044b5780633f96b10c1461046057600080fd5b806316ba10e0146103d357806318160ddd146103f357806323b872dd1461041657600080fd5b8063081812fc116102e6578063081812fc14610359578063095ea7b3146103915780630eec8592146103b357600080fd5b806301ffc9a71461030257806306fdde0314610337575b600080fd5b34801561030e57600080fd5b5061032261031d3660046132d3565b6108a1565b60405190151581526020015b60405180910390f35b34801561034357600080fd5b5061034c610986565b60405161032e9190613502565b34801561036557600080fd5b50610379610374366004613356565b610a18565b6040516001600160a01b03909116815260200161032e565b34801561039d57600080fd5b506103b16103ac366004613213565b610ac3565b005b3480156103bf57600080fd5b506103b16103ce36600461323d565b610bf5565b3480156103df57600080fd5b506103b16103ee36600461330d565b610cb8565b3480156103ff57600080fd5b50610408610d29565b60405190815260200161032e565b34801561042257600080fd5b506103b1610431366004613131565b610d39565b34801561044257600080fd5b506103b1610dc0565b34801561045757600080fd5b506103b1610e2e565b34801561046c57600080fd5b506103b161047b36600461323d565b6114cd565b34801561048c57600080fd5b506103b161049b366004613131565b61158a565b3480156104ac57600080fd5b506104c06104bb3660046130e3565b6115a5565b60405161032e91906134be565b3480156104d957600080fd5b506103b16104e836600461330d565b611686565b3480156104f957600080fd5b506011546103229062010000900460ff1681565b34801561051957600080fd5b506011546103229060ff1681565b34801561053357600080fd5b5061034c6116f3565b34801561054857600080fd5b5061034c611781565b34801561055d57600080fd5b5061037961056c366004613356565b61178e565b34801561057d57600080fd5b5060115461032290610100900460ff1681565b34801561059c57600080fd5b506104086105ab3660046130e3565b611819565b3480156105bc57600080fd5b506103b16118b3565b6103b16105d3366004613356565b611919565b3480156105e457600080fd5b506103b16105f336600461330d565b611afc565b34801561060457600080fd5b506103b1610613366004613356565b611b69565b34801561062457600080fd5b506103b16106333660046132b8565b611bc8565b34801561064457600080fd5b50610408600c5481565b34801561065a57600080fd5b506104086106693660046130e3565b60106020526000908152604090205481565b34801561068757600080fd5b506006546001600160a01b0316610379565b3480156106a557600080fd5b50610408600e5481565b3480156106bb57600080fd5b5061034c611c3c565b6103b16106d2366004613356565b611c4b565b3480156106e357600080fd5b506103b16106f23660046131e9565b611dcd565b34801561070357600080fd5b5061034c611dd8565b34801561071857600080fd5b506103b1610727366004613356565b611de5565b34801561073857600080fd5b506103b161074736600461316d565b611e44565b34801561075857600080fd5b5061034c610767366004613356565b611ecc565b34801561077857600080fd5b506103b1610787366004613356565b61205a565b34801561079857600080fd5b50610408600d5481565b3480156107ae57600080fd5b506103b16107bd3660046132b8565b6120b9565b3480156107ce57600080fd5b50610408600b5481565b3480156107e457600080fd5b506103226107f33660046130fe565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561082d57600080fd5b5061040861083c3660046130e3565b600f6020526000908152604090205481565b34801561085a57600080fd5b506103b161086936600461336f565b61212f565b34801561087a57600080fd5b506103b16108893660046130e3565b612257565b6103b161089c366004613356565b612339565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061093457507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061098057507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b606060008054610995906135a3565b80601f01602080910402602001604051908101604052809291908181526020018280546109c1906135a3565b8015610a0e5780601f106109e357610100808354040283529160200191610a0e565b820191906000526020600020905b8154815290600101906020018083116109f157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610aa75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610ace8261178e565b9050806001600160a01b0316836001600160a01b03161415610b585760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610a9e565b336001600160a01b0382161480610b745750610b7481336107f3565b610be65760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a9e565b610bf083836125a9565b505050565b6006546001600160a01b03163314610c4f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9e565b60005b82811015610cb25781600f6000868685818110610c7157610c71613639565b9050602002016020810190610c8691906130e3565b6001600160a01b0316815260208101919091526040016000205580610caa816135de565b915050610c52565b50505050565b6006546001600160a01b03163314610d125760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9e565b8051610d25906009906020840190612fa8565b5050565b6000610d3460075490565b905090565b610d433382612624565b610db55760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a9e565b610bf083838361272c565b6006546001600160a01b03163314610e1a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9e565b6011805460ff19811660ff90911615179055565b6006546001600160a01b03163314610e885760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9e565b4780610ed65760405162461bcd60e51b815260206004820152600c60248201527f42616c616e6365206973203000000000000000000000000000000000000000006044820152606401610a9e565b6000735faba91b149a847e63bbd9bacd868ed64082f8956064610efa846008613541565b610f04919061352d565b604051600081818185875af1925050503d8060008114610f40576040519150601f19603f3d011682016040523d82523d6000602084013e610f45565b606091505b5050905080610f5357600080fd5b600073d392ba033f591873dbb304d23fdf8700ae7a8fb76064610f77856021613541565b610f81919061352d565b604051600081818185875af1925050503d8060008114610fbd576040519150601f19603f3d011682016040523d82523d6000602084013e610fc2565b606091505b5050905080610fd057600080fd5b6000736158198d2ce499b5a35f53e863fd96a56defa4616064610ff486600d613541565b610ffe919061352d565b604051600081818185875af1925050503d806000811461103a576040519150601f19603f3d011682016040523d82523d6000602084013e61103f565b606091505b505090508061104d57600080fd5b6000733bd8f269be2686ceea171cc92b4d4bd62b6e5a416064611071876004613541565b61107b919061352d565b604051600081818185875af1925050503d80600081146110b7576040519150601f19603f3d011682016040523d82523d6000602084013e6110bc565b606091505b50509050806110ca57600080fd5b60007334058a448870c5d0e70bf00fba6b02511885462260646110ee886008613541565b6110f8919061352d565b604051600081818185875af1925050503d8060008114611134576040519150601f19603f3d011682016040523d82523d6000602084013e611139565b606091505b505090508061114757600080fd5b600073e01d66c696326ead4e1939b8f10c2405c340e9666064600261116d8a600f613541565b611177919061352d565b611181919061352d565b604051600081818185875af1925050503d80600081146111bd576040519150601f19603f3d011682016040523d82523d6000602084013e6111c2565b606091505b50509050806111d057600080fd5b6000735a1a247446af232dc3479edd7be5df1a6ccaeebf606460026111f68b600f613541565b611200919061352d565b61120a919061352d565b604051600081818185875af1925050503d8060008114611246576040519150601f19603f3d011682016040523d82523d6000602084013e61124b565b606091505b505090508061125957600080fd5b600073b6153f659e2d36ba8fe1ff042efe55b5d69bf978606461127d8b6007613541565b611287919061352d565b604051600081818185875af1925050503d80600081146112c3576040519150601f19603f3d011682016040523d82523d6000602084013e6112c8565b606091505b50509050806112d657600080fd5b6000738c628f407d5b39494fd3e8e880e2efa4681c821760646112fa8c6004613541565b611304919061352d565b604051600081818185875af1925050503d8060008114611340576040519150601f19603f3d011682016040523d82523d6000602084013e611345565b606091505b505090508061135357600080fd5b6000738e03b00b3ab0eeaffa931259b2c1d89086da4f6d60646113778d6003613541565b611381919061352d565b604051600081818185875af1925050503d80600081146113bd576040519150601f19603f3d011682016040523d82523d6000602084013e6113c2565b606091505b50509050806113d057600080fd5b6000737fa829e6258899af8b6e7de4feee75e22f9a58dd60646113f48e6005613541565b6113fe919061352d565b604051600081818185875af1925050503d806000811461143a576040519150601f19603f3d011682016040523d82523d6000602084013e61143f565b606091505b505090508061144d57600080fd5b60006114616006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146114ab576040519150601f19603f3d011682016040523d82523d6000602084013e6114b0565b606091505b50509050806114be57600080fd5b50505050505050505050505050565b6006546001600160a01b031633146115275760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9e565b60005b82811015610cb257816010600086868581811061154957611549613639565b905060200201602081019061155e91906130e3565b6001600160a01b0316815260208101919091526040016000205580611582816135de565b91505061152a565b610bf083838360405180602001604052806000815250611e44565b606060006115b283611819565b905060008167ffffffffffffffff8111156115cf576115cf61364f565b6040519080825280602002602001820160405280156115f8578160200160208202803683370190505b509050600160005b83811080156116115750600d548211155b1561167c5760006116218361178e565b9050866001600160a01b0316816001600160a01b03161415611669578284838151811061165057611650613639565b602090810291909101015281611665816135de565b9250505b82611673816135de565b93505050611600565b5090949350505050565b6006546001600160a01b031633146116e05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9e565b8051610d2590600a906020840190612fa8565b60098054611700906135a3565b80601f016020809104026020016040519081016040528092919081815260200182805461172c906135a3565b80156117795780601f1061174e57610100808354040283529160200191611779565b820191906000526020600020905b81548152906001019060200180831161175c57829003601f168201915b505050505081565b60088054611700906135a3565b6000818152600260205260408120546001600160a01b0316806109805760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610a9e565b60006001600160a01b0382166118975760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610a9e565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b0316331461190d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9e565b6119176000612906565b565b8060008111801561192c5750600e548111155b6119785760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e74210000000000000000000000006044820152606401610a9e565b600d548161198560075490565b61198f9190613515565b11156119dd5760405162461bcd60e51b815260206004820152601460248201527f4d617820737570706c79206578636565646564210000000000000000000000006044820152606401610a9e565b3360009081526010602052604090205480611a605760405162461bcd60e51b815260206004820152602a60248201527f546869732061646472657373206973206e6f7420617574686f72697a6564206660448201527f6f722070726573616c65000000000000000000000000000000000000000000006064820152608401610a9e565b80831115611ad55760405162461bcd60e51b8152602060048201526024808201527f457863656564656420616c6c6f77656420616d6f756e7420666f72206769766560448201527f61776179000000000000000000000000000000000000000000000000000000006064820152608401610a9e565b611adf8382613560565b33600081815260106020526040902091909155610bf09084612965565b6006546001600160a01b03163314611b565760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9e565b8051610d25906008906020840190612fa8565b6006546001600160a01b03163314611bc35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9e565b600c55565b6006546001600160a01b03163314611c225760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9e565b601180549115156101000261ff0019909216919091179055565b606060018054610995906135a3565b80600081118015611c5e5750600e548111155b611caa5760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e74210000000000000000000000006044820152606401610a9e565b600d5481611cb760075490565b611cc19190613515565b1115611d0f5760405162461bcd60e51b815260206004820152601460248201527f4d617820737570706c79206578636565646564210000000000000000000000006044820152606401610a9e565b601154610100900460ff16611d665760405162461bcd60e51b815260206004820152601e60248201527f546865207075626c69632073616c65206973206e6f74206163746976652100006044820152606401610a9e565b81600c54611d749190613541565b341015611dc35760405162461bcd60e51b815260206004820152601360248201527f496e73756666696369656e742066756e647321000000000000000000000000006044820152606401610a9e565b610d253383612965565b610d253383836129a2565b600a8054611700906135a3565b6006546001600160a01b03163314611e3f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9e565b600e55565b611e4e3383612624565b611ec05760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a9e565b610cb284848484612a71565b6000818152600260205260409020546060906001600160a01b0316611f595760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610a9e565b60115462010000900460ff16611ffb57600a8054611f76906135a3565b80601f0160208091040260200160405190810160405280929190818152602001828054611fa2906135a3565b8015611fef5780601f10611fc457610100808354040283529160200191611fef565b820191906000526020600020905b815481529060010190602001808311611fd257829003601f168201915b50505050509050919050565b6000612005612afa565b905060008151116120255760405180602001604052806000815250612053565b8061202f84612b09565b6009604051602001612043939291906133be565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146120b45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9e565b600b55565b6006546001600160a01b031633146121135760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9e565b60118054911515620100000262ff000019909216919091179055565b816000811180156121425750600e548111155b61218e5760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e74210000000000000000000000006044820152606401610a9e565b600d548161219b60075490565b6121a59190613515565b11156121f35760405162461bcd60e51b815260206004820152601460248201527f4d617820737570706c79206578636565646564210000000000000000000000006044820152606401610a9e565b6006546001600160a01b0316331461224d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9e565b610bf08284612965565b6006546001600160a01b031633146122b15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9e565b6001600160a01b03811661232d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a9e565b61233681612906565b50565b8060008111801561234c5750600e548111155b6123985760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e74210000000000000000000000006044820152606401610a9e565b600d54816123a560075490565b6123af9190613515565b11156123fd5760405162461bcd60e51b815260206004820152601460248201527f4d617820737570706c79206578636565646564210000000000000000000000006044820152606401610a9e565b336000908152600f602052604090205460115460ff1661245f5760405162461bcd60e51b815260206004820152601160248201527f4e6f2070726573616c65206163746976650000000000000000000000000000006044820152606401610a9e565b600081116124d55760405162461bcd60e51b815260206004820152602a60248201527f546869732061646472657373206973206e6f7420617574686f72697a6564206660448201527f6f722070726573616c65000000000000000000000000000000000000000000006064820152608401610a9e565b808311156125255760405162461bcd60e51b815260206004820152601760248201527f457863656564656420616c6c6f77656420616d6f756e740000000000000000006044820152606401610a9e565b82600b546125339190613541565b3410156125825760405162461bcd60e51b815260206004820152601360248201527f496e73756666696369656e742066756e647321000000000000000000000000006044820152606401610a9e565b61258c8382613560565b336000818152600f6020526040902091909155610bf09084612965565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03841690811790915581906125eb8261178e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166126ae5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610a9e565b60006126b98361178e565b9050806001600160a01b0316846001600160a01b031614806126f45750836001600160a01b03166126e984610a18565b6001600160a01b0316145b8061272457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661273f8261178e565b6001600160a01b0316146127bb5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610a9e565b6001600160a01b0382166128365760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610a9e565b6128416000826125a9565b6001600160a01b038316600090815260036020526040812080546001929061286a908490613560565b90915550506001600160a01b0382166000908152600360205260408120805460019290612898908490613515565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b81811015610bf05761297e600780546001019055565b6129908361298b60075490565b612c3b565b8061299a816135de565b915050612968565b816001600160a01b0316836001600160a01b03161415612a045760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a9e565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612a7c84848461272c565b612a8884848484612c55565b610cb25760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a9e565b606060088054610995906135a3565b606081612b4957505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612b735780612b5d816135de565b9150612b6c9050600a8361352d565b9150612b4d565b60008167ffffffffffffffff811115612b8e57612b8e61364f565b6040519080825280601f01601f191660200182016040528015612bb8576020820181803683370190505b5090505b841561272457612bcd600183613560565b9150612bda600a866135f9565b612be5906030613515565b60f81b818381518110612bfa57612bfa613639565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612c34600a8661352d565b9450612bbc565b610d25828260405180602001604052806000815250612dd0565b60006001600160a01b0384163b15612dc557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612c99903390899088908890600401613482565b602060405180830381600087803b158015612cb357600080fd5b505af1925050508015612ce3575060408051601f3d908101601f19168201909252612ce0918101906132f0565b60015b612d93573d808015612d11576040519150601f19603f3d011682016040523d82523d6000602084013e612d16565b606091505b508051612d8b5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a9e565b805181602001fd5b7fffffffff0000000000000000000000000000000000000000000000000000000016630a85bd0160e11b149050612724565b506001949350505050565b612dda8383612e59565b612de76000848484612c55565b610bf05760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a9e565b6001600160a01b038216612eaf5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a9e565b6000818152600260205260409020546001600160a01b031615612f145760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a9e565b6001600160a01b0382166000908152600360205260408120805460019290612f3d908490613515565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612fb4906135a3565b90600052602060002090601f016020900481019282612fd6576000855561301c565b82601f10612fef57805160ff191683800117855561301c565b8280016001018555821561301c579182015b8281111561301c578251825591602001919060010190613001565b5061302892915061302c565b5090565b5b80821115613028576000815560010161302d565b600067ffffffffffffffff8084111561305c5761305c61364f565b604051601f8501601f19908116603f011681019082821181831017156130845761308461364f565b8160405280935085815286868601111561309d57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146130ce57600080fd5b919050565b803580151581146130ce57600080fd5b6000602082840312156130f557600080fd5b612053826130b7565b6000806040838503121561311157600080fd5b61311a836130b7565b9150613128602084016130b7565b90509250929050565b60008060006060848603121561314657600080fd5b61314f846130b7565b925061315d602085016130b7565b9150604084013590509250925092565b6000806000806080858703121561318357600080fd5b61318c856130b7565b935061319a602086016130b7565b925060408501359150606085013567ffffffffffffffff8111156131bd57600080fd5b8501601f810187136131ce57600080fd5b6131dd87823560208401613041565b91505092959194509250565b600080604083850312156131fc57600080fd5b613205836130b7565b9150613128602084016130d3565b6000806040838503121561322657600080fd5b61322f836130b7565b946020939093013593505050565b60008060006040848603121561325257600080fd5b833567ffffffffffffffff8082111561326a57600080fd5b818601915086601f83011261327e57600080fd5b81358181111561328d57600080fd5b8760208260051b85010111156132a257600080fd5b6020928301989097509590910135949350505050565b6000602082840312156132ca57600080fd5b612053826130d3565b6000602082840312156132e557600080fd5b813561205381613665565b60006020828403121561330257600080fd5b815161205381613665565b60006020828403121561331f57600080fd5b813567ffffffffffffffff81111561333657600080fd5b8201601f8101841361334757600080fd5b61272484823560208401613041565b60006020828403121561336857600080fd5b5035919050565b6000806040838503121561338257600080fd5b82359150613128602084016130b7565b600081518084526133aa816020860160208601613577565b601f01601f19169290920160200192915050565b6000845160206133d18285838a01613577565b8551918401916133e48184848a01613577565b8554920191600090600181811c908083168061340157607f831692505b85831081141561341f57634e487b7160e01b85526022600452602485fd5b808015613433576001811461344457613471565b60ff19851688528388019550613471565b60008b81526020902060005b858110156134695781548a820152908401908801613450565b505083880195505b50939b9a5050505050505050505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526134b46080830184613392565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156134f6578351835292840192918401916001016134da565b50909695505050505050565b6020815260006120536020830184613392565b600082198211156135285761352861360d565b500190565b60008261353c5761353c613623565b500490565b600081600019048311821515161561355b5761355b61360d565b500290565b6000828210156135725761357261360d565b500390565b60005b8381101561359257818101518382015260200161357a565b83811115610cb25750506000910152565b600181811c908216806135b757607f821691505b602082108114156135d857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156135f2576135f261360d565b5060010190565b60008261360857613608613623565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b7fffffffff000000000000000000000000000000000000000000000000000000008116811461233657600080fdfea26469706673582212201740ed8ea2ca3fdc81a2cae18e6a9835264762ed911c282496d36a305a3c4e3264736f6c63430008070033697066733a2f2f516d504c35794a435441575075746a68613857475951695841426a534539785864526d4439384147666a7a38684a2f68696464656e2e6a736f6e

Deployed Bytecode

0x6080604052600436106102fd5760003560e01c80637ec4a6591161018f578063b071401b116100e1578063e7b99ec71161008a578063efbd73f411610064578063efbd73f41461084e578063f2fde38b1461086e578063f759867a1461088e57600080fd5b8063e7b99ec7146107c2578063e985e9c5146107d8578063eb8835ab1461082157600080fd5b8063d49479eb116100bb578063d49479eb1461076c578063d5abeb011461078c578063e0a80853146107a257600080fd5b8063b071401b1461070c578063b88d4fde1461072c578063c87b56dd1461074c57600080fd5b80638da5cb5b11610143578063a0712d681161011d578063a0712d68146106c4578063a22cb465146106d7578063a45ba8e7146106f757600080fd5b80638da5cb5b1461067b57806394354fd01461069957806395d89b41146106af57600080fd5b8063841718a611610174578063841718a6146106185780638693da20146106385780638d55e1eb1461064e57600080fd5b80637ec4a659146105d8578063811d2437146105f857600080fd5b806342842e0e1161025357806362b99ad4116101fc57806370a08231116101d657806370a0823114610590578063715018a6146105b05780637af66cec146105c557600080fd5b806362b99ad41461053c5780636352211e1461055157806368428a1b1461057157600080fd5b8063518302271161022d57806351830227146104ed57806353135ca01461050d5780635503a0e81461052757600080fd5b806342842e0e14610480578063438b6300146104a05780634fdd43cb146104cd57600080fd5b806316ba10e0116102b5578063343937431161028f57806334393743146104365780633ccfd60b1461044b5780633f96b10c1461046057600080fd5b806316ba10e0146103d357806318160ddd146103f357806323b872dd1461041657600080fd5b8063081812fc116102e6578063081812fc14610359578063095ea7b3146103915780630eec8592146103b357600080fd5b806301ffc9a71461030257806306fdde0314610337575b600080fd5b34801561030e57600080fd5b5061032261031d3660046132d3565b6108a1565b60405190151581526020015b60405180910390f35b34801561034357600080fd5b5061034c610986565b60405161032e9190613502565b34801561036557600080fd5b50610379610374366004613356565b610a18565b6040516001600160a01b03909116815260200161032e565b34801561039d57600080fd5b506103b16103ac366004613213565b610ac3565b005b3480156103bf57600080fd5b506103b16103ce36600461323d565b610bf5565b3480156103df57600080fd5b506103b16103ee36600461330d565b610cb8565b3480156103ff57600080fd5b50610408610d29565b60405190815260200161032e565b34801561042257600080fd5b506103b1610431366004613131565b610d39565b34801561044257600080fd5b506103b1610dc0565b34801561045757600080fd5b506103b1610e2e565b34801561046c57600080fd5b506103b161047b36600461323d565b6114cd565b34801561048c57600080fd5b506103b161049b366004613131565b61158a565b3480156104ac57600080fd5b506104c06104bb3660046130e3565b6115a5565b60405161032e91906134be565b3480156104d957600080fd5b506103b16104e836600461330d565b611686565b3480156104f957600080fd5b506011546103229062010000900460ff1681565b34801561051957600080fd5b506011546103229060ff1681565b34801561053357600080fd5b5061034c6116f3565b34801561054857600080fd5b5061034c611781565b34801561055d57600080fd5b5061037961056c366004613356565b61178e565b34801561057d57600080fd5b5060115461032290610100900460ff1681565b34801561059c57600080fd5b506104086105ab3660046130e3565b611819565b3480156105bc57600080fd5b506103b16118b3565b6103b16105d3366004613356565b611919565b3480156105e457600080fd5b506103b16105f336600461330d565b611afc565b34801561060457600080fd5b506103b1610613366004613356565b611b69565b34801561062457600080fd5b506103b16106333660046132b8565b611bc8565b34801561064457600080fd5b50610408600c5481565b34801561065a57600080fd5b506104086106693660046130e3565b60106020526000908152604090205481565b34801561068757600080fd5b506006546001600160a01b0316610379565b3480156106a557600080fd5b50610408600e5481565b3480156106bb57600080fd5b5061034c611c3c565b6103b16106d2366004613356565b611c4b565b3480156106e357600080fd5b506103b16106f23660046131e9565b611dcd565b34801561070357600080fd5b5061034c611dd8565b34801561071857600080fd5b506103b1610727366004613356565b611de5565b34801561073857600080fd5b506103b161074736600461316d565b611e44565b34801561075857600080fd5b5061034c610767366004613356565b611ecc565b34801561077857600080fd5b506103b1610787366004613356565b61205a565b34801561079857600080fd5b50610408600d5481565b3480156107ae57600080fd5b506103b16107bd3660046132b8565b6120b9565b3480156107ce57600080fd5b50610408600b5481565b3480156107e457600080fd5b506103226107f33660046130fe565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561082d57600080fd5b5061040861083c3660046130e3565b600f6020526000908152604090205481565b34801561085a57600080fd5b506103b161086936600461336f565b61212f565b34801561087a57600080fd5b506103b16108893660046130e3565b612257565b6103b161089c366004613356565b612339565b60007fffffffff0000000000000000000000000000000000000000000000000000000082167f80ac58cd00000000000000000000000000000000000000000000000000000000148061093457507fffffffff0000000000000000000000000000000000000000000000000000000082167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061098057507f01ffc9a7000000000000000000000000000000000000000000000000000000007fffffffff000000000000000000000000000000000000000000000000000000008316145b92915050565b606060008054610995906135a3565b80601f01602080910402602001604051908101604052809291908181526020018280546109c1906135a3565b8015610a0e5780601f106109e357610100808354040283529160200191610a0e565b820191906000526020600020905b8154815290600101906020018083116109f157829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610aa75760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e000000000000000000000000000000000000000060648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610ace8261178e565b9050806001600160a01b0316836001600160a01b03161415610b585760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610a9e565b336001600160a01b0382161480610b745750610b7481336107f3565b610be65760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a9e565b610bf083836125a9565b505050565b6006546001600160a01b03163314610c4f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9e565b60005b82811015610cb25781600f6000868685818110610c7157610c71613639565b9050602002016020810190610c8691906130e3565b6001600160a01b0316815260208101919091526040016000205580610caa816135de565b915050610c52565b50505050565b6006546001600160a01b03163314610d125760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9e565b8051610d25906009906020840190612fa8565b5050565b6000610d3460075490565b905090565b610d433382612624565b610db55760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a9e565b610bf083838361272c565b6006546001600160a01b03163314610e1a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9e565b6011805460ff19811660ff90911615179055565b6006546001600160a01b03163314610e885760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9e565b4780610ed65760405162461bcd60e51b815260206004820152600c60248201527f42616c616e6365206973203000000000000000000000000000000000000000006044820152606401610a9e565b6000735faba91b149a847e63bbd9bacd868ed64082f8956064610efa846008613541565b610f04919061352d565b604051600081818185875af1925050503d8060008114610f40576040519150601f19603f3d011682016040523d82523d6000602084013e610f45565b606091505b5050905080610f5357600080fd5b600073d392ba033f591873dbb304d23fdf8700ae7a8fb76064610f77856021613541565b610f81919061352d565b604051600081818185875af1925050503d8060008114610fbd576040519150601f19603f3d011682016040523d82523d6000602084013e610fc2565b606091505b5050905080610fd057600080fd5b6000736158198d2ce499b5a35f53e863fd96a56defa4616064610ff486600d613541565b610ffe919061352d565b604051600081818185875af1925050503d806000811461103a576040519150601f19603f3d011682016040523d82523d6000602084013e61103f565b606091505b505090508061104d57600080fd5b6000733bd8f269be2686ceea171cc92b4d4bd62b6e5a416064611071876004613541565b61107b919061352d565b604051600081818185875af1925050503d80600081146110b7576040519150601f19603f3d011682016040523d82523d6000602084013e6110bc565b606091505b50509050806110ca57600080fd5b60007334058a448870c5d0e70bf00fba6b02511885462260646110ee886008613541565b6110f8919061352d565b604051600081818185875af1925050503d8060008114611134576040519150601f19603f3d011682016040523d82523d6000602084013e611139565b606091505b505090508061114757600080fd5b600073e01d66c696326ead4e1939b8f10c2405c340e9666064600261116d8a600f613541565b611177919061352d565b611181919061352d565b604051600081818185875af1925050503d80600081146111bd576040519150601f19603f3d011682016040523d82523d6000602084013e6111c2565b606091505b50509050806111d057600080fd5b6000735a1a247446af232dc3479edd7be5df1a6ccaeebf606460026111f68b600f613541565b611200919061352d565b61120a919061352d565b604051600081818185875af1925050503d8060008114611246576040519150601f19603f3d011682016040523d82523d6000602084013e61124b565b606091505b505090508061125957600080fd5b600073b6153f659e2d36ba8fe1ff042efe55b5d69bf978606461127d8b6007613541565b611287919061352d565b604051600081818185875af1925050503d80600081146112c3576040519150601f19603f3d011682016040523d82523d6000602084013e6112c8565b606091505b50509050806112d657600080fd5b6000738c628f407d5b39494fd3e8e880e2efa4681c821760646112fa8c6004613541565b611304919061352d565b604051600081818185875af1925050503d8060008114611340576040519150601f19603f3d011682016040523d82523d6000602084013e611345565b606091505b505090508061135357600080fd5b6000738e03b00b3ab0eeaffa931259b2c1d89086da4f6d60646113778d6003613541565b611381919061352d565b604051600081818185875af1925050503d80600081146113bd576040519150601f19603f3d011682016040523d82523d6000602084013e6113c2565b606091505b50509050806113d057600080fd5b6000737fa829e6258899af8b6e7de4feee75e22f9a58dd60646113f48e6005613541565b6113fe919061352d565b604051600081818185875af1925050503d806000811461143a576040519150601f19603f3d011682016040523d82523d6000602084013e61143f565b606091505b505090508061144d57600080fd5b60006114616006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146114ab576040519150601f19603f3d011682016040523d82523d6000602084013e6114b0565b606091505b50509050806114be57600080fd5b50505050505050505050505050565b6006546001600160a01b031633146115275760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9e565b60005b82811015610cb257816010600086868581811061154957611549613639565b905060200201602081019061155e91906130e3565b6001600160a01b0316815260208101919091526040016000205580611582816135de565b91505061152a565b610bf083838360405180602001604052806000815250611e44565b606060006115b283611819565b905060008167ffffffffffffffff8111156115cf576115cf61364f565b6040519080825280602002602001820160405280156115f8578160200160208202803683370190505b509050600160005b83811080156116115750600d548211155b1561167c5760006116218361178e565b9050866001600160a01b0316816001600160a01b03161415611669578284838151811061165057611650613639565b602090810291909101015281611665816135de565b9250505b82611673816135de565b93505050611600565b5090949350505050565b6006546001600160a01b031633146116e05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9e565b8051610d2590600a906020840190612fa8565b60098054611700906135a3565b80601f016020809104026020016040519081016040528092919081815260200182805461172c906135a3565b80156117795780601f1061174e57610100808354040283529160200191611779565b820191906000526020600020905b81548152906001019060200180831161175c57829003601f168201915b505050505081565b60088054611700906135a3565b6000818152600260205260408120546001600160a01b0316806109805760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610a9e565b60006001600160a01b0382166118975760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610a9e565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b0316331461190d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9e565b6119176000612906565b565b8060008111801561192c5750600e548111155b6119785760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e74210000000000000000000000006044820152606401610a9e565b600d548161198560075490565b61198f9190613515565b11156119dd5760405162461bcd60e51b815260206004820152601460248201527f4d617820737570706c79206578636565646564210000000000000000000000006044820152606401610a9e565b3360009081526010602052604090205480611a605760405162461bcd60e51b815260206004820152602a60248201527f546869732061646472657373206973206e6f7420617574686f72697a6564206660448201527f6f722070726573616c65000000000000000000000000000000000000000000006064820152608401610a9e565b80831115611ad55760405162461bcd60e51b8152602060048201526024808201527f457863656564656420616c6c6f77656420616d6f756e7420666f72206769766560448201527f61776179000000000000000000000000000000000000000000000000000000006064820152608401610a9e565b611adf8382613560565b33600081815260106020526040902091909155610bf09084612965565b6006546001600160a01b03163314611b565760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9e565b8051610d25906008906020840190612fa8565b6006546001600160a01b03163314611bc35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9e565b600c55565b6006546001600160a01b03163314611c225760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9e565b601180549115156101000261ff0019909216919091179055565b606060018054610995906135a3565b80600081118015611c5e5750600e548111155b611caa5760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e74210000000000000000000000006044820152606401610a9e565b600d5481611cb760075490565b611cc19190613515565b1115611d0f5760405162461bcd60e51b815260206004820152601460248201527f4d617820737570706c79206578636565646564210000000000000000000000006044820152606401610a9e565b601154610100900460ff16611d665760405162461bcd60e51b815260206004820152601e60248201527f546865207075626c69632073616c65206973206e6f74206163746976652100006044820152606401610a9e565b81600c54611d749190613541565b341015611dc35760405162461bcd60e51b815260206004820152601360248201527f496e73756666696369656e742066756e647321000000000000000000000000006044820152606401610a9e565b610d253383612965565b610d253383836129a2565b600a8054611700906135a3565b6006546001600160a01b03163314611e3f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9e565b600e55565b611e4e3383612624565b611ec05760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a9e565b610cb284848484612a71565b6000818152600260205260409020546060906001600160a01b0316611f595760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610a9e565b60115462010000900460ff16611ffb57600a8054611f76906135a3565b80601f0160208091040260200160405190810160405280929190818152602001828054611fa2906135a3565b8015611fef5780601f10611fc457610100808354040283529160200191611fef565b820191906000526020600020905b815481529060010190602001808311611fd257829003601f168201915b50505050509050919050565b6000612005612afa565b905060008151116120255760405180602001604052806000815250612053565b8061202f84612b09565b6009604051602001612043939291906133be565b6040516020818303038152906040525b9392505050565b6006546001600160a01b031633146120b45760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9e565b600b55565b6006546001600160a01b031633146121135760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9e565b60118054911515620100000262ff000019909216919091179055565b816000811180156121425750600e548111155b61218e5760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e74210000000000000000000000006044820152606401610a9e565b600d548161219b60075490565b6121a59190613515565b11156121f35760405162461bcd60e51b815260206004820152601460248201527f4d617820737570706c79206578636565646564210000000000000000000000006044820152606401610a9e565b6006546001600160a01b0316331461224d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9e565b610bf08284612965565b6006546001600160a01b031633146122b15760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a9e565b6001600160a01b03811661232d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a9e565b61233681612906565b50565b8060008111801561234c5750600e548111155b6123985760405162461bcd60e51b815260206004820152601460248201527f496e76616c6964206d696e7420616d6f756e74210000000000000000000000006044820152606401610a9e565b600d54816123a560075490565b6123af9190613515565b11156123fd5760405162461bcd60e51b815260206004820152601460248201527f4d617820737570706c79206578636565646564210000000000000000000000006044820152606401610a9e565b336000908152600f602052604090205460115460ff1661245f5760405162461bcd60e51b815260206004820152601160248201527f4e6f2070726573616c65206163746976650000000000000000000000000000006044820152606401610a9e565b600081116124d55760405162461bcd60e51b815260206004820152602a60248201527f546869732061646472657373206973206e6f7420617574686f72697a6564206660448201527f6f722070726573616c65000000000000000000000000000000000000000000006064820152608401610a9e565b808311156125255760405162461bcd60e51b815260206004820152601760248201527f457863656564656420616c6c6f77656420616d6f756e740000000000000000006044820152606401610a9e565b82600b546125339190613541565b3410156125825760405162461bcd60e51b815260206004820152601360248201527f496e73756666696369656e742066756e647321000000000000000000000000006044820152606401610a9e565b61258c8382613560565b336000818152600f6020526040902091909155610bf09084612965565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03841690811790915581906125eb8261178e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166126ae5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201527f697374656e7420746f6b656e00000000000000000000000000000000000000006064820152608401610a9e565b60006126b98361178e565b9050806001600160a01b0316846001600160a01b031614806126f45750836001600160a01b03166126e984610a18565b6001600160a01b0316145b8061272457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661273f8261178e565b6001600160a01b0316146127bb5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201527f6f776e65720000000000000000000000000000000000000000000000000000006064820152608401610a9e565b6001600160a01b0382166128365760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610a9e565b6128416000826125a9565b6001600160a01b038316600090815260036020526040812080546001929061286a908490613560565b90915550506001600160a01b0382166000908152600360205260408120805460019290612898908490613515565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b81811015610bf05761297e600780546001019055565b6129908361298b60075490565b612c3b565b8061299a816135de565b915050612968565b816001600160a01b0316836001600160a01b03161415612a045760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a9e565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b612a7c84848461272c565b612a8884848484612c55565b610cb25760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a9e565b606060088054610995906135a3565b606081612b4957505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115612b735780612b5d816135de565b9150612b6c9050600a8361352d565b9150612b4d565b60008167ffffffffffffffff811115612b8e57612b8e61364f565b6040519080825280601f01601f191660200182016040528015612bb8576020820181803683370190505b5090505b841561272457612bcd600183613560565b9150612bda600a866135f9565b612be5906030613515565b60f81b818381518110612bfa57612bfa613639565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612c34600a8661352d565b9450612bbc565b610d25828260405180602001604052806000815250612dd0565b60006001600160a01b0384163b15612dc557604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612c99903390899088908890600401613482565b602060405180830381600087803b158015612cb357600080fd5b505af1925050508015612ce3575060408051601f3d908101601f19168201909252612ce0918101906132f0565b60015b612d93573d808015612d11576040519150601f19603f3d011682016040523d82523d6000602084013e612d16565b606091505b508051612d8b5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a9e565b805181602001fd5b7fffffffff0000000000000000000000000000000000000000000000000000000016630a85bd0160e11b149050612724565b506001949350505050565b612dda8383612e59565b612de76000848484612c55565b610bf05760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a9e565b6001600160a01b038216612eaf5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a9e565b6000818152600260205260409020546001600160a01b031615612f145760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a9e565b6001600160a01b0382166000908152600360205260408120805460019290612f3d908490613515565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612fb4906135a3565b90600052602060002090601f016020900481019282612fd6576000855561301c565b82601f10612fef57805160ff191683800117855561301c565b8280016001018555821561301c579182015b8281111561301c578251825591602001919060010190613001565b5061302892915061302c565b5090565b5b80821115613028576000815560010161302d565b600067ffffffffffffffff8084111561305c5761305c61364f565b604051601f8501601f19908116603f011681019082821181831017156130845761308461364f565b8160405280935085815286868601111561309d57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146130ce57600080fd5b919050565b803580151581146130ce57600080fd5b6000602082840312156130f557600080fd5b612053826130b7565b6000806040838503121561311157600080fd5b61311a836130b7565b9150613128602084016130b7565b90509250929050565b60008060006060848603121561314657600080fd5b61314f846130b7565b925061315d602085016130b7565b9150604084013590509250925092565b6000806000806080858703121561318357600080fd5b61318c856130b7565b935061319a602086016130b7565b925060408501359150606085013567ffffffffffffffff8111156131bd57600080fd5b8501601f810187136131ce57600080fd5b6131dd87823560208401613041565b91505092959194509250565b600080604083850312156131fc57600080fd5b613205836130b7565b9150613128602084016130d3565b6000806040838503121561322657600080fd5b61322f836130b7565b946020939093013593505050565b60008060006040848603121561325257600080fd5b833567ffffffffffffffff8082111561326a57600080fd5b818601915086601f83011261327e57600080fd5b81358181111561328d57600080fd5b8760208260051b85010111156132a257600080fd5b6020928301989097509590910135949350505050565b6000602082840312156132ca57600080fd5b612053826130d3565b6000602082840312156132e557600080fd5b813561205381613665565b60006020828403121561330257600080fd5b815161205381613665565b60006020828403121561331f57600080fd5b813567ffffffffffffffff81111561333657600080fd5b8201601f8101841361334757600080fd5b61272484823560208401613041565b60006020828403121561336857600080fd5b5035919050565b6000806040838503121561338257600080fd5b82359150613128602084016130b7565b600081518084526133aa816020860160208601613577565b601f01601f19169290920160200192915050565b6000845160206133d18285838a01613577565b8551918401916133e48184848a01613577565b8554920191600090600181811c908083168061340157607f831692505b85831081141561341f57634e487b7160e01b85526022600452602485fd5b808015613433576001811461344457613471565b60ff19851688528388019550613471565b60008b81526020902060005b858110156134695781548a820152908401908801613450565b505083880195505b50939b9a5050505050505050505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526134b46080830184613392565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156134f6578351835292840192918401916001016134da565b50909695505050505050565b6020815260006120536020830184613392565b600082198211156135285761352861360d565b500190565b60008261353c5761353c613623565b500490565b600081600019048311821515161561355b5761355b61360d565b500290565b6000828210156135725761357261360d565b500390565b60005b8381101561359257818101518382015260200161357a565b83811115610cb25750506000910152565b600181811c908216806135b757607f821691505b602082108114156135d857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156135f2576135f261360d565b5060010190565b60008261360857613608613623565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b7fffffffff000000000000000000000000000000000000000000000000000000008116811461233657600080fdfea26469706673582212201740ed8ea2ca3fdc81a2cae18e6a9835264762ed911c282496d36a305a3c4e3264736f6c63430008070033

Deployed Bytecode Sourcemap

38816:8454:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25609:305;;;;;;;;;;-1:-1:-1;25609:305:0;;;;;:::i;:::-;;:::i;:::-;;;8886:14:1;;8879:22;8861:41;;8849:2;8834:18;25609:305:0;;;;;;;;26554:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28113:221::-;;;;;;;;;;-1:-1:-1;28113:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7501:55:1;;;7483:74;;7471:2;7456:18;28113:221:0;7337:226:1;27636:411:0;;;;;;;;;;-1:-1:-1;27636:411:0;;;;;:::i;:::-;;:::i;:::-;;41566:257;;;;;;;;;;-1:-1:-1;41566:257:0;;;;;:::i;:::-;;:::i;44534:106::-;;;;;;;;;;-1:-1:-1;44534:106:0;;;;;:::i;:::-;;:::i;40025:95::-;;;;;;;;;;;;;:::i;:::-;;;18921:25:1;;;18909:2;18894:18;40025:95:0;18775:177:1;28863:339:0;;;;;;;;;;-1:-1:-1;28863:339:0;;;;;:::i;:::-;;:::i;44747:93::-;;;;;;;;;;;;;:::i;44848:2067::-;;;;;;;;;;;;;:::i;41831:257::-;;;;;;;;;;-1:-1:-1;41831:257:0;;;;;:::i;:::-;;:::i;29273:185::-;;;;;;;;;;-1:-1:-1;29273:185:0;;;;;:::i;:::-;;:::i;42297:743::-;;;;;;;;;;-1:-1:-1;42297:743:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;44251:161::-;;;;;;;;;;-1:-1:-1;44251:161:0;;;;;:::i;:::-;;:::i;39472:28::-;;;;;;;;;;-1:-1:-1;39472:28:0;;;;;;;;;;;39395:33;;;;;;;;;;-1:-1:-1;39395:33:0;;;;;;;;39024;;;;;;;;;;;;;:::i;38989:28::-;;;;;;;;;;;;;:::i;26248:239::-;;;;;;;;;;-1:-1:-1;26248:239:0;;;;;:::i;:::-;;:::i;39435:30::-;;;;;;;;;;-1:-1:-1;39435:30:0;;;;;;;;;;;25978:208;;;;;;;;;;-1:-1:-1;25978:208:0;;;;;:::i;:::-;;:::i;6230:103::-;;;;;;;;;;;;;:::i;41071:487::-;;;;;;:::i;:::-;;:::i;44420:106::-;;;;;;;;;;-1:-1:-1;44420:106:0;;;;;:::i;:::-;;:::i;43984:92::-;;;;;;;;;;-1:-1:-1;43984:92:0;;;;;:::i;:::-;;:::i;44648:91::-;;;;;;;;;;-1:-1:-1;44648:91:0;;;;;:::i;:::-;;:::i;39152:38::-;;;;;;;;;;;;;;;;39339:47;;;;;;;;;;-1:-1:-1;39339:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;5579:87;;;;;;;;;;-1:-1:-1;5652:6:0;;-1:-1:-1;;;;;5652:6:0;5579:87;;39235:37;;;;;;;;;;;;;;;;26723:104;;;;;;;;;;;;;:::i;40128:309::-;;;;;;:::i;:::-;;:::i;28406:155::-;;;;;;;;;;-1:-1:-1;28406:155:0;;;;;:::i;:::-;;:::i;39064:31::-;;;;;;;;;;;;;:::i;44084:159::-;;;;;;;;;;-1:-1:-1;44084:159:0;;;;;:::i;:::-;;:::i;29529:328::-;;;;;;;;;;-1:-1:-1;29529:328:0;;;;;:::i;:::-;;:::i;43048:727::-;;;;;;;;;;-1:-1:-1;43048:727:0;;;;;:::i;:::-;;:::i;43878:98::-;;;;;;;;;;-1:-1:-1;43878:98:0;;;;;:::i;:::-;;:::i;39197:31::-;;;;;;;;;;;;;;;;43783:87;;;;;;;;;;-1:-1:-1;43783:87:0;;;;;:::i;:::-;;:::i;39104:41::-;;;;;;;;;;;;;;;;28632:164;;;;;;;;;;-1:-1:-1;28632:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28753:25:0;;;28729:4;28753:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28632:164;39281:51;;;;;;;;;;-1:-1:-1;39281:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;42096:193;;;;;;;;;;-1:-1:-1;42096:193:0;;;;;:::i;:::-;;:::i;6488:201::-;;;;;;;;;;-1:-1:-1;6488:201:0;;;;;:::i;:::-;;:::i;40445:618::-;;;;;;:::i;:::-;;:::i;25609:305::-;25711:4;25748:40;;;25763:25;25748:40;;:105;;-1:-1:-1;25805:48:0;;;25820:33;25805:48;25748:105;:158;;;-1:-1:-1;18487:25:0;18472:40;;;;25870:36;25728:178;25609:305;-1:-1:-1;;25609:305:0:o;26554:100::-;26608:13;26641:5;26634:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26554:100;:::o;28113:221::-;28189:7;31456:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31456:16:0;28209:73;;;;-1:-1:-1;;;28209:73:0;;15513:2:1;28209:73:0;;;15495:21:1;15552:2;15532:18;;;15525:30;15591:34;15571:18;;;15564:62;15662:14;15642:18;;;15635:42;15694:19;;28209:73:0;;;;;;;;;-1:-1:-1;28302:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28302:24:0;;28113:221::o;27636:411::-;27717:13;27733:23;27748:7;27733:14;:23::i;:::-;27717:39;;27781:5;-1:-1:-1;;;;;27775:11:0;:2;-1:-1:-1;;;;;27775:11:0;;;27767:57;;;;-1:-1:-1;;;27767:57:0;;16703:2:1;27767:57:0;;;16685:21:1;16742:2;16722:18;;;16715:30;16781:34;16761:18;;;16754:62;16852:3;16832:18;;;16825:31;16873:19;;27767:57:0;16501:397:1;27767:57:0;4383:10;-1:-1:-1;;;;;27859:21:0;;;;:62;;-1:-1:-1;27884:37:0;27901:5;4383:10;28632:164;:::i;27884:37::-;27837:168;;;;-1:-1:-1;;;27837:168:0;;13160:2:1;27837:168:0;;;13142:21:1;13199:2;13179:18;;;13172:30;13238:34;13218:18;;;13211:62;13309:26;13289:18;;;13282:54;13353:19;;27837:168:0;12958:420:1;27837:168:0;28018:21;28027:2;28031:7;28018:8;:21::i;:::-;27706:341;27636:411;;:::o;41566:257::-;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;15926:2:1;5791:68:0;;;15908:21:1;;;15945:18;;;15938:30;16004:34;15984:18;;;15977:62;16056:18;;5791:68:0;15724:356:1;5791:68:0;41698:9:::1;41693:123;41709:27:::0;;::::1;41693:123;;;41798:6;41758:16;:37;41775:16;;41792:1;41775:19;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;41758:37:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;41758:37:0;:46;41738:3;::::1;::::0;::::1;:::i;:::-;;;;41693:123;;;;41566:257:::0;;;:::o;44534:106::-;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;15926:2:1;5791:68:0;;;15908:21:1;;;15945:18;;;15938:30;16004:34;15984:18;;;15977:62;16056:18;;5791:68:0;15724:356:1;5791:68:0;44610:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;44534:106:::0;:::o;40025:95::-;40069:7;40096:16;:6;999:14;;907:114;40096:16;40089:23;;40025:95;:::o;28863:339::-;29058:41;4383:10;29091:7;29058:18;:41::i;:::-;29050:103;;;;-1:-1:-1;;;29050:103:0;;17454:2:1;29050:103:0;;;17436:21:1;17493:2;17473:18;;;17466:30;17532:34;17512:18;;;17505:62;17603:19;17583:18;;;17576:47;17640:19;;29050:103:0;17252:413:1;29050:103:0;29166:28;29176:4;29182:2;29186:7;29166:9;:28::i;44747:93::-;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;15926:2:1;5791:68:0;;;15908:21:1;;;15945:18;;;15938:30;16004:34;15984:18;;;15977:62;16056:18;;5791:68:0;15724:356:1;5791:68:0;44819:13:::1;::::0;;-1:-1:-1;;44802:30:0;::::1;44819:13;::::0;;::::1;44818:14;44802:30;::::0;;44747:93::o;44848:2067::-;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;15926:2:1;5791:68:0;;;15908:21:1;;;15945:18;;;15938:30;16004:34;15984:18;;;15977:62;16056:18;;5791:68:0;15724:356:1;5791:68:0;44914:21:::1;44954:11:::0;44946:36:::1;;;::::0;-1:-1:-1;;;44946:36:0;;15172:2:1;44946:36:0::1;::::0;::::1;15154:21:1::0;15211:2;15191:18;;;15184:30;15250:14;15230:18;;;15223:42;15282:18;;44946:36:0::1;14970:336:1::0;44946:36:0::1;44996:9;45019:42;45105:3;45090:11;:7:::0;45100:1:::1;45090:11;:::i;:::-;45089:19;;;;:::i;:::-;45011:102;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44995:118;;;45132:4;45124:13;;;::::0;::::1;;45151:9;45174:42;45261:3;45245:12;:7:::0;45255:2:::1;45245:12;:::i;:::-;45244:20;;;;:::i;:::-;45166:103;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45150:119;;;45288:4;45280:13;;;::::0;::::1;;45307:11;45332:42;45419:3;45403:12;:7:::0;45413:2:::1;45403:12;:::i;:::-;45402:20;;;;:::i;:::-;45324:103;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45306:121;;;45446:6;45438:15;;;::::0;::::1;;45467:10;45491:42;45577:3;45562:11;:7:::0;45572:1:::1;45562:11;:::i;:::-;45561:19;;;;:::i;:::-;45483:102;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45466:119;;;45604:5;45596:14;;;::::0;::::1;;45624:10;45648:42;45734:3;45719:11;:7:::0;45729:1:::1;45719:11;:::i;:::-;45718:19;;;;:::i;:::-;45640:102;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45623:119;;;45761:5;45753:14;;;::::0;::::1;;45781:9;45804:42;45897:3;45892:1;45876:12;:7:::0;45886:2:::1;45876:12;:::i;:::-;45875:18;;;;:::i;:::-;45874:26;;;;:::i;:::-;45796:109;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45780:125;;;45924:4;45916:13;;;::::0;::::1;;45943:11;45968:42;46061:3;46056:1;46040:12;:7:::0;46050:2:::1;46040:12;:::i;:::-;46039:18;;;;:::i;:::-;46038:26;;;;:::i;:::-;45960:109;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45942:127;;;46088:6;46080:15;;;::::0;::::1;;46109:11;46134:42;46220:3;46205:11;:7:::0;46215:1:::1;46205:11;:::i;:::-;46204:19;;;;:::i;:::-;46126:102;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46108:120;;;46247:6;46239:15;;;::::0;::::1;;46268:10;46292:42;46378:3;46363:11;:7:::0;46373:1:::1;46363:11;:::i;:::-;46362:19;;;;:::i;:::-;46284:102;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46267:119;;;46405:5;46397:14;;;::::0;::::1;;46425:9;46448:42;46534:3;46519:11;:7:::0;46529:1:::1;46519:11;:::i;:::-;46518:19;;;;:::i;:::-;46440:102;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46424:118;;;46561:4;46553:13;;;::::0;::::1;;46580:12;46606:42;46692:3;46677:11;:7:::0;46687:1:::1;46677:11;:::i;:::-;46676:19;;;;:::i;:::-;46598:102;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46579:121;;;46719:7;46711:16;;;::::0;::::1;;46817:7;46838;5652:6:::0;;-1:-1:-1;;;;;5652:6:0;;5579:87;46838:7:::1;-1:-1:-1::0;;;;;46830:21:0::1;46859;46830:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46816:69;;;46904:2;46896:11;;;::::0;::::1;;44885:2030;;;;;;;;;;;;;44848:2067::o:0;41831:257::-;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;15926:2:1;5791:68:0;;;15908:21:1;;;15945:18;;;15938:30;16004:34;15984:18;;;15977:62;16056:18;;5791:68:0;15724:356:1;5791:68:0;41965:9:::1;41960:121;41976:28:::0;;::::1;41960:121;;;42063:6;42026:12;:34;42039:17;;42057:1;42039:20;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;42026:34:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;42026:34:0;:43;42006:3;::::1;::::0;::::1;:::i;:::-;;;;41960:121;;29273:185:::0;29411:39;29428:4;29434:2;29438:7;29411:39;;;;;;;;;;;;:16;:39::i;42297:743::-;42384:16;42418:23;42444:17;42454:6;42444:9;:17::i;:::-;42418:43;;42472:30;42519:15;42505:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42505:30:0;-1:-1:-1;42472:63:0;-1:-1:-1;42571:1:0;42546:22;42623:377;42662:15;42644;:33;:64;;;;;42699:9;;42681:14;:27;;42644:64;42623:377;;;42735:25;42763:23;42771:14;42763:7;:23::i;:::-;42735:51;;42828:6;-1:-1:-1;;;;;42807:27:0;:17;-1:-1:-1;;;;;42807:27:0;;42803:153;;;42888:14;42855:13;42869:15;42855:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;42923:17;;;;:::i;:::-;;;;42803:153;42972:16;;;;:::i;:::-;;;;42720:280;42623:377;;;-1:-1:-1;43019:13:0;;42297:743;-1:-1:-1;;;;42297:743:0:o;44251:161::-;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;15926:2:1;5791:68:0;;;15908:21:1;;;15945:18;;;15938:30;16004:34;15984:18;;;15977:62;16056:18;;5791:68:0;15724:356:1;5791:68:0;44366:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;39024:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;38989:28::-;;;;;;;:::i;26248:239::-;26320:7;26356:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26356:16:0;26391:19;26383:73;;;;-1:-1:-1;;;26383:73:0;;13996:2:1;26383:73:0;;;13978:21:1;14035:2;14015:18;;;14008:30;14074:34;14054:18;;;14047:62;14145:11;14125:18;;;14118:39;14174:19;;26383:73:0;13794:405:1;25978:208:0;26050:7;-1:-1:-1;;;;;26078:19:0;;26070:74;;;;-1:-1:-1;;;26070:74:0;;13585:2:1;26070:74:0;;;13567:21:1;13624:2;13604:18;;;13597:30;13663:34;13643:18;;;13636:62;13734:12;13714:18;;;13707:40;13764:19;;26070:74:0;13383:406:1;26070:74:0;-1:-1:-1;;;;;;26162:16:0;;;;;:9;:16;;;;;;;25978:208::o;6230:103::-;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;15926:2:1;5791:68:0;;;15908:21:1;;;15945:18;;;15938:30;16004:34;15984:18;;;15977:62;16056:18;;5791:68:0;15724:356:1;5791:68:0;6295:30:::1;6322:1;6295:18;:30::i;:::-;6230:103::o:0;41071:487::-;41171:11;39787:1;39773:11;:15;:52;;;;;39807:18;;39792:11;:33;;39773:52;39751:122;;;;-1:-1:-1;;;39751:122:0;;11280:2:1;39751:122:0;;;11262:21:1;11319:2;11299:18;;;11292:30;11358:22;11338:18;;;11331:50;11398:18;;39751:122:0;11078:344:1;39751:122:0;39940:9;;39925:11;39906:16;:6;999:14;;907:114;39906:16;:30;;;;:::i;:::-;:43;;39884:113;;;;-1:-1:-1;;;39884:113:0;;17105:2:1;39884:113:0;;;17087:21:1;17144:2;17124:18;;;17117:30;17183:22;17163:18;;;17156:50;17223:18;;39884:113:0;16903:344:1;39884:113:0;41232:10:::1;41200:16;41219:24:::0;;;:12:::1;:24;::::0;;;;;41262:12;41254:67:::1;;;::::0;-1:-1:-1;;;41254:67:0;;18218:2:1;41254:67:0::1;::::0;::::1;18200:21:1::0;18257:2;18237:18;;;18230:30;18296:34;18276:18;;;18269:62;18367:12;18347:18;;;18340:40;18397:19;;41254:67:0::1;18016:406:1::0;41254:67:0::1;41369:8;41354:11;:23;;41332:109;;;::::0;-1:-1:-1;;;41332:109:0;;14406:2:1;41332:109:0::1;::::0;::::1;14388:21:1::0;14445:2;14425:18;;;14418:30;14484:34;14464:18;;;14457:62;14555:6;14535:18;;;14528:34;14579:19;;41332:109:0::1;14204:400:1::0;41332:109:0::1;41481:22;41492:11:::0;41481:8;:22:::1;:::i;:::-;41467:10;41454:24;::::0;;;:12:::1;:24;::::0;;;;:49;;;;41516:34:::1;::::0;41538:11;41516:9:::1;:34::i;44420:106::-:0;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;15926:2:1;5791:68:0;;;15908:21:1;;;15945:18;;;15938:30;16004:34;15984:18;;;15977:62;16056:18;;5791:68:0;15724:356:1;5791:68:0;44496:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;43984:92::-:0;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;15926:2:1;5791:68:0;;;15908:21:1;;;15945:18;;;15938:30;16004:34;15984:18;;;15977:62;16056:18;;5791:68:0;15724:356:1;5791:68:0;44050:10:::1;:18:::0;43984:92::o;44648:91::-;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;15926:2:1;5791:68:0;;;15908:21:1;;;15945:18;;;15938:30;16004:34;15984:18;;;15977:62;16056:18;;5791:68:0;15724:356:1;5791:68:0;44712:10:::1;:19:::0;;;::::1;;;;-1:-1:-1::0;;44712:19:0;;::::1;::::0;;;::::1;::::0;;44648:91::o;26723:104::-;26779:13;26812:7;26805:14;;;;;:::i;40128:309::-;40220:11;39787:1;39773:11;:15;:52;;;;;39807:18;;39792:11;:33;;39773:52;39751:122;;;;-1:-1:-1;;;39751:122:0;;11280:2:1;39751:122:0;;;11262:21:1;11319:2;11299:18;;;11292:30;11358:22;11338:18;;;11331:50;11398:18;;39751:122:0;11078:344:1;39751:122:0;39940:9;;39925:11;39906:16;:6;999:14;;907:114;39906:16;:30;;;;:::i;:::-;:43;;39884:113;;;;-1:-1:-1;;;39884:113:0;;17105:2:1;39884:113:0;;;17087:21:1;17144:2;17124:18;;;17117:30;17183:22;17163:18;;;17156:50;17223:18;;39884:113:0;16903:344:1;39884:113:0;40257:10:::1;::::0;::::1;::::0;::::1;;;40249:53;;;::::0;-1:-1:-1;;;40249:53:0;;12388:2:1;40249:53:0::1;::::0;::::1;12370:21:1::0;12427:2;12407:18;;;12400:30;12466:32;12446:18;;;12439:60;12516:18;;40249:53:0::1;12186:354:1::0;40249:53:0::1;40347:11;40334:10;;:24;;;;:::i;:::-;40321:9;:37;;40313:69;;;::::0;-1:-1:-1;;;40313:69:0;;18629:2:1;40313:69:0::1;::::0;::::1;18611:21:1::0;18668:2;18648:18;;;18641:30;18707:21;18687:18;;;18680:49;18746:18;;40313:69:0::1;18427:343:1::0;40313:69:0::1;40395:34;40405:10;40417:11;40395:9;:34::i;28406:155::-:0;28501:52;4383:10;28534:8;28544;28501:18;:52::i;39064:31::-;;;;;;;:::i;44084:159::-;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;15926:2:1;5791:68:0;;;15908:21:1;;;15945:18;;;15938:30;16004:34;15984:18;;;15977:62;16056:18;;5791:68:0;15724:356:1;5791:68:0;44195:18:::1;:40:::0;44084:159::o;29529:328::-;29704:41;4383:10;29737:7;29704:18;:41::i;:::-;29696:103;;;;-1:-1:-1;;;29696:103:0;;17454:2:1;29696:103:0;;;17436:21:1;17493:2;17473:18;;;17466:30;17532:34;17512:18;;;17505:62;17603:19;17583:18;;;17576:47;17640:19;;29696:103:0;17252:413:1;29696:103:0;29810:39;29824:4;29830:2;29834:7;29843:5;29810:13;:39::i;43048:727::-;31432:4;31456:16;;;:7;:16;;;;;;43167:13;;-1:-1:-1;;;;;31456:16:0;43198:114;;;;-1:-1:-1;;;43198:114:0;;16287:2:1;43198:114:0;;;16269:21:1;16326:2;16306:18;;;16299:30;16365:34;16345:18;;;16338:62;16436:17;16416:18;;;16409:45;16471:19;;43198:114:0;16085:411:1;43198:114:0;43329:8;;;;;;;43325:74;;43370:17;43363:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43048:727;;;:::o;43325:74::-;43411:28;43442:10;:8;:10::i;:::-;43411:41;;43514:1;43489:14;43483:28;:32;:284;;;;;;;;;;;;;;;;;43607:14;43648:19;:8;:17;:19::i;:::-;43694:9;43564:162;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43483:284;43463:304;43048:727;-1:-1:-1;;;43048:727:0:o;43878:98::-;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;15926:2:1;5791:68:0;;;15908:21:1;;;15945:18;;;15938:30;16004:34;15984:18;;;15977:62;16056:18;;5791:68:0;15724:356:1;5791:68:0;43947:13:::1;:21:::0;43878:98::o;43783:87::-;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;15926:2:1;5791:68:0;;;15908:21:1;;;15945:18;;;15938:30;16004:34;15984:18;;;15977:62;16056:18;;5791:68:0;15724:356:1;5791:68:0;43845:8:::1;:17:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;43845:17:0;;::::1;::::0;;;::::1;::::0;;43783:87::o;42096:193::-;42200:11;39787:1;39773:11;:15;:52;;;;;39807:18;;39792:11;:33;;39773:52;39751:122;;;;-1:-1:-1;;;39751:122:0;;11280:2:1;39751:122:0;;;11262:21:1;11319:2;11299:18;;;11292:30;11358:22;11338:18;;;11331:50;11398:18;;39751:122:0;11078:344:1;39751:122:0;39940:9;;39925:11;39906:16;:6;999:14;;907:114;39906:16;:30;;;;:::i;:::-;:43;;39884:113;;;;-1:-1:-1;;;39884:113:0;;17105:2:1;39884:113:0;;;17087:21:1;17144:2;17124:18;;;17117:30;17183:22;17163:18;;;17156:50;17223:18;;39884:113:0;16903:344:1;39884:113:0;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23:::1;5791:68;;;::::0;-1:-1:-1;;;5791:68:0;;15926:2:1;5791:68:0::1;::::0;::::1;15908:21:1::0;;;15945:18;;;15938:30;16004:34;15984:18;;;15977:62;16056:18;;5791:68:0::1;15724:356:1::0;5791:68:0::1;42248:33:::2;42258:9;42269:11;42248:9;:33::i;6488:201::-:0;5652:6;;-1:-1:-1;;;;;5652:6:0;4383:10;5799:23;5791:68;;;;-1:-1:-1;;;5791:68:0;;15926:2:1;5791:68:0;;;15908:21:1;;;15945:18;;;15938:30;16004:34;15984:18;;;15977:62;16056:18;;5791:68:0;15724:356:1;5791:68:0;-1:-1:-1;;;;;6577:22:0;::::1;6569:73;;;::::0;-1:-1:-1;;;6569:73:0;;10110:2:1;6569:73:0::1;::::0;::::1;10092:21:1::0;10149:2;10129:18;;;10122:30;10188:34;10168:18;;;10161:62;10259:8;10239:18;;;10232:36;10285:19;;6569:73:0::1;9908:402:1::0;6569:73:0::1;6653:28;6672:8;6653:18;:28::i;:::-;6488:201:::0;:::o;40445:618::-;40544:11;39787:1;39773:11;:15;:52;;;;;39807:18;;39792:11;:33;;39773:52;39751:122;;;;-1:-1:-1;;;39751:122:0;;11280:2:1;39751:122:0;;;11262:21:1;11319:2;11299:18;;;11292:30;11358:22;11338:18;;;11331:50;11398:18;;39751:122:0;11078:344:1;39751:122:0;39940:9;;39925:11;39906:16;:6;999:14;;907:114;39906:16;:30;;;;:::i;:::-;:43;;39884:113;;;;-1:-1:-1;;;39884:113:0;;17105:2:1;39884:113:0;;;17087:21:1;17144:2;17124:18;;;17117:30;17183:22;17163:18;;;17156:50;17223:18;;39884:113:0;16903:344:1;39884:113:0;40609:10:::1;40573:16;40592:28:::0;;;:16:::1;:28;::::0;;;;;40639:13:::1;::::0;::::1;;40631:43;;;::::0;-1:-1:-1;;;40631:43:0;;17872:2:1;40631:43:0::1;::::0;::::1;17854:21:1::0;17911:2;17891:18;;;17884:30;17950:19;17930:18;;;17923:47;17987:18;;40631:43:0::1;17670:341:1::0;40631:43:0::1;40704:1;40693:8;:12;40685:67;;;::::0;-1:-1:-1;;;40685:67:0;;18218:2:1;40685:67:0::1;::::0;::::1;18200:21:1::0;18257:2;18237:18;;;18230:30;18296:34;18276:18;;;18269:62;18367:12;18347:18;;;18340:40;18397:19;;40685:67:0::1;18016:406:1::0;40685:67:0::1;40786:8;40771:11;:23;;40763:59;;;::::0;-1:-1:-1;;;40763:59:0;;9339:2:1;40763:59:0::1;::::0;::::1;9321:21:1::0;9378:2;9358:18;;;9351:30;9417:25;9397:18;;;9390:53;9460:18;;40763:59:0::1;9137:347:1::0;40763:59:0::1;40884:11;40868:13;;:27;;;;:::i;:::-;40855:9;:40;;40833:109;;;::::0;-1:-1:-1;;;40833:109:0;;18629:2:1;40833:109:0::1;::::0;::::1;18611:21:1::0;18668:2;18648:18;;;18641:30;18707:21;18687:18;;;18680:49;18746:18;;40833:109:0::1;18427:343:1::0;40833:109:0::1;40986:22;40997:11:::0;40986:8;:22:::1;:::i;:::-;40972:10;40955:28;::::0;;;:16:::1;:28;::::0;;;;:53;;;;41021:34:::1;::::0;41043:11;41021:9:::1;:34::i;35513:174::-:0;35588:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;35588:29:0;-1:-1:-1;;;;;35588:29:0;;;;;;;;:24;;35642:23;35588:24;35642:14;:23::i;:::-;-1:-1:-1;;;;;35633:46:0;;;;;;;;;;;35513:174;;:::o;31661:348::-;31754:4;31456:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31456:16:0;31771:73;;;;-1:-1:-1;;;31771:73:0;;12747:2:1;31771:73:0;;;12729:21:1;12786:2;12766:18;;;12759:30;12825:34;12805:18;;;12798:62;12896:14;12876:18;;;12869:42;12928:19;;31771:73:0;12545:408:1;31771:73:0;31855:13;31871:23;31886:7;31871:14;:23::i;:::-;31855:39;;31924:5;-1:-1:-1;;;;;31913:16:0;:7;-1:-1:-1;;;;;31913:16:0;;:51;;;;31957:7;-1:-1:-1;;;;;31933:31:0;:20;31945:7;31933:11;:20::i;:::-;-1:-1:-1;;;;;31933:31:0;;31913:51;:87;;;-1:-1:-1;;;;;;28753:25:0;;;28729:4;28753:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31968:32;31905:96;31661:348;-1:-1:-1;;;;31661:348:0:o;34770:625::-;34929:4;-1:-1:-1;;;;;34902:31:0;:23;34917:7;34902:14;:23::i;:::-;-1:-1:-1;;;;;34902:31:0;;34894:81;;;;-1:-1:-1;;;34894:81:0;;10517:2:1;34894:81:0;;;10499:21:1;10556:2;10536:18;;;10529:30;10595:34;10575:18;;;10568:62;10666:7;10646:18;;;10639:35;10691:19;;34894:81:0;10315:401:1;34894:81:0;-1:-1:-1;;;;;34994:16:0;;34986:65;;;;-1:-1:-1;;;34986:65:0;;11629:2:1;34986:65:0;;;11611:21:1;11668:2;11648:18;;;11641:30;11707:34;11687:18;;;11680:62;11778:6;11758:18;;;11751:34;11802:19;;34986:65:0;11427:400:1;34986:65:0;35168:29;35185:1;35189:7;35168:8;:29::i;:::-;-1:-1:-1;;;;;35210:15:0;;;;;;:9;:15;;;;;:20;;35229:1;;35210:15;:20;;35229:1;;35210:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35241:13:0;;;;;;:9;:13;;;;;:18;;35258:1;;35241:13;:18;;35258:1;;35241:18;:::i;:::-;;;;-1:-1:-1;;35270:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;35270:21:0;-1:-1:-1;;;;;35270:21:0;;;;;;;;;35309:27;;35270:16;;35309:27;;;;;;;27706:341;27636:411;;:::o;6849:191::-;6942:6;;;-1:-1:-1;;;;;6959:17:0;;;-1:-1:-1;;6959:17:0;;;;;;;6992:40;;6942:6;;;6959:17;6942:6;;6992:40;;6923:16;;6992:40;6912:128;6849:191;:::o;46923:226::-;47007:9;47002:140;47026:11;47022:1;:15;47002:140;;;47059:18;:6;1118:19;;1136:1;1118:19;;;1029:127;47059:18;47092:38;47102:9;47113:16;:6;999:14;;907:114;47113:16;47092:9;:38::i;:::-;47039:3;;;;:::i;:::-;;;;47002:140;;35829:315;35984:8;-1:-1:-1;;;;;35975:17:0;:5;-1:-1:-1;;;;;35975:17:0;;;35967:55;;;;-1:-1:-1;;;35967:55:0;;12034:2:1;35967:55:0;;;12016:21:1;12073:2;12053:18;;;12046:30;12112:27;12092:18;;;12085:55;12157:18;;35967:55:0;11832:349:1;35967:55:0;-1:-1:-1;;;;;36033:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;36033:46:0;;;;;;;;;;36095:41;;8861::1;;;36095::0;;8834:18:1;36095:41:0;;;;;;;35829:315;;;:::o;30739:::-;30896:28;30906:4;30912:2;30916:7;30896:9;:28::i;:::-;30943:48;30966:4;30972:2;30976:7;30985:5;30943:22;:48::i;:::-;30935:111;;;;-1:-1:-1;;;30935:111:0;;9691:2:1;30935:111:0;;;9673:21:1;9730:2;9710:18;;;9703:30;9769:34;9749:18;;;9742:62;9840:20;9820:18;;;9813:48;9878:19;;30935:111:0;9489:414:1;47157:110:0;47217:13;47250:9;47243:16;;;;;:::i;1865:723::-;1921:13;2142:10;2138:53;;-1:-1:-1;;2169:10:0;;;;;;;;;;;;;;;;;;1865:723::o;2138:53::-;2216:5;2201:12;2257:78;2264:9;;2257:78;;2290:8;;;;:::i;:::-;;-1:-1:-1;2313:10:0;;-1:-1:-1;2321:2:0;2313:10;;:::i;:::-;;;2257:78;;;2345:19;2377:6;2367:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2367:17:0;;2345:39;;2395:154;2402:10;;2395:154;;2429:11;2439:1;2429:11;;:::i;:::-;;-1:-1:-1;2498:10:0;2506:2;2498:5;:10;:::i;:::-;2485:24;;:2;:24;:::i;:::-;2472:39;;2455:6;2462;2455:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;2526:11:0;2535:2;2526:11;;:::i;:::-;;;2395:154;;32351:110;32427:26;32437:2;32441:7;32427:26;;;;;;;;;;;;:9;:26::i;36709:799::-;36864:4;-1:-1:-1;;;;;36885:13:0;;8575:19;:23;36881:620;;36921:72;;-1:-1:-1;;;36921:72:0;;-1:-1:-1;;;;;36921:36:0;;;;;:72;;4383:10;;36972:4;;36978:7;;36987:5;;36921:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36921:72:0;;;;;;;;-1:-1:-1;;36921:72:0;;;;;;;;;;;;:::i;:::-;;;36917:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37163:13:0;;37159:272;;37206:60;;-1:-1:-1;;;37206:60:0;;9691:2:1;37206:60:0;;;9673:21:1;9730:2;9710:18;;;9703:30;9769:34;9749:18;;;9742:62;9840:20;9820:18;;;9813:48;9878:19;;37206:60:0;9489:414:1;37159:272:0;37381:6;37375:13;37366:6;37362:2;37358:15;37351:38;36917:529;37044:51;;-1:-1:-1;;;37044:51:0;;-1:-1:-1;37037:58:0;;36881:620;-1:-1:-1;37485:4:0;36709:799;;;;;;:::o;32688:321::-;32818:18;32824:2;32828:7;32818:5;:18::i;:::-;32869:54;32900:1;32904:2;32908:7;32917:5;32869:22;:54::i;:::-;32847:154;;;;-1:-1:-1;;;32847:154:0;;9691:2:1;32847:154:0;;;9673:21:1;9730:2;9710:18;;;9703:30;9769:34;9749:18;;;9742:62;9840:20;9820:18;;;9813:48;9878:19;;32847:154:0;9489:414:1;33345:439:0;-1:-1:-1;;;;;33425:16:0;;33417:61;;;;-1:-1:-1;;;33417:61:0;;14811:2:1;33417:61:0;;;14793:21:1;;;14830:18;;;14823:30;14889:34;14869:18;;;14862:62;14941:18;;33417:61:0;14609:356:1;33417:61:0;31432:4;31456:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31456:16:0;:30;33489:58;;;;-1:-1:-1;;;33489:58:0;;10923:2:1;33489:58:0;;;10905:21:1;10962:2;10942:18;;;10935:30;11001;10981:18;;;10974:58;11049:18;;33489:58:0;10721:352:1;33489:58:0;-1:-1:-1;;;;;33618:13:0;;;;;;:9;:13;;;;;:18;;33635:1;;33618:13;:18;;33635:1;;33618:18;:::i;:::-;;;;-1:-1:-1;;33647:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;33647:21:0;-1:-1:-1;;;;;33647:21:0;;;;;;;;33686:33;;33647:16;;;33686:33;;33647:16;;33686:33;44610:22:::1;44534:106:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:196::-;718:20;;-1:-1:-1;;;;;767:54:1;;757:65;;747:93;;836:1;833;826:12;747:93;650:196;;;:::o;851:160::-;916:20;;972:13;;965:21;955:32;;945:60;;1001:1;998;991:12;1016:186;1075:6;1128:2;1116:9;1107:7;1103:23;1099:32;1096:52;;;1144:1;1141;1134:12;1096:52;1167:29;1186:9;1167:29;:::i;1207:260::-;1275:6;1283;1336:2;1324:9;1315:7;1311:23;1307:32;1304:52;;;1352:1;1349;1342:12;1304:52;1375:29;1394:9;1375:29;:::i;:::-;1365:39;;1423:38;1457:2;1446:9;1442:18;1423:38;:::i;:::-;1413:48;;1207:260;;;;;:::o;1472:328::-;1549:6;1557;1565;1618:2;1606:9;1597:7;1593:23;1589:32;1586:52;;;1634:1;1631;1624:12;1586:52;1657:29;1676:9;1657:29;:::i;:::-;1647:39;;1705:38;1739:2;1728:9;1724:18;1705:38;:::i;:::-;1695:48;;1790:2;1779:9;1775:18;1762:32;1752:42;;1472:328;;;;;:::o;1805:666::-;1900:6;1908;1916;1924;1977:3;1965:9;1956:7;1952:23;1948:33;1945:53;;;1994:1;1991;1984:12;1945:53;2017:29;2036:9;2017:29;:::i;:::-;2007:39;;2065:38;2099:2;2088:9;2084:18;2065:38;:::i;:::-;2055:48;;2150:2;2139:9;2135:18;2122:32;2112:42;;2205:2;2194:9;2190:18;2177:32;2232:18;2224:6;2221:30;2218:50;;;2264:1;2261;2254:12;2218:50;2287:22;;2340:4;2332:13;;2328:27;-1:-1:-1;2318:55:1;;2369:1;2366;2359:12;2318:55;2392:73;2457:7;2452:2;2439:16;2434:2;2430;2426:11;2392:73;:::i;:::-;2382:83;;;1805:666;;;;;;;:::o;2476:254::-;2541:6;2549;2602:2;2590:9;2581:7;2577:23;2573:32;2570:52;;;2618:1;2615;2608:12;2570:52;2641:29;2660:9;2641:29;:::i;:::-;2631:39;;2689:35;2720:2;2709:9;2705:18;2689:35;:::i;2735:254::-;2803:6;2811;2864:2;2852:9;2843:7;2839:23;2835:32;2832:52;;;2880:1;2877;2870:12;2832:52;2903:29;2922:9;2903:29;:::i;:::-;2893:39;2979:2;2964:18;;;;2951:32;;-1:-1:-1;;;2735:254:1:o;2994:689::-;3089:6;3097;3105;3158:2;3146:9;3137:7;3133:23;3129:32;3126:52;;;3174:1;3171;3164:12;3126:52;3214:9;3201:23;3243:18;3284:2;3276:6;3273:14;3270:34;;;3300:1;3297;3290:12;3270:34;3338:6;3327:9;3323:22;3313:32;;3383:7;3376:4;3372:2;3368:13;3364:27;3354:55;;3405:1;3402;3395:12;3354:55;3445:2;3432:16;3471:2;3463:6;3460:14;3457:34;;;3487:1;3484;3477:12;3457:34;3542:7;3535:4;3525:6;3522:1;3518:14;3514:2;3510:23;3506:34;3503:47;3500:67;;;3563:1;3560;3553:12;3500:67;3594:4;3586:13;;;;3618:6;;-1:-1:-1;3656:20:1;;;;3643:34;;2994:689;-1:-1:-1;;;;2994:689:1:o;3688:180::-;3744:6;3797:2;3785:9;3776:7;3772:23;3768:32;3765:52;;;3813:1;3810;3803:12;3765:52;3836:26;3852:9;3836:26;:::i;3873:245::-;3931:6;3984:2;3972:9;3963:7;3959:23;3955:32;3952:52;;;4000:1;3997;3990:12;3952:52;4039:9;4026:23;4058:30;4082:5;4058:30;:::i;4123:249::-;4192:6;4245:2;4233:9;4224:7;4220:23;4216:32;4213:52;;;4261:1;4258;4251:12;4213:52;4293:9;4287:16;4312:30;4336:5;4312:30;:::i;4377:450::-;4446:6;4499:2;4487:9;4478:7;4474:23;4470:32;4467:52;;;4515:1;4512;4505:12;4467:52;4555:9;4542:23;4588:18;4580:6;4577:30;4574:50;;;4620:1;4617;4610:12;4574:50;4643:22;;4696:4;4688:13;;4684:27;-1:-1:-1;4674:55:1;;4725:1;4722;4715:12;4674:55;4748:73;4813:7;4808:2;4795:16;4790:2;4786;4782:11;4748:73;:::i;4832:180::-;4891:6;4944:2;4932:9;4923:7;4919:23;4915:32;4912:52;;;4960:1;4957;4950:12;4912:52;-1:-1:-1;4983:23:1;;4832:180;-1:-1:-1;4832:180:1:o;5017:254::-;5085:6;5093;5146:2;5134:9;5125:7;5121:23;5117:32;5114:52;;;5162:1;5159;5152:12;5114:52;5198:9;5185:23;5175:33;;5227:38;5261:2;5250:9;5246:18;5227:38;:::i;5276:257::-;5317:3;5355:5;5349:12;5382:6;5377:3;5370:19;5398:63;5454:6;5447:4;5442:3;5438:14;5431:4;5424:5;5420:16;5398:63;:::i;:::-;5515:2;5494:15;-1:-1:-1;;5490:29:1;5481:39;;;;5522:4;5477:50;;5276:257;-1:-1:-1;;5276:257:1:o;5538:1584::-;5762:3;5800:6;5794:13;5826:4;5839:51;5883:6;5878:3;5873:2;5865:6;5861:15;5839:51;:::i;:::-;5953:13;;5912:16;;;;5975:55;5953:13;5912:16;5997:15;;;5975:55;:::i;:::-;6119:13;;6052:20;;;6092:1;;6179;6201:18;;;;6254;;;;6281:93;;6359:4;6349:8;6345:19;6333:31;;6281:93;6422:2;6412:8;6409:16;6389:18;6386:40;6383:224;;;-1:-1:-1;;;6456:3:1;6449:90;6562:4;6559:1;6552:15;6592:4;6587:3;6580:17;6383:224;6623:18;6650:110;;;;6774:1;6769:328;;;;6616:481;;6650:110;-1:-1:-1;;6685:24:1;;6671:39;;6730:20;;;;-1:-1:-1;6650:110:1;;6769:328;19030:1;19023:14;;;19067:4;19054:18;;6864:1;6878:169;6892:8;6889:1;6886:15;6878:169;;;6974:14;;6959:13;;;6952:37;7017:16;;;;6909:10;;6878:169;;;6882:3;;7078:8;7071:5;7067:20;7060:27;;6616:481;-1:-1:-1;7113:3:1;;5538:1584;-1:-1:-1;;;;;;;;;;;5538:1584:1:o;7568:511::-;7762:4;-1:-1:-1;;;;;7872:2:1;7864:6;7860:15;7849:9;7842:34;7924:2;7916:6;7912:15;7907:2;7896:9;7892:18;7885:43;;7964:6;7959:2;7948:9;7944:18;7937:34;8007:3;8002:2;7991:9;7987:18;7980:31;8028:45;8068:3;8057:9;8053:19;8045:6;8028:45;:::i;:::-;8020:53;7568:511;-1:-1:-1;;;;;;7568:511:1:o;8084:632::-;8255:2;8307:21;;;8377:13;;8280:18;;;8399:22;;;8226:4;;8255:2;8478:15;;;;8452:2;8437:18;;;8226:4;8521:169;8535:6;8532:1;8529:13;8521:169;;;8596:13;;8584:26;;8665:15;;;;8630:12;;;;8557:1;8550:9;8521:169;;;-1:-1:-1;8707:3:1;;8084:632;-1:-1:-1;;;;;;8084:632:1:o;8913:219::-;9062:2;9051:9;9044:21;9025:4;9082:44;9122:2;9111:9;9107:18;9099:6;9082:44;:::i;19083:128::-;19123:3;19154:1;19150:6;19147:1;19144:13;19141:39;;;19160:18;;:::i;:::-;-1:-1:-1;19196:9:1;;19083:128::o;19216:120::-;19256:1;19282;19272:35;;19287:18;;:::i;:::-;-1:-1:-1;19321:9:1;;19216:120::o;19341:168::-;19381:7;19447:1;19443;19439:6;19435:14;19432:1;19429:21;19424:1;19417:9;19410:17;19406:45;19403:71;;;19454:18;;:::i;:::-;-1:-1:-1;19494:9:1;;19341:168::o;19514:125::-;19554:4;19582:1;19579;19576:8;19573:34;;;19587:18;;:::i;:::-;-1:-1:-1;19624:9:1;;19514:125::o;19644:258::-;19716:1;19726:113;19740:6;19737:1;19734:13;19726:113;;;19816:11;;;19810:18;19797:11;;;19790:39;19762:2;19755:10;19726:113;;;19857:6;19854:1;19851:13;19848:48;;;-1:-1:-1;;19892:1:1;19874:16;;19867:27;19644:258::o;19907:437::-;19986:1;19982:12;;;;20029;;;20050:61;;20104:4;20096:6;20092:17;20082:27;;20050:61;20157:2;20149:6;20146:14;20126:18;20123:38;20120:218;;;-1:-1:-1;;;20191:1:1;20184:88;20295:4;20292:1;20285:15;20323:4;20320:1;20313:15;20120:218;;19907:437;;;:::o;20349:135::-;20388:3;-1:-1:-1;;20409:17:1;;20406:43;;;20429:18;;:::i;:::-;-1:-1:-1;20476:1:1;20465:13;;20349:135::o;20489:112::-;20521:1;20547;20537:35;;20552:18;;:::i;:::-;-1:-1:-1;20586:9:1;;20489:112::o;20606:184::-;-1:-1:-1;;;20655:1:1;20648:88;20755:4;20752:1;20745:15;20779:4;20776:1;20769:15;20795:184;-1:-1:-1;;;20844:1:1;20837:88;20944:4;20941:1;20934:15;20968:4;20965:1;20958:15;20984:184;-1:-1:-1;;;21033:1:1;21026:88;21133:4;21130:1;21123:15;21157:4;21154:1;21147:15;21173:184;-1:-1:-1;;;21222:1:1;21215:88;21322:4;21319:1;21312:15;21346:4;21343:1;21336:15;21362:177;21447:66;21440:5;21436:78;21429:5;21426:89;21416:117;;21529:1;21526;21519:12

Swarm Source

ipfs://1740ed8ea2ca3fdc81a2cae18e6a9835264762ed911c282496d36a305a3c4e32
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.