Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 58 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Withdraw | 16158191 | 1189 days ago | IN | 0 ETH | 0.00045441 | ||||
| Set Revealed | 15112516 | 1343 days ago | IN | 0 ETH | 0.00046789 | ||||
| Set Uri Prefix | 15112514 | 1343 days ago | IN | 0 ETH | 0.00169173 | ||||
| Transfer From | 15106273 | 1344 days ago | IN | 0 ETH | 0.00067062 | ||||
| Transfer From | 15106273 | 1344 days ago | IN | 0 ETH | 0.00116841 | ||||
| Reserve | 15037612 | 1355 days ago | IN | 0 ETH | 0.00433499 | ||||
| Reserve | 15037608 | 1355 days ago | IN | 0 ETH | 0.00343271 | ||||
| Reserve | 15037606 | 1355 days ago | IN | 0 ETH | 0.00386171 | ||||
| Reserve | 14989352 | 1364 days ago | IN | 0 ETH | 0.00118043 | ||||
| Reserve | 14989348 | 1364 days ago | IN | 0 ETH | 0.0011808 | ||||
| Reserve | 14989346 | 1364 days ago | IN | 0 ETH | 0.00124077 | ||||
| Reserve | 14989344 | 1364 days ago | IN | 0 ETH | 0.00117023 | ||||
| Reserve | 14957933 | 1370 days ago | IN | 0 ETH | 0.00515102 | ||||
| Set Approval For... | 14951463 | 1371 days ago | IN | 0 ETH | 0.000957 | ||||
| Reserve | 14946098 | 1372 days ago | IN | 0 ETH | 0.00189713 | ||||
| Reserve | 14946077 | 1372 days ago | IN | 0 ETH | 0.00188018 | ||||
| Reserve | 14946026 | 1372 days ago | IN | 0 ETH | 0.00235569 | ||||
| Reserve | 14946020 | 1372 days ago | IN | 0 ETH | 0.0025942 | ||||
| Reserve | 14946010 | 1372 days ago | IN | 0 ETH | 0.00264422 | ||||
| Set Paused | 14940185 | 1373 days ago | IN | 0 ETH | 0.00146858 | ||||
| Whitelist Mint | 14940111 | 1373 days ago | IN | 0.08 ETH | 0.0051988 | ||||
| Free Mint | 14936507 | 1373 days ago | IN | 0 ETH | 0.0043524 | ||||
| Free Mint | 14936185 | 1373 days ago | IN | 0 ETH | 0.00554048 | ||||
| Reserve | 14936161 | 1373 days ago | IN | 0 ETH | 0.00393371 | ||||
| Free Mint | 14936151 | 1373 days ago | IN | 0 ETH | 0.00475631 |
Latest 1 internal transaction
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 16158191 | 1189 days ago | 1.76 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
MutantAlienArmy
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2022-06-05
*/
// SPDX-License-Identifier: MIT
//Developer Info:
//Written by Ghazanfar Perdakh
//Email: uchihaghazanfar@gmail.com
//Whatsapp NO.: +923331578650
//fiverr: fiverr.com/ghazanfarperdakh
// 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/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: contracts/new.sol
pragma solidity ^0.8.4;
error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
*
* Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
*
* Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
*/
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Compiler will pack this into a single 256bit word.
struct TokenOwnership {
// The address of the owner.
address addr;
// Keeps track of the start time of ownership with minimal overhead for tokenomics.
uint64 startTimestamp;
// Whether the token has been burned.
bool burned;
}
// Compiler will pack this into a single 256bit word.
struct AddressData {
// Realistically, 2**64-1 is more than enough.
uint64 balance;
// Keeps track of mint count with minimal overhead for tokenomics.
uint64 numberMinted;
// Keeps track of burn count with minimal overhead for tokenomics.
uint64 numberBurned;
// For miscellaneous variable(s) pertaining to the address
// (e.g. number of whitelist mint slots used).
// If there are multiple variables, please pack them into a uint64.
uint64 aux;
}
// The tokenId of the next token to be minted.
uint256 internal _currentIndex;
// The number of tokens burned.
uint256 internal _burnCounter;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to ownership details
// An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
mapping(uint256 => TokenOwnership) internal _ownerships;
// Mapping owner address to address data
mapping(address => AddressData) private _addressData;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
_currentIndex = _startTokenId();
}
/**
* To change the starting tokenId, please override this function.
*/
function _startTokenId() internal view virtual returns (uint256) {
return 1;
}
/**
* @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
*/
function totalSupply() public view returns (uint256) {
// Counter underflow is impossible as _burnCounter cannot be incremented
// more than _currentIndex - _startTokenId() times
unchecked {
return _currentIndex - _burnCounter - _startTokenId();
}
}
/**
* Returns the total amount of tokens minted in the contract.
*/
function _totalMinted() internal view returns (uint256) {
// Counter underflow is impossible as _currentIndex does not decrement,
// and it is initialized to _startTokenId()
unchecked {
return _currentIndex - _startTokenId();
}
}
/**
* @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 override returns (uint256) {
if (owner == address(0)) revert BalanceQueryForZeroAddress();
return uint256(_addressData[owner].balance);
}
/**
* Returns the number of tokens minted by `owner`.
*/
function _numberMinted(address owner) internal view returns (uint256) {
return uint256(_addressData[owner].numberMinted);
}
/**
* Returns the number of tokens burned by or on behalf of `owner`.
*/
function _numberBurned(address owner) internal view returns (uint256) {
return uint256(_addressData[owner].numberBurned);
}
/**
* Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
*/
function _getAux(address owner) internal view returns (uint64) {
return _addressData[owner].aux;
}
/**
* Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
* If there are multiple variables, please pack them into a uint64.
*/
function _setAux(address owner, uint64 aux) internal {
_addressData[owner].aux = aux;
}
/**
* Gas spent here starts off proportional to the maximum mint batch size.
* It gradually moves to O(1) as tokens get transferred around in the collection over time.
*/
function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
uint256 curr = tokenId;
unchecked {
if (_startTokenId() <= curr && curr < _currentIndex) {
TokenOwnership memory ownership = _ownerships[curr];
if (!ownership.burned) {
if (ownership.addr != address(0)) {
return ownership;
}
// Invariant:
// There will always be an ownership that has an address and is not burned
// before an ownership that does not have an address and is not burned.
// Hence, curr will not underflow.
while (true) {
curr--;
ownership = _ownerships[curr];
if (ownership.addr != address(0)) {
return ownership;
}
}
}
}
}
revert OwnerQueryForNonexistentToken();
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view override returns (address) {
return _ownershipOf(tokenId).addr;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
if (!_exists(tokenId)) revert URIQueryForNonexistentToken();
string memory baseURI = _baseURI();
return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : '';
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overriden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return '';
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public override {
address owner = ERC721A.ownerOf(tokenId);
if (to == owner) revert ApprovalToCurrentOwner();
if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
revert ApprovalCallerNotOwnerNorApproved();
}
_approve(to, tokenId, owner);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view override returns (address) {
if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
if (operator == _msgSender()) revert ApproveToCaller();
_operatorApprovals[_msgSender()][operator] = approved;
emit ApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, '');
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public virtual override {
_transfer(from, to, tokenId);
if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
revert TransferToNonERC721ReceiverImplementer();
}
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
*/
function _exists(uint256 tokenId) internal view returns (bool) {
return _startTokenId() <= tokenId && tokenId < _currentIndex &&
!_ownerships[tokenId].burned;
}
function _safeMint(address to, uint256 quantity) internal {
_safeMint(to, quantity, '');
}
/**
* @dev Safely mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
* - `quantity` must be greater than 0.
*
* Emits a {Transfer} event.
*/
function _safeMint(
address to,
uint256 quantity,
bytes memory _data
) internal {
_mint(to, quantity, _data, true);
}
/**
* @dev Mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `quantity` must be greater than 0.
*
* Emits a {Transfer} event.
*/
function _mint(
address to,
uint256 quantity,
bytes memory _data,
bool safe
) internal {
uint256 startTokenId = _currentIndex;
if (to == address(0)) revert MintToZeroAddress();
if (quantity == 0) revert MintZeroQuantity();
_beforeTokenTransfers(address(0), to, startTokenId, quantity);
// Overflows are incredibly unrealistic.
// balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
// updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
unchecked {
_addressData[to].balance += uint64(quantity);
_addressData[to].numberMinted += uint64(quantity);
_ownerships[startTokenId].addr = to;
_ownerships[startTokenId].startTimestamp = uint64(block.timestamp);
uint256 updatedIndex = startTokenId;
uint256 end = updatedIndex + quantity;
if (safe && to.isContract()) {
do {
emit Transfer(address(0), to, updatedIndex);
if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
revert TransferToNonERC721ReceiverImplementer();
}
} while (updatedIndex != end);
// Reentrancy protection
if (_currentIndex != startTokenId) revert();
} else {
do {
emit Transfer(address(0), to, updatedIndex++);
} while (updatedIndex != end);
}
_currentIndex = updatedIndex;
}
_afterTokenTransfers(address(0), to, startTokenId, quantity);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) private {
TokenOwnership memory prevOwnership = _ownershipOf(tokenId);
if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
bool isApprovedOrOwner = (_msgSender() == from ||
isApprovedForAll(from, _msgSender()) ||
getApproved(tokenId) == _msgSender());
if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
if (to == address(0)) revert TransferToZeroAddress();
_beforeTokenTransfers(from, to, tokenId, 1);
// Clear approvals from the previous owner
_approve(address(0), tokenId, from);
// Underflow of the sender's balance is impossible because we check for
// ownership above and the recipient's balance can't realistically overflow.
// Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
unchecked {
_addressData[from].balance -= 1;
_addressData[to].balance += 1;
TokenOwnership storage currSlot = _ownerships[tokenId];
currSlot.addr = to;
currSlot.startTimestamp = uint64(block.timestamp);
// If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
// Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
uint256 nextTokenId = tokenId + 1;
TokenOwnership storage nextSlot = _ownerships[nextTokenId];
if (nextSlot.addr == address(0)) {
// This will suffice for checking _exists(nextTokenId),
// as a burned slot cannot contain the zero address.
if (nextTokenId != _currentIndex) {
nextSlot.addr = from;
nextSlot.startTimestamp = prevOwnership.startTimestamp;
}
}
}
emit Transfer(from, to, tokenId);
_afterTokenTransfers(from, to, tokenId, 1);
}
/**
* @dev This is equivalent to _burn(tokenId, false)
*/
function _burn(uint256 tokenId) internal virtual {
_burn(tokenId, false);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
TokenOwnership memory prevOwnership = _ownershipOf(tokenId);
address from = prevOwnership.addr;
if (approvalCheck) {
bool isApprovedOrOwner = (_msgSender() == from ||
isApprovedForAll(from, _msgSender()) ||
getApproved(tokenId) == _msgSender());
if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
}
_beforeTokenTransfers(from, address(0), tokenId, 1);
// Clear approvals from the previous owner
_approve(address(0), tokenId, from);
// Underflow of the sender's balance is impossible because we check for
// ownership above and the recipient's balance can't realistically overflow.
// Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
unchecked {
AddressData storage addressData = _addressData[from];
addressData.balance -= 1;
addressData.numberBurned += 1;
// Keep track of who burned the token, and the timestamp of burning.
TokenOwnership storage currSlot = _ownerships[tokenId];
currSlot.addr = from;
currSlot.startTimestamp = uint64(block.timestamp);
currSlot.burned = true;
// If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
// Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
uint256 nextTokenId = tokenId + 1;
TokenOwnership storage nextSlot = _ownerships[nextTokenId];
if (nextSlot.addr == address(0)) {
// This will suffice for checking _exists(nextTokenId),
// as a burned slot cannot contain the zero address.
if (nextTokenId != _currentIndex) {
nextSlot.addr = from;
nextSlot.startTimestamp = prevOwnership.startTimestamp;
}
}
}
emit Transfer(from, address(0), tokenId);
_afterTokenTransfers(from, address(0), tokenId, 1);
// Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
unchecked {
_burnCounter++;
}
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(
address to,
uint256 tokenId,
address owner
) private {
_tokenApprovals[tokenId] = to;
emit Approval(owner, to, tokenId);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
return retval == IERC721Receiver(to).onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert TransferToNonERC721ReceiverImplementer();
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
}
/**
* @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
* And also called before burning one token.
*
* startTokenId - the first token id to be transferred
* quantity - the amount to be transferred
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, `tokenId` will be burned by `from`.
* - `from` and `to` are never both zero.
*/
function _beforeTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
/**
* @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
* minting.
* And also called after one token has been burned.
*
* startTokenId - the first token id to be transferred
* quantity - the amount to be transferred
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
* transferred to `to`.
* - When `from` is zero, `tokenId` has been minted for `to`.
* - When `to` is zero, `tokenId` has been burned by `from`.
* - `from` and `to` are never both zero.
*/
function _afterTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
}
pragma solidity ^0.8.0;
/**
* @dev These functions deal with verification of Merkle Trees proofs.
*
* The proofs can be generated using the JavaScript library
* https://github.com/miguelmota/merkletreejs[merkletreejs].
* Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
*
* See `test/utils/cryptography/MerkleProof.test.js` for some examples.
*/
library MerkleProof {
/**
* @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
* defined by `root`. For this, a `proof` must be provided, containing
* sibling hashes on the branch from the leaf to the root of the tree. Each
* pair of leaves and each pair of pre-images are assumed to be sorted.
*/
function verify(
bytes32[] memory proof,
bytes32 root,
bytes32 leaf
) internal pure returns (bool) {
return processProof(proof, leaf) == root;
}
/**
* @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
* from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
* hash matches the root of the tree. When processing the proof, the pairs
* of leafs & pre-images are assumed to be sorted.
*
* _Available since v4.4._
*/
function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
bytes32 computedHash = leaf;
for (uint256 i = 0; i < proof.length; i++) {
bytes32 proofElement = proof[i];
if (computedHash <= proofElement) {
// Hash(current computed hash + current element of the proof)
computedHash = _efficientHash(computedHash, proofElement);
} else {
// Hash(current element of the proof + current computed hash)
computedHash = _efficientHash(proofElement, computedHash);
}
}
return computedHash;
}
function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
assembly {
mstore(0x00, a)
mstore(0x20, b)
value := keccak256(0x00, 0x40)
}
}
}
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);
}
}
pragma solidity ^0.8.7;
contract MutantAlienArmy is ERC721A, Ownable {
using Strings for uint256;
string private uriPrefix ;
string private uriSuffix = ".json";
string public hiddenURL = "ipfs://QmYAeW9kZPRNU3CpLTF3vx2xDvuRoKH3Vgn4UD4wj5jK6V";
uint256 public cost = 0.12 ether;
uint256 public whiteListCost = 0.08 ether;
uint16 public constant maxSupply = 3333;
bool public WLpaused = false;
bool public paused = true;
bool public reveal =false;
mapping (address => uint8) public NFTPerWLAddress;
mapping (address => uint8) public NFTPerAddress;
mapping (address => bool) public NFTPerFreeMintAddress;
uint8 public maxWLMintAmountPerWallet = 3;
uint8 public maxMintAmountPerWallet = 5;
bytes32 public whitelistMerkleRoot = 0xec9591fac40dc330d70d4aedb774527413f9c5e5383f463fd63223a3c917cc04;
bytes32 public freeListMerkleRoot = 0x1291fd53f0bfd855e2a290b256e6843aad08ed5ec61947e85348f2adf72236d2;
constructor() ERC721A("Mutant Alien Army", "M-AA") {
}
function mint(uint8 _mintAmount) external payable {
uint16 totalSupply = uint16(totalSupply());
require(totalSupply + _mintAmount <= maxSupply, "Excedes max supply.");
uint8 _txPerAddress = NFTPerAddress[msg.sender];
require (_txPerAddress + _mintAmount <= maxWLMintAmountPerWallet, "Exceeds max tx per address");
require(_mintAmount +_txPerAddress <= maxMintAmountPerWallet, "Exceeds max per transaction.");
require(!paused, "The contract is paused!");
require(msg.value >= cost * _mintAmount, "Insufficient funds!");
_safeMint(msg.sender , _mintAmount);
NFTPerAddress[msg.sender] = _txPerAddress + _mintAmount;
delete totalSupply;
delete _mintAmount;
}
function Reserve(uint16 _mintAmount, address _receiver) external onlyOwner {
uint16 totalSupply = uint16(totalSupply());
require(totalSupply + _mintAmount <= maxSupply, "Excedes max supply.");
_safeMint(_receiver , _mintAmount);
delete _mintAmount;
delete _receiver;
delete totalSupply;
}
function burn(uint _tokenID) external onlyOwner {
_burn(_tokenID);
}
function tokenURI(uint256 _tokenId)
public
view
virtual
override
returns (string memory)
{
require(
_exists(_tokenId),
"ERC721Metadata: URI query for nonexistent token"
);
if ( reveal == false)
{
return hiddenURL;
}
string memory currentBaseURI = _baseURI();
return bytes(currentBaseURI).length > 0
? string(abi.encodePacked(currentBaseURI, _tokenId.toString() ,uriSuffix))
: "";
}
function setWLPaused() external onlyOwner {
WLpaused = !WLpaused;
}
function setWLCost(uint256 _cost) external onlyOwner {
whiteListCost = _cost;
delete _cost;
}
function setMaxTxPerWlAddress(uint8 _limit) external onlyOwner{
maxWLMintAmountPerWallet = _limit;
delete _limit;
}
function setWhitelistMerkleRoot(bytes32 _whitelistMerkleRoot) external onlyOwner {
whitelistMerkleRoot = _whitelistMerkleRoot;
}
function setFreeListMerkleRoot(bytes32 _MerkleRoot) external onlyOwner {
freeListMerkleRoot = _MerkleRoot;
}
function getLeafNode(address _leaf) internal pure returns (bytes32 temp)
{
return keccak256(abi.encodePacked(_leaf));
}
function _verify(bytes32 leaf, bytes32 root , bytes32[] memory proof) internal pure returns (bool) {
return MerkleProof.verify(proof, root, leaf);
}
function whitelistMint(uint8 _mintAmount, bytes32[] calldata merkleProof) external payable {
bytes32 leafnode = getLeafNode(msg.sender);
uint8 _txPerAddress = NFTPerWLAddress[msg.sender];
require(_verify(leafnode , whitelistMerkleRoot, merkleProof ), "Invalid merkle proof");
require (_txPerAddress + _mintAmount <= maxWLMintAmountPerWallet, "Exceeds max tx per address");
require(!WLpaused, "Whitelist minting is over!");
require(msg.value >= whiteListCost * _mintAmount, "Insufficient funds!");
uint16 totalSupply = uint16(totalSupply());
_safeMint(msg.sender , _mintAmount);
NFTPerWLAddress[msg.sender] =_txPerAddress + _mintAmount;
delete totalSupply;
delete _mintAmount;
delete _txPerAddress;
}
function FreeMint(uint8 _mintAmount, bytes32[] calldata merkleProof) external payable {
bytes32 leafnode = getLeafNode(msg.sender);
require(_verify(leafnode , freeListMerkleRoot, merkleProof ), "Invalid merkle proof");
require( !NFTPerFreeMintAddress[msg.sender] , "You have already claimed your free NFT");
require(!WLpaused, "Whitelist minting is over!");
uint16 totalSupply = uint16(totalSupply());
_safeMint(msg.sender , _mintAmount);
NFTPerFreeMintAddress[msg.sender] = true;
delete totalSupply;
delete _mintAmount;
}
function setUriPrefix(string memory _uriPrefix) external onlyOwner {
uriPrefix = _uriPrefix;
}
function setHiddenUri(string memory _uriPrefix) external onlyOwner {
hiddenURL = _uriPrefix;
}
function setPaused() external onlyOwner {
paused = !paused;
WLpaused = true;
}
function setCost(uint _cost) external onlyOwner{
cost = _cost;
}
function setRevealed() external onlyOwner{
reveal = !reveal;
}
function setMaxMintAmountPerWallet(uint8 _maxtx) external onlyOwner{
maxMintAmountPerWallet = _maxtx;
}
function withdraw() external onlyOwner {
uint _balance = address(this).balance;
payable(0x0C34D4F6175de72C904Ef2720785a6bFd73C0375).transfer(_balance);
}
function _baseURI() internal view override returns (string memory) {
return uriPrefix;
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"FreeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"NFTPerAddress","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"NFTPerFreeMintAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"NFTPerWLAddress","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"Reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"WLpaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenID","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeListMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenURL","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":"maxMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWLMintAmountPerWallet","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_MerkleRoot","type":"bytes32"}],"name":"setFreeListMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setHiddenUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_maxtx","type":"uint8"}],"name":"setMaxMintAmountPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_limit","type":"uint8"}],"name":"setMaxTxPerWlAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setWLCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setWLPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_whitelistMerkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_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":"whiteListCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600a9190620001bf565b5060405180606001604052806035815260200162002cbd6035913980516200005991600b91602090910190620001bf565b506701aa535d3d0c0000600c5567011c37937e080000600d55600e805461010062ffffff199091161790556012805461ffff19166105031790557fec9591fac40dc330d70d4aedb774527413f9c5e5383f463fd63223a3c917cc046013557f1291fd53f0bfd855e2a290b256e6843aad08ed5ec61947e85348f2adf72236d2601455348015620000e857600080fd5b5060408051808201825260118152704d7574616e7420416c69656e2041726d7960781b6020808301918252835180850190945260048452634d2d414160e01b9084015281519192916200013e91600291620001bf565b50805162000154906003906020840190620001bf565b505060016000555062000167336200016d565b620002a2565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001cd9062000265565b90600052602060002090601f016020900481019282620001f157600085556200023c565b82601f106200020c57805160ff19168380011785556200023c565b828001600101855582156200023c579182015b828111156200023c5782518255916020019190600101906200021f565b506200024a9291506200024e565b5090565b5b808211156200024a57600081556001016200024f565b600181811c908216806200027a57607f821691505b602082108114156200029c57634e487b7160e01b600052602260045260246000fd5b50919050565b612a0b80620002b26000396000f3fe6080604052600436106102935760003560e01c806370a082311161015a578063bc951b91116100c1578063d5abeb011161007a578063d5abeb01146107a7578063dbd37cf4146107d0578063e985e9c514610800578063eef440af14610849578063f2fde38b1461085e578063fb0220c21461087e57600080fd5b8063bc951b91146106f5578063bd32fb6614610714578063c280c88e14610734578063c87b56dd14610754578063cf51888314610774578063d1d192131461078757600080fd5b806395d89b411161011357806395d89b411461063a578063a22cb4651461064f578063a475b5dd1461066f578063a73d525d1461068f578063aa98e0c6146106bf578063b88d4fde146106d557600080fd5b806370a0823114610597578063715018a6146105b75780637ec4a659146105cc5780637f6e9093146105ec5780638da5cb5b146106065780639257e0441461062457600080fd5b80633bd64968116101fe57806358381669116101b757806358381669146104e257806359bf5dbb146104f55780635c975abb146105255780636352211e1461054457806363937fe0146105645780636ecd23061461058457600080fd5b80633bd649681461042c5780633ccfd60b1461044157806342842e0e1461045657806342966c681461047657806344a0d68a14610496578063506c2030146104b657600080fd5b806313faede61161025057806313faede61461037e57806318160ddd146103a257806323b872dd146103b757806328b60d15146103d75780632f6f98e1146103f757806337a66d851461041757600080fd5b806301ffc9a71461029857806306fdde03146102cd578063081812fc146102ef578063093cfa6314610327578063095ea7b31461033e5780631067fcc71461035e575b600080fd5b3480156102a457600080fd5b506102b86102b3366004612548565b610894565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102e26108e6565b6040516102c491906127bc565b3480156102fb57600080fd5b5061030f61030a36600461252f565b610978565b6040516001600160a01b0390911681526020016102c4565b34801561033357600080fd5b5061033c6109bc565b005b34801561034a57600080fd5b5061033c610359366004612505565b610a03565b34801561036a57600080fd5b5061033c610379366004612582565b610a91565b34801561038a57600080fd5b50610394600c5481565b6040519081526020016102c4565b3480156103ae57600080fd5b50610394610ad2565b3480156103c357600080fd5b5061033c6103d2366004612412565b610ae0565b3480156103e357600080fd5b5061033c6103f23660046125ef565b610aeb565b34801561040357600080fd5b5061033c6104123660046125ca565b610b31565b34801561042357600080fd5b5061033c610bca565b34801561043857600080fd5b5061033c610c19565b34801561044d57600080fd5b5061033c610c62565b34801561046257600080fd5b5061033c610471366004612412565b610ccf565b34801561048257600080fd5b5061033c61049136600461252f565b610cea565b3480156104a257600080fd5b5061033c6104b136600461252f565b610d20565b3480156104c257600080fd5b506012546104d09060ff1681565b60405160ff90911681526020016102c4565b61033c6104f036600461260a565b610d4f565b34801561050157600080fd5b506104d06105103660046123c4565b600f6020526000908152604090205460ff1681565b34801561053157600080fd5b50600e546102b890610100900460ff1681565b34801561055057600080fd5b5061030f61055f36600461252f565b610f4b565b34801561057057600080fd5b5061033c61057f3660046125ef565b610f5d565b61033c6105923660046125ef565b610f9d565b3480156105a357600080fd5b506103946105b23660046123c4565b6111c7565b3480156105c357600080fd5b5061033c611215565b3480156105d857600080fd5b5061033c6105e7366004612582565b61124b565b3480156105f857600080fd5b50600e546102b89060ff1681565b34801561061257600080fd5b506008546001600160a01b031661030f565b34801561063057600080fd5b50610394600d5481565b34801561064657600080fd5b506102e2611288565b34801561065b57600080fd5b5061033c61066a3660046124c9565b611297565b34801561067b57600080fd5b50600e546102b89062010000900460ff1681565b34801561069b57600080fd5b506102b86106aa3660046123c4565b60116020526000908152604090205460ff1681565b3480156106cb57600080fd5b5061039460135481565b3480156106e157600080fd5b5061033c6106f036600461244e565b61132d565b34801561070157600080fd5b506012546104d090610100900460ff1681565b34801561072057600080fd5b5061033c61072f36600461252f565b61137e565b34801561074057600080fd5b5061033c61074f36600461252f565b6113ad565b34801561076057600080fd5b506102e261076f36600461252f565b6113dc565b61033c61078236600461260a565b61154c565b34801561079357600080fd5b5061033c6107a236600461252f565b6116d8565b3480156107b357600080fd5b506107bd610d0581565b60405161ffff90911681526020016102c4565b3480156107dc57600080fd5b506104d06107eb3660046123c4565b60106020526000908152604090205460ff1681565b34801561080c57600080fd5b506102b861081b3660046123df565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561085557600080fd5b506102e2611707565b34801561086a57600080fd5b5061033c6108793660046123c4565b611795565b34801561088a57600080fd5b5061039460145481565b60006001600160e01b031982166380ac58cd60e01b14806108c557506001600160e01b03198216635b5e139f60e01b145b806108e057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546108f5906128dd565b80601f0160208091040260200160405190810160405280929190818152602001828054610921906128dd565b801561096e5780601f106109435761010080835404028352916020019161096e565b820191906000526020600020905b81548152906001019060200180831161095157829003601f168201915b5050505050905090565b60006109838261182d565b6109a0576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6008546001600160a01b031633146109ef5760405162461bcd60e51b81526004016109e6906127cf565b60405180910390fd5b600e805460ff19811660ff90911615179055565b6000610a0e82610f4b565b9050806001600160a01b0316836001600160a01b03161415610a435760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a635750610a61813361081b565b155b15610a81576040516367d9dca160e11b815260040160405180910390fd5b610a8c838383611866565b505050565b6008546001600160a01b03163314610abb5760405162461bcd60e51b81526004016109e6906127cf565b8051610ace90600b906020840190612289565b5050565b600154600054036000190190565b610a8c8383836118c2565b6008546001600160a01b03163314610b155760405162461bcd60e51b81526004016109e6906127cf565b6012805460ff9092166101000261ff0019909216919091179055565b6008546001600160a01b03163314610b5b5760405162461bcd60e51b81526004016109e6906127cf565b6000610b65610ad2565b9050610d05610b748483612804565b61ffff161115610bbc5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b60448201526064016109e6565b610a8c828461ffff16611a9e565b6008546001600160a01b03163314610bf45760405162461bcd60e51b81526004016109e6906127cf565b600e805460ff1960ff6101008084049190911615021661ffff19909116176001179055565b6008546001600160a01b03163314610c435760405162461bcd60e51b81526004016109e6906127cf565b600e805462ff0000198116620100009182900460ff1615909102179055565b6008546001600160a01b03163314610c8c5760405162461bcd60e51b81526004016109e6906127cf565b6040514790730c34d4f6175de72c904ef2720785a6bfd73c03759082156108fc029083906000818181858888f19350505050158015610ace573d6000803e3d6000fd5b610a8c8383836040518060200160405280600081525061132d565b6008546001600160a01b03163314610d145760405162461bcd60e51b81526004016109e6906127cf565b610d1d81611ab8565b50565b6008546001600160a01b03163314610d4a5760405162461bcd60e51b81526004016109e6906127cf565b600c55565b6000610d5a33611ac3565b336000908152600f6020908152604091829020546013548351878402818101850190955287815294955060ff90911693610db293869389918991829190850190849080828437600092019190915250611b0292505050565b610df55760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b2b935b63290383937b7b360611b60448201526064016109e6565b60125460ff16610e058683612842565b60ff161115610e565760405162461bcd60e51b815260206004820152601a60248201527f45786365656473206d617820747820706572206164647265737300000000000060448201526064016109e6565b600e5460ff1615610ea95760405162461bcd60e51b815260206004820152601a60248201527f57686974656c697374206d696e74696e67206973206f7665722100000000000060448201526064016109e6565b8460ff16600d54610eba919061287b565b341015610eff5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109e6565b6000610f09610ad2565b9050610f18338760ff16611a9e565b610f228683612842565b336000908152600f60205260409020805460ff191660ff92909216919091179055505050505050565b6000610f5682611b17565b5192915050565b6008546001600160a01b03163314610f875760405162461bcd60e51b81526004016109e6906127cf565b6012805460ff191660ff92909216919091179055565b6000610fa7610ad2565b9050610d05610fb960ff841683612804565b61ffff1611156110015760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b60448201526064016109e6565b3360009081526010602052604090205460125460ff91821691166110258483612842565b60ff1611156110765760405162461bcd60e51b815260206004820152601a60248201527f45786365656473206d617820747820706572206164647265737300000000000060448201526064016109e6565b601254610100900460ff1661108b8285612842565b60ff1611156110dc5760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d617820706572207472616e73616374696f6e2e0000000060448201526064016109e6565b600e54610100900460ff16156111345760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016109e6565b8260ff16600c54611145919061287b565b34101561118a5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109e6565b611197338460ff16611a9e565b6111a18382612842565b336000908152601060205260409020805460ff191660ff92909216919091179055505050565b60006001600160a01b0382166111f0576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b0316331461123f5760405162461bcd60e51b81526004016109e6906127cf565b6112496000611c3e565b565b6008546001600160a01b031633146112755760405162461bcd60e51b81526004016109e6906127cf565b8051610ace906009906020840190612289565b6060600380546108f5906128dd565b6001600160a01b0382163314156112c15760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6113388484846118c2565b6001600160a01b0383163b1515801561135a575061135884848484611c90565b155b15611378576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146113a85760405162461bcd60e51b81526004016109e6906127cf565b601355565b6008546001600160a01b031633146113d75760405162461bcd60e51b81526004016109e6906127cf565b601455565b60606113e78261182d565b61144b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109e6565b600e5462010000900460ff166114ed57600b8054611468906128dd565b80601f0160208091040260200160405190810160405280929190818152602001828054611494906128dd565b80156114e15780601f106114b6576101008083540402835291602001916114e1565b820191906000526020600020905b8154815290600101906020018083116114c457829003601f168201915b50505050509050919050565b60006114f7611d87565b905060008151116115175760405180602001604052806000815250611545565b8061152184611d96565b600a604051602001611535939291906126bb565b6040516020818303038152906040525b9392505050565b600061155733611ac3565b905061159981601454858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250611b0292505050565b6115dc5760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b2b935b63290383937b7b360611b60448201526064016109e6565b3360009081526011602052604090205460ff161561164b5760405162461bcd60e51b815260206004820152602660248201527f596f75206861766520616c726561647920636c61696d656420796f757220667260448201526519594813919560d21b60648201526084016109e6565b600e5460ff161561169e5760405162461bcd60e51b815260206004820152601a60248201527f57686974656c697374206d696e74696e67206973206f7665722100000000000060448201526064016109e6565b60006116a8610ad2565b90506116b7338660ff16611a9e565b5050336000908152601160205260409020805460ff19166001179055505050565b6008546001600160a01b031633146117025760405162461bcd60e51b81526004016109e6906127cf565b600d55565b600b8054611714906128dd565b80601f0160208091040260200160405190810160405280929190818152602001828054611740906128dd565b801561178d5780601f106117625761010080835404028352916020019161178d565b820191906000526020600020905b81548152906001019060200180831161177057829003601f168201915b505050505081565b6008546001600160a01b031633146117bf5760405162461bcd60e51b81526004016109e6906127cf565b6001600160a01b0381166118245760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109e6565b610d1d81611c3e565b600081600111158015611841575060005482105b80156108e0575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006118cd82611b17565b9050836001600160a01b031681600001516001600160a01b0316146119045760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806119225750611922853361081b565b8061193d57503361193284610978565b6001600160a01b0316145b90508061195d57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661198457604051633a954ecd60e21b815260040160405180910390fd5b61199060008487611866565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611a64576000548214611a6457805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03166000805160206129b683398151915260405160405180910390a45b5050505050565b610ace828260405180602001604052806000815250611e93565b610d1d816000611ea0565b6040516bffffffffffffffffffffffff19606083901b166020820152600090603401604051602081830303815290604052805190602001209050919050565b6000611b0f828486612053565b949350505050565b60408051606081018252600080825260208201819052918101919091528180600111158015611b47575060005481105b15611c2557600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611c235780516001600160a01b031615611bba579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611c1e579392505050565b611bba565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611cc590339089908890889060040161277f565b602060405180830381600087803b158015611cdf57600080fd5b505af1925050508015611d0f575060408051601f3d908101601f19168201909252611d0c91810190612565565b60015b611d6a573d808015611d3d576040519150601f19603f3d011682016040523d82523d6000602084013e611d42565b606091505b508051611d62576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600980546108f5906128dd565b606081611dba5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611de45780611dce81612918565b9150611ddd9050600a83612867565b9150611dbe565b6000816001600160401b03811115611dfe57611dfe612989565b6040519080825280601f01601f191660200182016040528015611e28576020820181803683370190505b5090505b8415611b0f57611e3d60018361289a565b9150611e4a600a86612933565b611e5590603061282a565b60f81b818381518110611e6a57611e6a612973565b60200101906001600160f81b031916908160001a905350611e8c600a86612867565b9450611e2c565b610a8c8383836001612069565b6000611eab83611b17565b80519091508215611f11576000336001600160a01b0383161480611ed45750611ed4823361081b565b80611eef575033611ee486610978565b6001600160a01b0316145b905080611f0f57604051632ce44b5f60e11b815260040160405180910390fd5b505b611f1d60008583611866565b6001600160a01b0380821660008181526005602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b17855591890180845292208054919490911661201b57600054821461201b57805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b038416906000805160206129b6833981519152908390a4505060018054810190555050565b6000826120608584612215565b14949350505050565b6000546001600160a01b03851661209257604051622e076360e81b815260040160405180910390fd5b836120b05760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561216157506001600160a01b0387163b15155b156121d8575b60405182906001600160a01b038916906000906000805160206129b6833981519152908290a46121a06000888480600101955088611c90565b6121bd576040516368d2bf6b60e11b815260040160405180910390fd5b808214156121675782600054146121d357600080fd5b61220c565b5b6040516001830192906001600160a01b038916906000906000805160206129b6833981519152908290a4808214156121d9575b50600055611a97565b600081815b845181101561228157600085828151811061223757612237612973565b6020026020010151905080831161225d576000838152602082905260409020925061226e565b600081815260208490526040902092505b508061227981612918565b91505061221a565b509392505050565b828054612295906128dd565b90600052602060002090601f0160209004810192826122b757600085556122fd565b82601f106122d057805160ff19168380011785556122fd565b828001600101855582156122fd579182015b828111156122fd5782518255916020019190600101906122e2565b5061230992915061230d565b5090565b5b80821115612309576000815560010161230e565b60006001600160401b038084111561233c5761233c612989565b604051601f8501601f19908116603f0116810190828211818310171561236457612364612989565b8160405280935085815286868601111561237d57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146123ae57600080fd5b919050565b803560ff811681146123ae57600080fd5b6000602082840312156123d657600080fd5b61154582612397565b600080604083850312156123f257600080fd5b6123fb83612397565b915061240960208401612397565b90509250929050565b60008060006060848603121561242757600080fd5b61243084612397565b925061243e60208501612397565b9150604084013590509250925092565b6000806000806080858703121561246457600080fd5b61246d85612397565b935061247b60208601612397565b92506040850135915060608501356001600160401b0381111561249d57600080fd5b8501601f810187136124ae57600080fd5b6124bd87823560208401612322565b91505092959194509250565b600080604083850312156124dc57600080fd5b6124e583612397565b9150602083013580151581146124fa57600080fd5b809150509250929050565b6000806040838503121561251857600080fd5b61252183612397565b946020939093013593505050565b60006020828403121561254157600080fd5b5035919050565b60006020828403121561255a57600080fd5b81356115458161299f565b60006020828403121561257757600080fd5b81516115458161299f565b60006020828403121561259457600080fd5b81356001600160401b038111156125aa57600080fd5b8201601f810184136125bb57600080fd5b611b0f84823560208401612322565b600080604083850312156125dd57600080fd5b823561ffff811681146123fb57600080fd5b60006020828403121561260157600080fd5b611545826123b3565b60008060006040848603121561261f57600080fd5b612628846123b3565b925060208401356001600160401b038082111561264457600080fd5b818601915086601f83011261265857600080fd5b81358181111561266757600080fd5b8760208260051b850101111561267c57600080fd5b6020830194508093505050509250925092565b600081518084526126a78160208601602086016128b1565b601f01601f19169290920160200192915050565b6000845160206126ce8285838a016128b1565b8551918401916126e18184848a016128b1565b8554920191600090600181811c90808316806126fe57607f831692505b85831081141561271c57634e487b7160e01b85526022600452602485fd5b80801561273057600181146127415761276e565b60ff1985168852838801955061276e565b60008b81526020902060005b858110156127665781548a82015290840190880161274d565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127b29083018461268f565b9695505050505050565b602081526000611545602083018461268f565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600061ffff80831681851680830382111561282157612821612947565b01949350505050565b6000821982111561283d5761283d612947565b500190565b600060ff821660ff84168060ff0382111561285f5761285f612947565b019392505050565b6000826128765761287661295d565b500490565b600081600019048311821515161561289557612895612947565b500290565b6000828210156128ac576128ac612947565b500390565b60005b838110156128cc5781810151838201526020016128b4565b838111156113785750506000910152565b600181811c908216806128f157607f821691505b6020821081141561291257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561292c5761292c612947565b5060010190565b6000826129425761294261295d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d1d57600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220490a2998e45fa95c982292a98cc34c6fbfa67347bbaf81e5eec6711fcfaf2eec64736f6c63430008070033697066733a2f2f516d59416557396b5a50524e553343704c54463376783278447675526f4b483356676e34554434776a356a4b3656
Deployed Bytecode
0x6080604052600436106102935760003560e01c806370a082311161015a578063bc951b91116100c1578063d5abeb011161007a578063d5abeb01146107a7578063dbd37cf4146107d0578063e985e9c514610800578063eef440af14610849578063f2fde38b1461085e578063fb0220c21461087e57600080fd5b8063bc951b91146106f5578063bd32fb6614610714578063c280c88e14610734578063c87b56dd14610754578063cf51888314610774578063d1d192131461078757600080fd5b806395d89b411161011357806395d89b411461063a578063a22cb4651461064f578063a475b5dd1461066f578063a73d525d1461068f578063aa98e0c6146106bf578063b88d4fde146106d557600080fd5b806370a0823114610597578063715018a6146105b75780637ec4a659146105cc5780637f6e9093146105ec5780638da5cb5b146106065780639257e0441461062457600080fd5b80633bd64968116101fe57806358381669116101b757806358381669146104e257806359bf5dbb146104f55780635c975abb146105255780636352211e1461054457806363937fe0146105645780636ecd23061461058457600080fd5b80633bd649681461042c5780633ccfd60b1461044157806342842e0e1461045657806342966c681461047657806344a0d68a14610496578063506c2030146104b657600080fd5b806313faede61161025057806313faede61461037e57806318160ddd146103a257806323b872dd146103b757806328b60d15146103d75780632f6f98e1146103f757806337a66d851461041757600080fd5b806301ffc9a71461029857806306fdde03146102cd578063081812fc146102ef578063093cfa6314610327578063095ea7b31461033e5780631067fcc71461035e575b600080fd5b3480156102a457600080fd5b506102b86102b3366004612548565b610894565b60405190151581526020015b60405180910390f35b3480156102d957600080fd5b506102e26108e6565b6040516102c491906127bc565b3480156102fb57600080fd5b5061030f61030a36600461252f565b610978565b6040516001600160a01b0390911681526020016102c4565b34801561033357600080fd5b5061033c6109bc565b005b34801561034a57600080fd5b5061033c610359366004612505565b610a03565b34801561036a57600080fd5b5061033c610379366004612582565b610a91565b34801561038a57600080fd5b50610394600c5481565b6040519081526020016102c4565b3480156103ae57600080fd5b50610394610ad2565b3480156103c357600080fd5b5061033c6103d2366004612412565b610ae0565b3480156103e357600080fd5b5061033c6103f23660046125ef565b610aeb565b34801561040357600080fd5b5061033c6104123660046125ca565b610b31565b34801561042357600080fd5b5061033c610bca565b34801561043857600080fd5b5061033c610c19565b34801561044d57600080fd5b5061033c610c62565b34801561046257600080fd5b5061033c610471366004612412565b610ccf565b34801561048257600080fd5b5061033c61049136600461252f565b610cea565b3480156104a257600080fd5b5061033c6104b136600461252f565b610d20565b3480156104c257600080fd5b506012546104d09060ff1681565b60405160ff90911681526020016102c4565b61033c6104f036600461260a565b610d4f565b34801561050157600080fd5b506104d06105103660046123c4565b600f6020526000908152604090205460ff1681565b34801561053157600080fd5b50600e546102b890610100900460ff1681565b34801561055057600080fd5b5061030f61055f36600461252f565b610f4b565b34801561057057600080fd5b5061033c61057f3660046125ef565b610f5d565b61033c6105923660046125ef565b610f9d565b3480156105a357600080fd5b506103946105b23660046123c4565b6111c7565b3480156105c357600080fd5b5061033c611215565b3480156105d857600080fd5b5061033c6105e7366004612582565b61124b565b3480156105f857600080fd5b50600e546102b89060ff1681565b34801561061257600080fd5b506008546001600160a01b031661030f565b34801561063057600080fd5b50610394600d5481565b34801561064657600080fd5b506102e2611288565b34801561065b57600080fd5b5061033c61066a3660046124c9565b611297565b34801561067b57600080fd5b50600e546102b89062010000900460ff1681565b34801561069b57600080fd5b506102b86106aa3660046123c4565b60116020526000908152604090205460ff1681565b3480156106cb57600080fd5b5061039460135481565b3480156106e157600080fd5b5061033c6106f036600461244e565b61132d565b34801561070157600080fd5b506012546104d090610100900460ff1681565b34801561072057600080fd5b5061033c61072f36600461252f565b61137e565b34801561074057600080fd5b5061033c61074f36600461252f565b6113ad565b34801561076057600080fd5b506102e261076f36600461252f565b6113dc565b61033c61078236600461260a565b61154c565b34801561079357600080fd5b5061033c6107a236600461252f565b6116d8565b3480156107b357600080fd5b506107bd610d0581565b60405161ffff90911681526020016102c4565b3480156107dc57600080fd5b506104d06107eb3660046123c4565b60106020526000908152604090205460ff1681565b34801561080c57600080fd5b506102b861081b3660046123df565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561085557600080fd5b506102e2611707565b34801561086a57600080fd5b5061033c6108793660046123c4565b611795565b34801561088a57600080fd5b5061039460145481565b60006001600160e01b031982166380ac58cd60e01b14806108c557506001600160e01b03198216635b5e139f60e01b145b806108e057506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546108f5906128dd565b80601f0160208091040260200160405190810160405280929190818152602001828054610921906128dd565b801561096e5780601f106109435761010080835404028352916020019161096e565b820191906000526020600020905b81548152906001019060200180831161095157829003601f168201915b5050505050905090565b60006109838261182d565b6109a0576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6008546001600160a01b031633146109ef5760405162461bcd60e51b81526004016109e6906127cf565b60405180910390fd5b600e805460ff19811660ff90911615179055565b6000610a0e82610f4b565b9050806001600160a01b0316836001600160a01b03161415610a435760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a635750610a61813361081b565b155b15610a81576040516367d9dca160e11b815260040160405180910390fd5b610a8c838383611866565b505050565b6008546001600160a01b03163314610abb5760405162461bcd60e51b81526004016109e6906127cf565b8051610ace90600b906020840190612289565b5050565b600154600054036000190190565b610a8c8383836118c2565b6008546001600160a01b03163314610b155760405162461bcd60e51b81526004016109e6906127cf565b6012805460ff9092166101000261ff0019909216919091179055565b6008546001600160a01b03163314610b5b5760405162461bcd60e51b81526004016109e6906127cf565b6000610b65610ad2565b9050610d05610b748483612804565b61ffff161115610bbc5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b60448201526064016109e6565b610a8c828461ffff16611a9e565b6008546001600160a01b03163314610bf45760405162461bcd60e51b81526004016109e6906127cf565b600e805460ff1960ff6101008084049190911615021661ffff19909116176001179055565b6008546001600160a01b03163314610c435760405162461bcd60e51b81526004016109e6906127cf565b600e805462ff0000198116620100009182900460ff1615909102179055565b6008546001600160a01b03163314610c8c5760405162461bcd60e51b81526004016109e6906127cf565b6040514790730c34d4f6175de72c904ef2720785a6bfd73c03759082156108fc029083906000818181858888f19350505050158015610ace573d6000803e3d6000fd5b610a8c8383836040518060200160405280600081525061132d565b6008546001600160a01b03163314610d145760405162461bcd60e51b81526004016109e6906127cf565b610d1d81611ab8565b50565b6008546001600160a01b03163314610d4a5760405162461bcd60e51b81526004016109e6906127cf565b600c55565b6000610d5a33611ac3565b336000908152600f6020908152604091829020546013548351878402818101850190955287815294955060ff90911693610db293869389918991829190850190849080828437600092019190915250611b0292505050565b610df55760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b2b935b63290383937b7b360611b60448201526064016109e6565b60125460ff16610e058683612842565b60ff161115610e565760405162461bcd60e51b815260206004820152601a60248201527f45786365656473206d617820747820706572206164647265737300000000000060448201526064016109e6565b600e5460ff1615610ea95760405162461bcd60e51b815260206004820152601a60248201527f57686974656c697374206d696e74696e67206973206f7665722100000000000060448201526064016109e6565b8460ff16600d54610eba919061287b565b341015610eff5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109e6565b6000610f09610ad2565b9050610f18338760ff16611a9e565b610f228683612842565b336000908152600f60205260409020805460ff191660ff92909216919091179055505050505050565b6000610f5682611b17565b5192915050565b6008546001600160a01b03163314610f875760405162461bcd60e51b81526004016109e6906127cf565b6012805460ff191660ff92909216919091179055565b6000610fa7610ad2565b9050610d05610fb960ff841683612804565b61ffff1611156110015760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b60448201526064016109e6565b3360009081526010602052604090205460125460ff91821691166110258483612842565b60ff1611156110765760405162461bcd60e51b815260206004820152601a60248201527f45786365656473206d617820747820706572206164647265737300000000000060448201526064016109e6565b601254610100900460ff1661108b8285612842565b60ff1611156110dc5760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d617820706572207472616e73616374696f6e2e0000000060448201526064016109e6565b600e54610100900460ff16156111345760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e7472616374206973207061757365642100000000000000000060448201526064016109e6565b8260ff16600c54611145919061287b565b34101561118a5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b60448201526064016109e6565b611197338460ff16611a9e565b6111a18382612842565b336000908152601060205260409020805460ff191660ff92909216919091179055505050565b60006001600160a01b0382166111f0576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b0316331461123f5760405162461bcd60e51b81526004016109e6906127cf565b6112496000611c3e565b565b6008546001600160a01b031633146112755760405162461bcd60e51b81526004016109e6906127cf565b8051610ace906009906020840190612289565b6060600380546108f5906128dd565b6001600160a01b0382163314156112c15760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6113388484846118c2565b6001600160a01b0383163b1515801561135a575061135884848484611c90565b155b15611378576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146113a85760405162461bcd60e51b81526004016109e6906127cf565b601355565b6008546001600160a01b031633146113d75760405162461bcd60e51b81526004016109e6906127cf565b601455565b60606113e78261182d565b61144b5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109e6565b600e5462010000900460ff166114ed57600b8054611468906128dd565b80601f0160208091040260200160405190810160405280929190818152602001828054611494906128dd565b80156114e15780601f106114b6576101008083540402835291602001916114e1565b820191906000526020600020905b8154815290600101906020018083116114c457829003601f168201915b50505050509050919050565b60006114f7611d87565b905060008151116115175760405180602001604052806000815250611545565b8061152184611d96565b600a604051602001611535939291906126bb565b6040516020818303038152906040525b9392505050565b600061155733611ac3565b905061159981601454858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250611b0292505050565b6115dc5760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21036b2b935b63290383937b7b360611b60448201526064016109e6565b3360009081526011602052604090205460ff161561164b5760405162461bcd60e51b815260206004820152602660248201527f596f75206861766520616c726561647920636c61696d656420796f757220667260448201526519594813919560d21b60648201526084016109e6565b600e5460ff161561169e5760405162461bcd60e51b815260206004820152601a60248201527f57686974656c697374206d696e74696e67206973206f7665722100000000000060448201526064016109e6565b60006116a8610ad2565b90506116b7338660ff16611a9e565b5050336000908152601160205260409020805460ff19166001179055505050565b6008546001600160a01b031633146117025760405162461bcd60e51b81526004016109e6906127cf565b600d55565b600b8054611714906128dd565b80601f0160208091040260200160405190810160405280929190818152602001828054611740906128dd565b801561178d5780601f106117625761010080835404028352916020019161178d565b820191906000526020600020905b81548152906001019060200180831161177057829003601f168201915b505050505081565b6008546001600160a01b031633146117bf5760405162461bcd60e51b81526004016109e6906127cf565b6001600160a01b0381166118245760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109e6565b610d1d81611c3e565b600081600111158015611841575060005482105b80156108e0575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006118cd82611b17565b9050836001600160a01b031681600001516001600160a01b0316146119045760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806119225750611922853361081b565b8061193d57503361193284610978565b6001600160a01b0316145b90508061195d57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661198457604051633a954ecd60e21b815260040160405180910390fd5b61199060008487611866565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611a64576000548214611a6457805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03166000805160206129b683398151915260405160405180910390a45b5050505050565b610ace828260405180602001604052806000815250611e93565b610d1d816000611ea0565b6040516bffffffffffffffffffffffff19606083901b166020820152600090603401604051602081830303815290604052805190602001209050919050565b6000611b0f828486612053565b949350505050565b60408051606081018252600080825260208201819052918101919091528180600111158015611b47575060005481105b15611c2557600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611c235780516001600160a01b031615611bba579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611c1e579392505050565b611bba565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611cc590339089908890889060040161277f565b602060405180830381600087803b158015611cdf57600080fd5b505af1925050508015611d0f575060408051601f3d908101601f19168201909252611d0c91810190612565565b60015b611d6a573d808015611d3d576040519150601f19603f3d011682016040523d82523d6000602084013e611d42565b606091505b508051611d62576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6060600980546108f5906128dd565b606081611dba5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611de45780611dce81612918565b9150611ddd9050600a83612867565b9150611dbe565b6000816001600160401b03811115611dfe57611dfe612989565b6040519080825280601f01601f191660200182016040528015611e28576020820181803683370190505b5090505b8415611b0f57611e3d60018361289a565b9150611e4a600a86612933565b611e5590603061282a565b60f81b818381518110611e6a57611e6a612973565b60200101906001600160f81b031916908160001a905350611e8c600a86612867565b9450611e2c565b610a8c8383836001612069565b6000611eab83611b17565b80519091508215611f11576000336001600160a01b0383161480611ed45750611ed4823361081b565b80611eef575033611ee486610978565b6001600160a01b0316145b905080611f0f57604051632ce44b5f60e11b815260040160405180910390fd5b505b611f1d60008583611866565b6001600160a01b0380821660008181526005602090815260408083208054600160801b6000196001600160401b0380841691909101811667ffffffffffffffff198416811783900482166001908101831690930277ffffffffffffffff0000000000000000ffffffffffffffff19909416179290921783558b86526004909452828520805460ff60e01b1942909316600160a01b026001600160e01b03199091169097179690961716600160e01b17855591890180845292208054919490911661201b57600054821461201b57805460208701516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038716171781555b5050604051869250600091506001600160a01b038416906000805160206129b6833981519152908390a4505060018054810190555050565b6000826120608584612215565b14949350505050565b6000546001600160a01b03851661209257604051622e076360e81b815260040160405180910390fd5b836120b05760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561216157506001600160a01b0387163b15155b156121d8575b60405182906001600160a01b038916906000906000805160206129b6833981519152908290a46121a06000888480600101955088611c90565b6121bd576040516368d2bf6b60e11b815260040160405180910390fd5b808214156121675782600054146121d357600080fd5b61220c565b5b6040516001830192906001600160a01b038916906000906000805160206129b6833981519152908290a4808214156121d9575b50600055611a97565b600081815b845181101561228157600085828151811061223757612237612973565b6020026020010151905080831161225d576000838152602082905260409020925061226e565b600081815260208490526040902092505b508061227981612918565b91505061221a565b509392505050565b828054612295906128dd565b90600052602060002090601f0160209004810192826122b757600085556122fd565b82601f106122d057805160ff19168380011785556122fd565b828001600101855582156122fd579182015b828111156122fd5782518255916020019190600101906122e2565b5061230992915061230d565b5090565b5b80821115612309576000815560010161230e565b60006001600160401b038084111561233c5761233c612989565b604051601f8501601f19908116603f0116810190828211818310171561236457612364612989565b8160405280935085815286868601111561237d57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146123ae57600080fd5b919050565b803560ff811681146123ae57600080fd5b6000602082840312156123d657600080fd5b61154582612397565b600080604083850312156123f257600080fd5b6123fb83612397565b915061240960208401612397565b90509250929050565b60008060006060848603121561242757600080fd5b61243084612397565b925061243e60208501612397565b9150604084013590509250925092565b6000806000806080858703121561246457600080fd5b61246d85612397565b935061247b60208601612397565b92506040850135915060608501356001600160401b0381111561249d57600080fd5b8501601f810187136124ae57600080fd5b6124bd87823560208401612322565b91505092959194509250565b600080604083850312156124dc57600080fd5b6124e583612397565b9150602083013580151581146124fa57600080fd5b809150509250929050565b6000806040838503121561251857600080fd5b61252183612397565b946020939093013593505050565b60006020828403121561254157600080fd5b5035919050565b60006020828403121561255a57600080fd5b81356115458161299f565b60006020828403121561257757600080fd5b81516115458161299f565b60006020828403121561259457600080fd5b81356001600160401b038111156125aa57600080fd5b8201601f810184136125bb57600080fd5b611b0f84823560208401612322565b600080604083850312156125dd57600080fd5b823561ffff811681146123fb57600080fd5b60006020828403121561260157600080fd5b611545826123b3565b60008060006040848603121561261f57600080fd5b612628846123b3565b925060208401356001600160401b038082111561264457600080fd5b818601915086601f83011261265857600080fd5b81358181111561266757600080fd5b8760208260051b850101111561267c57600080fd5b6020830194508093505050509250925092565b600081518084526126a78160208601602086016128b1565b601f01601f19169290920160200192915050565b6000845160206126ce8285838a016128b1565b8551918401916126e18184848a016128b1565b8554920191600090600181811c90808316806126fe57607f831692505b85831081141561271c57634e487b7160e01b85526022600452602485fd5b80801561273057600181146127415761276e565b60ff1985168852838801955061276e565b60008b81526020902060005b858110156127665781548a82015290840190880161274d565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127b29083018461268f565b9695505050505050565b602081526000611545602083018461268f565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600061ffff80831681851680830382111561282157612821612947565b01949350505050565b6000821982111561283d5761283d612947565b500190565b600060ff821660ff84168060ff0382111561285f5761285f612947565b019392505050565b6000826128765761287661295d565b500490565b600081600019048311821515161561289557612895612947565b500290565b6000828210156128ac576128ac612947565b500390565b60005b838110156128cc5781810151838201526020016128b4565b838111156113785750506000910152565b600181811c908216806128f157607f821691505b6020821081141561291257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561292c5761292c612947565b5060010190565b6000826129425761294261295d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d1d57600080fdfeddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa2646970667358221220490a2998e45fa95c982292a98cc34c6fbfa67347bbaf81e5eec6711fcfaf2eec64736f6c63430008070033
Deployed Bytecode Sourcemap
46500:6088:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24600:305;;;;;;;;;;-1:-1:-1;24600:305:0;;;;;:::i;:::-;;:::i;:::-;;;8511:14:1;;8504:22;8486:41;;8474:2;8459:18;24600:305:0;;;;;;;;27713:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29216:204::-;;;;;;;;;;-1:-1:-1;29216:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7809:32:1;;;7791:51;;7779:2;7764:18;29216:204:0;7645:203:1;49261:75:0;;;;;;;;;;;;;:::i;:::-;;28779:371;;;;;;;;;;-1:-1:-1;28779:371:0;;;;;:::i;:::-;;:::i;51776:102::-;;;;;;;;;;-1:-1:-1;51776:102:0;;;;;:::i;:::-;;:::i;46753:32::-;;;;;;;;;;;;;;;;;;;8684:25:1;;;8672:2;8657:18;46753:32:0;8538:177:1;23849:303:0;;;;;;;;;;;;;:::i;30081:170::-;;;;;;;;;;-1:-1:-1;30081:170:0;;;;;:::i;:::-;;:::i;52140:115::-;;;;;;;;;;-1:-1:-1;52140:115:0;;;;;:::i;:::-;;:::i;48340:326::-;;;;;;;;;;-1:-1:-1;48340:326:0;;;;;:::i;:::-;;:::i;51886:91::-;;;;;;;;;;;;;:::i;52064:70::-;;;;;;;;;;;;;:::i;52266:214::-;;;;;;;;;;;;;:::i;30322:185::-;;;;;;;;;;-1:-1:-1;30322:185:0;;;;;:::i;:::-;;:::i;48672:78::-;;;;;;;;;;-1:-1:-1;48672:78:0;;;;;:::i;:::-;;:::i;51983:76::-;;;;;;;;;;-1:-1:-1;51983:76:0;;;;;:::i;:::-;;:::i;47207:41::-;;;;;;;;;;-1:-1:-1;47207:41:0;;;;;;;;;;;13546:4:1;13534:17;;;13516:36;;13504:2;13489:18;47207:41:0;13374:184:1;50180:825:0;;;;;;:::i;:::-;;:::i;47042:49::-;;;;;;;;;;-1:-1:-1;47042:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;46982:25;;;;;;;;;;-1:-1:-1;46982:25:0;;;;;;;;;;;27521:125;;;;;;;;;;-1:-1:-1;27521:125:0;;;;;:::i;:::-;;:::i;49455:127::-;;;;;;;;;;-1:-1:-1;49455:127:0;;;;;:::i;:::-;;:::i;47599:733::-;;;;;;:::i;:::-;;:::i;24969:206::-;;;;;;;;;;-1:-1:-1;24969:206:0;;;;;:::i;:::-;;:::i;45646:103::-;;;;;;;;;;;;;:::i;51669:102::-;;;;;;;;;;-1:-1:-1;51669:102:0;;;;;:::i;:::-;;:::i;46949:28::-;;;;;;;;;;-1:-1:-1;46949:28:0;;;;;;;;44994:87;;;;;;;;;;-1:-1:-1;45067:6:0;;-1:-1:-1;;;;;45067:6:0;44994:87;;46790:41;;;;;;;;;;;;;;;;27882:104;;;;;;;;;;;;;:::i;29492:287::-;;;;;;;;;;-1:-1:-1;29492:287:0;;;;;:::i;:::-;;:::i;47012:25::-;;;;;;;;;;-1:-1:-1;47012:25:0;;;;;;;;;;;47148:54;;;;;;;;;;-1:-1:-1;47148:54:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;47312:103;;;;;;;;;;;;;;;;30578:369;;;;;;;;;;-1:-1:-1;30578:369:0;;;;;:::i;:::-;;:::i;47255:39::-;;;;;;;;;;-1:-1:-1;47255:39:0;;;;;;;;;;;49584:142;;;;;;;;;;-1:-1:-1;49584:142:0;;;;;:::i;:::-;;:::i;49734:122::-;;;;;;;;;;-1:-1:-1;49734:122:0;;;;;:::i;:::-;;:::i;48763:490::-;;;;;;;;;;-1:-1:-1;48763:490:0;;;;;:::i;:::-;;:::i;51013:645::-;;;;;;:::i;:::-;;:::i;49340:106::-;;;;;;;;;;-1:-1:-1;49340:106:0;;;;;:::i;:::-;;:::i;46838:39::-;;;;;;;;;;;;46873:4;46838:39;;;;;13173:6:1;13161:19;;;13143:38;;13131:2;13116:18;46838:39:0;12999:188:1;47096:47:0;;;;;;;;;;-1:-1:-1;47096:47:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;29850:164;;;;;;;;;;-1:-1:-1;29850:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29971:25:0;;;29947:4;29971:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29850:164;46655:81;;;;;;;;;;;;;:::i;45904:201::-;;;;;;;;;;-1:-1:-1;45904:201:0;;;;;:::i;:::-;;:::i;47420:102::-;;;;;;;;;;;;;;;;24600:305;24702:4;-1:-1:-1;;;;;;24739:40:0;;-1:-1:-1;;;24739:40:0;;:105;;-1:-1:-1;;;;;;;24796:48:0;;-1:-1:-1;;;24796:48:0;24739:105;:158;;;-1:-1:-1;;;;;;;;;;14634:40:0;;;24861:36;24719:178;24600:305;-1:-1:-1;;24600:305:0:o;27713:100::-;27767:13;27800:5;27793:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27713:100;:::o;29216:204::-;29284:7;29309:16;29317:7;29309;:16::i;:::-;29304:64;;29334:34;;-1:-1:-1;;;29334:34:0;;;;;;;;;;;29304:64;-1:-1:-1;29388:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29388:24:0;;29216:204::o;49261:75::-;45067:6;;-1:-1:-1;;;;;45067:6:0;3075:10;45214:23;45206:69;;;;-1:-1:-1;;;45206:69:0;;;;;;;:::i;:::-;;;;;;;;;49322:8:::1;::::0;;-1:-1:-1;;49310:20:0;::::1;49322:8;::::0;;::::1;49321:9;49310:20;::::0;;49261:75::o;28779:371::-;28852:13;28868:24;28884:7;28868:15;:24::i;:::-;28852:40;;28913:5;-1:-1:-1;;;;;28907:11:0;:2;-1:-1:-1;;;;;28907:11:0;;28903:48;;;28927:24;;-1:-1:-1;;;28927:24:0;;;;;;;;;;;28903:48;3075:10;-1:-1:-1;;;;;28968:21:0;;;;;;:63;;-1:-1:-1;28994:37:0;29011:5;3075:10;29850:164;:::i;28994:37::-;28993:38;28968:63;28964:138;;;29055:35;;-1:-1:-1;;;29055:35:0;;;;;;;;;;;28964:138;29114:28;29123:2;29127:7;29136:5;29114:8;:28::i;:::-;28841:309;28779:371;;:::o;51776:102::-;45067:6;;-1:-1:-1;;;;;45067:6:0;3075:10;45214:23;45206:69;;;;-1:-1:-1;;;45206:69:0;;;;;;;:::i;:::-;51850:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;51776:102:::0;:::o;23849:303::-;23706:1;24103:12;23893:7;24087:13;:28;-1:-1:-1;;24087:46:0;;23849:303::o;30081:170::-;30215:28;30225:4;30231:2;30235:7;30215:9;:28::i;52140:115::-;45067:6;;-1:-1:-1;;;;;45067:6:0;3075:10;45214:23;45206:69;;;;-1:-1:-1;;;45206:69:0;;;;;;;:::i;:::-;52216:22:::1;:31:::0;;::::1;::::0;;::::1;;;-1:-1:-1::0;;52216:31:0;;::::1;::::0;;;::::1;::::0;;52140:115::o;48340:326::-;45067:6;;-1:-1:-1;;;;;45067:6:0;3075:10;45214:23;45206:69;;;;-1:-1:-1;;;45206:69:0;;;;;;;:::i;:::-;48423:18:::1;48451:13;:11;:13::i;:::-;48423:42:::0;-1:-1:-1;46873:4:0::1;48480:25;48494:11:::0;48423:42;48480:25:::1;:::i;:::-;:38;;;;48472:70;;;::::0;-1:-1:-1;;;48472:70:0;;9146:2:1;48472:70:0::1;::::0;::::1;9128:21:1::0;9185:2;9165:18;;;9158:30;-1:-1:-1;;;9204:18:1;;;9197:49;9263:18;;48472:70:0::1;8944:343:1::0;48472:70:0::1;48550:34;48560:9;48572:11;48550:34;;:9;:34::i;51886:91::-:0;45067:6;;-1:-1:-1;;;;;45067:6:0;3075:10;45214:23;45206:69;;;;-1:-1:-1;;;45206:69:0;;;;;;;:::i;:::-;51943:6:::1;::::0;;-1:-1:-1;;51943:6:0::1;;::::0;;::::1;::::0;;;::::1;51942:7;51933:16;51956:15:::0;-1:-1:-1;;51956:15:0;;;;51943:6:::1;51956:15;::::0;;51886:91::o;52064:70::-;45067:6;;-1:-1:-1;;;;;45067:6:0;3075:10;45214:23;45206:69;;;;-1:-1:-1;;;45206:69:0;;;;;;;:::i;:::-;52123:6:::1;::::0;;-1:-1:-1;;52113:16:0;::::1;52123:6:::0;;;;::::1;;;52122:7;52113:16:::0;;::::1;;::::0;;52064:70::o;52266:214::-;45067:6;;-1:-1:-1;;;;;45067:6:0;3075:10;45214:23;45206:69;;;;-1:-1:-1;;;45206:69:0;;;;;;;:::i;:::-;52354:70:::1;::::0;52326:21:::1;::::0;52362:42:::1;::::0;52354:70;::::1;;;::::0;52326:21;;52310:13:::1;52354:70:::0;52310:13;52354:70;52326:21;52362:42;52354:70;::::1;;;;;;;;;;;;;::::0;::::1;;;;30322:185:::0;30460:39;30477:4;30483:2;30487:7;30460:39;;;;;;;;;;;;:16;:39::i;48672:78::-;45067:6;;-1:-1:-1;;;;;45067:6:0;3075:10;45214:23;45206:69;;;;-1:-1:-1;;;45206:69:0;;;;;;;:::i;:::-;48729:15:::1;48735:8;48729:5;:15::i;:::-;48672:78:::0;:::o;51983:76::-;45067:6;;-1:-1:-1;;;;;45067:6:0;3075:10;45214:23;45206:69;;;;-1:-1:-1;;;45206:69:0;;;;;;;:::i;:::-;52039:4:::1;:12:::0;51983:76::o;50180:825::-;50291:17;50311:23;50323:10;50311:11;:23::i;:::-;50383:10;50345:19;50367:27;;;:15;:27;;;;;;;;;;50432:19;;50412:56;;;;;;;;;;;;;;;;50291:43;;-1:-1:-1;50367:27:0;;;;;50412:56;;50291:43;;50453:11;;;;;;50412:56;;;;50453:11;;50412:56;50453:11;50412:56;;;;;;;;;-1:-1:-1;50412:7:0;;-1:-1:-1;;;50412:56:0:i;:::-;50404:90;;;;-1:-1:-1;;;50404:90:0;;11379:2:1;50404:90:0;;;11361:21:1;11418:2;11398:18;;;11391:30;-1:-1:-1;;;11437:18:1;;;11430:50;11497:18;;50404:90:0;11177:344:1;50404:90:0;50544:24;;;;50513:27;50529:11;50513:13;:27;:::i;:::-;:55;;;;50504:95;;;;-1:-1:-1;;;50504:95:0;;10663:2:1;50504:95:0;;;10645:21:1;10702:2;10682:18;;;10675:30;10741:28;10721:18;;;10714:56;10787:18;;50504:95:0;10461:350:1;50504:95:0;50627:8;;;;50626:9;50618:48;;;;-1:-1:-1;;;50618:48:0;;9901:2:1;50618:48:0;;;9883:21:1;9940:2;9920:18;;;9913:30;9979:28;9959:18;;;9952:56;10025:18;;50618:48:0;9699:350:1;50618:48:0;50710:11;50694:27;;:13;;:27;;;;:::i;:::-;50681:9;:40;;50673:72;;;;-1:-1:-1;;;50673:72:0;;12853:2:1;50673:72:0;;;12835:21:1;12892:2;12872:18;;;12865:30;-1:-1:-1;;;12911:18:1;;;12904:49;12970:18;;50673:72:0;12651:343:1;50673:72:0;50757:18;50785:13;:11;:13::i;:::-;50757:42;;50807:35;50817:10;50830:11;50807:35;;:9;:35::i;:::-;50880:27;50896:11;50880:13;:27;:::i;:::-;50867:10;50851:27;;;;:15;:27;;;;;:56;;-1:-1:-1;;50851:56:0;;;;;;;;;;;;-1:-1:-1;;;;;;50180:825:0:o;27521:125::-;27585:7;27612:21;27625:7;27612:12;:21::i;:::-;:26;;27521:125;-1:-1:-1;;27521:125:0:o;49455:127::-;45067:6;;-1:-1:-1;;;;;45067:6:0;3075:10;45214:23;45206:69;;;;-1:-1:-1;;;45206:69:0;;;;;;;:::i;:::-;49524:24:::1;:33:::0;;-1:-1:-1;;49524:33:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;49455:127::o;47599:733::-;47659:18;47687:13;:11;:13::i;:::-;47659:42;-1:-1:-1;46873:4:0;47718:25;;;;47659:42;47718:25;:::i;:::-;:38;;;;47710:70;;;;-1:-1:-1;;;47710:70:0;;9146:2:1;47710:70:0;;;9128:21:1;9185:2;9165:18;;;9158:30;-1:-1:-1;;;9204:18:1;;;9197:49;9263:18;;47710:70:0;8944:343:1;47710:70:0;47825:10;47789:19;47811:25;;;:13;:25;;;;;;47890:24;;47811:25;;;;;47890:24;47859:27;47875:11;47811:25;47859:27;:::i;:::-;:55;;;;47850:95;;;;-1:-1:-1;;;47850:95:0;;10663:2:1;47850:95:0;;;10645:21:1;10702:2;10682:18;;;10675:30;10741:28;10721:18;;;10714:56;10787:18;;47850:95:0;10461:350:1;47850:95:0;47990:22;;;;;;;47960:26;47973:13;47960:11;:26;:::i;:::-;:52;;;;47952:93;;;;-1:-1:-1;;;47952:93:0;;12496:2:1;47952:93:0;;;12478:21:1;12535:2;12515:18;;;12508:30;12574;12554:18;;;12547:58;12622:18;;47952:93:0;12294:352:1;47952:93:0;48063:6;;;;;;;48062:7;48054:43;;;;-1:-1:-1;;;48054:43:0;;11728:2:1;48054:43:0;;;11710:21:1;11767:2;11747:18;;;11740:30;11806:25;11786:18;;;11779:53;11849:18;;48054:43:0;11526:347:1;48054:43:0;48132:11;48125:18;;:4;;:18;;;;:::i;:::-;48112:9;:31;;48104:63;;;;-1:-1:-1;;;48104:63:0;;12853:2:1;48104:63:0;;;12835:21:1;12892:2;12872:18;;;12865:30;-1:-1:-1;;;12911:18:1;;;12904:49;12970:18;;48104:63:0;12651:343:1;48104:63:0;48176:35;48186:10;48199:11;48176:35;;:9;:35::i;:::-;48247:27;48263:11;48247:13;:27;:::i;:::-;48233:10;48219:25;;;;:13;:25;;;;;:55;;-1:-1:-1;;48219:55:0;;;;;;;;;;;;-1:-1:-1;;;47599:733:0:o;24969:206::-;25033:7;-1:-1:-1;;;;;25057:19:0;;25053:60;;25085:28;;-1:-1:-1;;;25085:28:0;;;;;;;;;;;25053:60;-1:-1:-1;;;;;;25139:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;25139:27:0;;24969:206::o;45646:103::-;45067:6;;-1:-1:-1;;;;;45067:6:0;3075:10;45214:23;45206:69;;;;-1:-1:-1;;;45206:69:0;;;;;;;:::i;:::-;45711:30:::1;45738:1;45711:18;:30::i;:::-;45646:103::o:0;51669:102::-;45067:6;;-1:-1:-1;;;;;45067:6:0;3075:10;45214:23;45206:69;;;;-1:-1:-1;;;45206:69:0;;;;;;;:::i;:::-;51743:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;27882:104::-:0;27938:13;27971:7;27964:14;;;;;:::i;29492:287::-;-1:-1:-1;;;;;29591:24:0;;3075:10;29591:24;29587:54;;;29624:17;;-1:-1:-1;;;29624:17:0;;;;;;;;;;;29587:54;3075:10;29654:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29654:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29654:53:0;;;;;;;;;;29723:48;;8486:41:1;;;29654:42:0;;3075:10;29723:48;;8459:18:1;29723:48:0;;;;;;;29492:287;;:::o;30578:369::-;30745:28;30755:4;30761:2;30765:7;30745:9;:28::i;:::-;-1:-1:-1;;;;;30788:13:0;;4737:19;:23;;30788:76;;;;;30808:56;30839:4;30845:2;30849:7;30858:5;30808:30;:56::i;:::-;30807:57;30788:76;30784:156;;;30888:40;;-1:-1:-1;;;30888:40:0;;;;;;;;;;;30784:156;30578:369;;;;:::o;49584:142::-;45067:6;;-1:-1:-1;;;;;45067:6:0;3075:10;45214:23;45206:69;;;;-1:-1:-1;;;45206:69:0;;;;;;;:::i;:::-;49676:19:::1;:42:::0;49584:142::o;49734:122::-;45067:6;;-1:-1:-1;;;;;45067:6:0;3075:10;45214:23;45206:69;;;;-1:-1:-1;;;45206:69:0;;;;;;;:::i;:::-;49816:18:::1;:32:::0;49734:122::o;48763:490::-;48862:13;48903:17;48911:8;48903:7;:17::i;:::-;48887:98;;;;-1:-1:-1;;;48887:98:0;;12080:2:1;48887:98:0;;;12062:21:1;12119:2;12099:18;;;12092:30;12158:34;12138:18;;;12131:62;-1:-1:-1;;;12209:18:1;;;12202:45;12264:19;;48887:98:0;11878:411:1;48887:98:0;49003:6;;;;;;;48998:50;;49035:9;49028:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48763:490;;;:::o;48998:50::-;49062:28;49093:10;:8;:10::i;:::-;49062:41;;49148:1;49123:14;49117:28;:32;:130;;;;;;;;;;;;;;;;;49185:14;49201:19;:8;:17;:19::i;:::-;49222:9;49168:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49117:130;49110:137;48763:490;-1:-1:-1;;;48763:490:0:o;51013:645::-;51119:17;51139:23;51151:10;51139:11;:23::i;:::-;51119:43;;51189:55;51197:8;51208:18;;51229:11;;51189:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51189:7:0;;-1:-1:-1;;;51189:55:0:i;:::-;51181:89;;;;-1:-1:-1;;;51181:89:0;;11379:2:1;51181:89:0;;;11361:21:1;11418:2;11398:18;;;11391:30;-1:-1:-1;;;11437:18:1;;;11430:50;11497:18;;51181:89:0;11177:344:1;51181:89:0;51320:10;51298:33;;;;:21;:33;;;;;;;;51297:34;51288:87;;;;-1:-1:-1;;;51288:87:0;;10256:2:1;51288:87:0;;;10238:21:1;10295:2;10275:18;;;10268:30;10334:34;10314:18;;;10307:62;-1:-1:-1;;;10385:18:1;;;10378:36;10431:19;;51288:87:0;10054:402:1;51288:87:0;51395:8;;;;51394:9;51386:48;;;;-1:-1:-1;;;51386:48:0;;9901:2:1;51386:48:0;;;9883:21:1;9940:2;9920:18;;;9913:30;9979:28;9959:18;;;9952:56;10025:18;;51386:48:0;9699:350:1;51386:48:0;51452:18;51480:13;:11;:13::i;:::-;51452:42;;51502:35;51512:10;51525:11;51502:35;;:9;:35::i;:::-;-1:-1:-1;;51568:10:0;51546:33;;;;:21;:33;;;;;:40;;-1:-1:-1;;51546:40:0;51582:4;51546:40;;;-1:-1:-1;;;51013:645:0:o;49340:106::-;45067:6;;-1:-1:-1;;;;;45067:6:0;3075:10;45214:23;45206:69;;;;-1:-1:-1;;;45206:69:0;;;;;;;:::i;:::-;49400:13:::1;:21:::0;49340:106::o;46655:81::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;45904:201::-;45067:6;;-1:-1:-1;;;;;45067:6:0;3075:10;45214:23;45206:69;;;;-1:-1:-1;;;45206:69:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45993:22:0;::::1;45985:73;;;::::0;-1:-1:-1;;;45985:73:0;;9494:2:1;45985:73:0::1;::::0;::::1;9476:21:1::0;9533:2;9513:18;;;9506:30;9572:34;9552:18;;;9545:62;-1:-1:-1;;;9623:18:1;;;9616:36;9669:19;;45985:73:0::1;9292:402:1::0;45985:73:0::1;46069:28;46088:8;46069:18;:28::i;31202:187::-:0;31259:4;31302:7;23706:1;31283:26;;:53;;;;;31323:13;;31313:7;:23;31283:53;:98;;;;-1:-1:-1;;31354:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;31354:27:0;;;;31353:28;;31202:187::o;39372:196::-;39487:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39487:29:0;-1:-1:-1;;;;;39487:29:0;;;;;;;;;39532:28;;39487:24;;39532:28;;;;;;;39372:196;;;:::o;34315:2130::-;34430:35;34468:21;34481:7;34468:12;:21::i;:::-;34430:59;;34528:4;-1:-1:-1;;;;;34506:26:0;:13;:18;;;-1:-1:-1;;;;;34506:26:0;;34502:67;;34541:28;;-1:-1:-1;;;34541:28:0;;;;;;;;;;;34502:67;34582:22;3075:10;-1:-1:-1;;;;;34608:20:0;;;;:73;;-1:-1:-1;34645:36:0;34662:4;3075:10;29850:164;:::i;34645:36::-;34608:126;;;-1:-1:-1;3075:10:0;34698:20;34710:7;34698:11;:20::i;:::-;-1:-1:-1;;;;;34698:36:0;;34608:126;34582:153;;34753:17;34748:66;;34779:35;;-1:-1:-1;;;34779:35:0;;;;;;;;;;;34748:66;-1:-1:-1;;;;;34829:16:0;;34825:52;;34854:23;;-1:-1:-1;;;34854:23:0;;;;;;;;;;;34825:52;34998:35;35015:1;35019:7;35028:4;34998:8;:35::i;:::-;-1:-1:-1;;;;;35329:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;35329:31:0;;;-1:-1:-1;;;;;35329:31:0;;;-1:-1:-1;;35329:31:0;;;;;;;35375:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;35375:29:0;;;;;;;;;;;35455:20;;;:11;:20;;;;;;35490:18;;-1:-1:-1;;;;;;35523:49:0;;;;-1:-1:-1;;;35556:15:0;35523:49;;;;;;;;;;35846:11;;35906:24;;;;;35949:13;;35455:20;;35906:24;;35949:13;35945:384;;36159:13;;36144:11;:28;36140:174;;36197:20;;36266:28;;;;-1:-1:-1;;;;;36240:54:0;-1:-1:-1;;;36240:54:0;-1:-1:-1;;;;;;36240:54:0;;;-1:-1:-1;;;;;36197:20:0;;36240:54;;;;36140:174;35304:1036;;;36376:7;36372:2;-1:-1:-1;;;;;36357:27:0;36366:4;-1:-1:-1;;;;;36357:27:0;-1:-1:-1;;;;;;;;;;;36357:27:0;;;;;;;;;36395:42;34419:2026;;34315:2130;;;:::o;31397:104::-;31466:27;31476:2;31480:8;31466:27;;;;;;;;;;;;:9;:27::i;36528:89::-;36588:21;36594:7;36603:5;36588;:21::i;49870:138::-;49976:23;;-1:-1:-1;;6028:2:1;6024:15;;;6020:53;49976:23:0;;;6008:66:1;49929:12:0;;6090::1;;49976:23:0;;;;;;;;;;;;49966:34;;;;;;49959:41;;49870:138;;;:::o;50014:162::-;50107:4;50131:37;50150:5;50157:4;50163;50131:18;:37::i;:::-;50124:44;50014:162;-1:-1:-1;;;;50014:162:0:o;26350:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;26461:7:0;;23706:1;26510:23;;:47;;;;;26544:13;;26537:4;:20;26510:47;26506:886;;;26578:31;26612:17;;;:11;:17;;;;;;;;;26578:51;;;;;;;;;-1:-1:-1;;;;;26578:51:0;;;;-1:-1:-1;;;26578:51:0;;-1:-1:-1;;;;;26578:51:0;;;;;;;;-1:-1:-1;;;26578:51:0;;;;;;;;;;;;;;26648:729;;26698:14;;-1:-1:-1;;;;;26698:28:0;;26694:101;;26762:9;26350:1109;-1:-1:-1;;;26350:1109:0:o;26694:101::-;-1:-1:-1;;;27137:6:0;27182:17;;;;:11;:17;;;;;;;;;27170:29;;;;;;;;;-1:-1:-1;;;;;27170:29:0;;;;;-1:-1:-1;;;27170:29:0;;-1:-1:-1;;;;;27170:29:0;;;;;;;;-1:-1:-1;;;27170:29:0;;;;;;;;;;;;;27230:28;27226:109;;27298:9;26350:1109;-1:-1:-1;;;26350:1109:0:o;27226:109::-;27097:261;;;26559:833;26506:886;27420:31;;-1:-1:-1;;;27420:31:0;;;;;;;;;;;46265:191;46358:6;;;-1:-1:-1;;;;;46375:17:0;;;-1:-1:-1;;;;;;46375:17:0;;;;;;;46408:40;;46358:6;;;46375:17;46358:6;;46408:40;;46339:16;;46408:40;46328:128;46265:191;:::o;40060:667::-;40244:72;;-1:-1:-1;;;40244:72:0;;40223:4;;-1:-1:-1;;;;;40244:36:0;;;;;:72;;3075:10;;40295:4;;40301:7;;40310:5;;40244:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40244:72:0;;;;;;;;-1:-1:-1;;40244:72:0;;;;;;;;;;;;:::i;:::-;;;40240:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40478:13:0;;40474:235;;40524:40;;-1:-1:-1;;;40524:40:0;;;;;;;;;;;40474:235;40667:6;40661:13;40652:6;40648:2;40644:15;40637:38;40240:480;-1:-1:-1;;;;;;40363:55:0;-1:-1:-1;;;40363:55:0;;-1:-1:-1;40060:667:0;;;;;;:::o;52488:97::-;52541:13;52570:9;52563:16;;;;;:::i;557:723::-;613:13;834:10;830:53;;-1:-1:-1;;861:10:0;;;;;;;;;;;;-1:-1:-1;;;861:10:0;;;;;557:723::o;830:53::-;908:5;893:12;949:78;956:9;;949:78;;982:8;;;;:::i;:::-;;-1:-1:-1;1005:10:0;;-1:-1:-1;1013:2:0;1005:10;;:::i;:::-;;;949:78;;;1037:19;1069:6;-1:-1:-1;;;;;1059:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1059:17:0;;1037:39;;1087:154;1094:10;;1087:154;;1121:11;1131:1;1121:11;;:::i;:::-;;-1:-1:-1;1190:10:0;1198:2;1190:5;:10;:::i;:::-;1177:24;;:2;:24;:::i;:::-;1164:39;;1147:6;1154;1147:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1147:56:0;;;;;;;;-1:-1:-1;1218:11:0;1227:2;1218:11;;:::i;:::-;;;1087:154;;31864:163;31987:32;31993:2;31997:8;32007:5;32014:4;31987:5;:32::i;36846:2408::-;36926:35;36964:21;36977:7;36964:12;:21::i;:::-;37013:18;;36926:59;;-1:-1:-1;37044:290:0;;;;37078:22;3075:10;-1:-1:-1;;;;;37104:20:0;;;;:77;;-1:-1:-1;37145:36:0;37162:4;3075:10;29850:164;:::i;37145:36::-;37104:134;;;-1:-1:-1;3075:10:0;37202:20;37214:7;37202:11;:20::i;:::-;-1:-1:-1;;;;;37202:36:0;;37104:134;37078:161;;37261:17;37256:66;;37287:35;;-1:-1:-1;;;37287:35:0;;;;;;;;;;;37256:66;37063:271;37044:290;37462:35;37479:1;37483:7;37492:4;37462:8;:35::i;:::-;-1:-1:-1;;;;;37827:18:0;;;37793:31;37827:18;;;:12;:18;;;;;;;;37860:24;;-1:-1:-1;;;;;;;;;;37860:24:0;;;;;;;;;-1:-1:-1;;37860:24:0;;;;37899:29;;;;;37883:1;37899:29;;;;;;;;-1:-1:-1;;37899:29:0;;;;;;;;;;38061:20;;;:11;:20;;;;;;38096;;-1:-1:-1;;;;38164:15:0;38131:49;;;-1:-1:-1;;;38131:49:0;-1:-1:-1;;;;;;38131:49:0;;;;;;;;;;38195:22;-1:-1:-1;;;38195:22:0;;;38487:11;;;38547:24;;;;;38590:13;;37827:18;;38547:24;;38590:13;38586:384;;38800:13;;38785:11;:28;38781:174;;38838:20;;38907:28;;;;-1:-1:-1;;;;;38881:54:0;-1:-1:-1;;;38881:54:0;-1:-1:-1;;;;;;38881:54:0;;;-1:-1:-1;;;;;38838:20:0;;38881:54;;;;38781:174;-1:-1:-1;;38998:35:0;;39025:7;;-1:-1:-1;39021:1:0;;-1:-1:-1;;;;;;38998:35:0;;;-1:-1:-1;;;;;;;;;;;38998:35:0;39021:1;;38998:35;-1:-1:-1;;39221:12:0;:14;;;;;;-1:-1:-1;;36846:2408:0:o;43118:190::-;43243:4;43296;43267:25;43280:5;43287:4;43267:12;:25::i;:::-;:33;;43118:190;-1:-1:-1;;;;43118:190:0:o;32286:1775::-;32425:20;32448:13;-1:-1:-1;;;;;32476:16:0;;32472:48;;32501:19;;-1:-1:-1;;;32501:19:0;;;;;;;;;;;32472:48;32535:13;32531:44;;32557:18;;-1:-1:-1;;;32557:18:0;;;;;;;;;;;32531:44;-1:-1:-1;;;;;32926:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;32985:49:0;;-1:-1:-1;;;;;32926:44:0;;;;;;;32985:49;;;;-1:-1:-1;;32926:44:0;;;;;;32985:49;;;;;;;;;;;;;;;;33051:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;33101:66:0;;;;-1:-1:-1;;;33151:15:0;33101:66;;;;;;;;;;33051:25;33248:23;;;33292:4;:23;;;;-1:-1:-1;;;;;;33300:13:0;;4737:19;:23;;33300:15;33288:641;;;33336:314;33367:38;;33392:12;;-1:-1:-1;;;;;33367:38:0;;;33384:1;;-1:-1:-1;;;;;;;;;;;33367:38:0;33384:1;;33367:38;33433:69;33472:1;33476:2;33480:14;;;;;;33496:5;33433:30;:69::i;:::-;33428:174;;33538:40;;-1:-1:-1;;;33538:40:0;;;;;;;;;;;33428:174;33645:3;33629:12;:19;;33336:314;;33731:12;33714:13;;:29;33710:43;;33745:8;;;33710:43;33288:641;;;33794:120;33825:40;;33850:14;;;;;-1:-1:-1;;;;;33825:40:0;;;33842:1;;-1:-1:-1;;;;;;;;;;;33825:40:0;33842:1;;33825:40;33909:3;33893:12;:19;;33794:120;;33288:641;-1:-1:-1;33943:13:0;:28;33993:60;30578:369;43670:675;43753:7;43796:4;43753:7;43811:497;43835:5;:12;43831:1;:16;43811:497;;;43869:20;43892:5;43898:1;43892:8;;;;;;;;:::i;:::-;;;;;;;43869:31;;43935:12;43919;:28;43915:382;;44421:13;44471:15;;;44507:4;44500:15;;;44554:4;44538:21;;44047:57;;43915:382;;;44421:13;44471:15;;;44507:4;44500:15;;;44554:4;44538:21;;44224:57;;43915:382;-1:-1:-1;43849:3:0;;;;:::i;:::-;;;;43811:497;;;-1:-1:-1;44325:12:0;43670:675;-1:-1:-1;;;43670:675:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;149:2:1;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:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:156::-;894:20;;954:4;943:16;;933:27;;923:55;;974:1;971;964:12;989:186;1048:6;1101:2;1089:9;1080:7;1076:23;1072:32;1069:52;;;1117:1;1114;1107:12;1069:52;1140:29;1159:9;1140:29;:::i;1180:260::-;1248:6;1256;1309:2;1297:9;1288:7;1284:23;1280:32;1277:52;;;1325:1;1322;1315:12;1277:52;1348:29;1367:9;1348:29;:::i;:::-;1338:39;;1396:38;1430:2;1419:9;1415:18;1396:38;:::i;:::-;1386:48;;1180:260;;;;;:::o;1445:328::-;1522:6;1530;1538;1591:2;1579:9;1570:7;1566:23;1562:32;1559:52;;;1607:1;1604;1597:12;1559:52;1630:29;1649:9;1630:29;:::i;:::-;1620:39;;1678:38;1712:2;1701:9;1697:18;1678:38;:::i;:::-;1668:48;;1763:2;1752:9;1748:18;1735:32;1725:42;;1445:328;;;;;:::o;1778:666::-;1873:6;1881;1889;1897;1950:3;1938:9;1929:7;1925:23;1921:33;1918:53;;;1967:1;1964;1957:12;1918:53;1990:29;2009:9;1990:29;:::i;:::-;1980:39;;2038:38;2072:2;2061:9;2057:18;2038:38;:::i;:::-;2028:48;;2123:2;2112:9;2108:18;2095:32;2085:42;;2178:2;2167:9;2163:18;2150:32;-1:-1:-1;;;;;2197:6:1;2194:30;2191:50;;;2237:1;2234;2227:12;2191:50;2260:22;;2313:4;2305:13;;2301:27;-1:-1:-1;2291:55:1;;2342:1;2339;2332:12;2291:55;2365:73;2430:7;2425:2;2412:16;2407:2;2403;2399:11;2365:73;:::i;:::-;2355:83;;;1778:666;;;;;;;:::o;2449:347::-;2514:6;2522;2575:2;2563:9;2554:7;2550:23;2546:32;2543:52;;;2591:1;2588;2581:12;2543:52;2614:29;2633:9;2614:29;:::i;:::-;2604:39;;2693:2;2682:9;2678:18;2665:32;2740:5;2733:13;2726:21;2719:5;2716:32;2706:60;;2762:1;2759;2752:12;2706:60;2785:5;2775:15;;;2449:347;;;;;:::o;2801:254::-;2869:6;2877;2930:2;2918:9;2909:7;2905:23;2901:32;2898:52;;;2946:1;2943;2936:12;2898:52;2969:29;2988:9;2969:29;:::i;:::-;2959:39;3045:2;3030:18;;;;3017:32;;-1:-1:-1;;;2801:254:1:o;3060:180::-;3119:6;3172:2;3160:9;3151:7;3147:23;3143:32;3140:52;;;3188:1;3185;3178:12;3140:52;-1:-1:-1;3211:23:1;;3060:180;-1:-1:-1;3060:180:1:o;3245:245::-;3303:6;3356:2;3344:9;3335:7;3331:23;3327:32;3324:52;;;3372:1;3369;3362:12;3324:52;3411:9;3398:23;3430:30;3454:5;3430:30;:::i;3495:249::-;3564:6;3617:2;3605:9;3596:7;3592:23;3588:32;3585:52;;;3633:1;3630;3623:12;3585:52;3665:9;3659:16;3684:30;3708:5;3684:30;:::i;3749:450::-;3818:6;3871:2;3859:9;3850:7;3846:23;3842:32;3839:52;;;3887:1;3884;3877:12;3839:52;3927:9;3914:23;-1:-1:-1;;;;;3952:6:1;3949:30;3946:50;;;3992:1;3989;3982:12;3946:50;4015:22;;4068:4;4060:13;;4056:27;-1:-1:-1;4046:55:1;;4097:1;4094;4087:12;4046:55;4120:73;4185:7;4180:2;4167:16;4162:2;4158;4154:11;4120:73;:::i;4204:346::-;4271:6;4279;4332:2;4320:9;4311:7;4307:23;4303:32;4300:52;;;4348:1;4345;4338:12;4300:52;4387:9;4374:23;4437:6;4430:5;4426:18;4419:5;4416:29;4406:57;;4459:1;4456;4449:12;4740:182;4797:6;4850:2;4838:9;4829:7;4825:23;4821:32;4818:52;;;4866:1;4863;4856:12;4818:52;4889:27;4906:9;4889:27;:::i;4927:685::-;5020:6;5028;5036;5089:2;5077:9;5068:7;5064:23;5060:32;5057:52;;;5105:1;5102;5095:12;5057:52;5128:27;5145:9;5128:27;:::i;:::-;5118:37;;5206:2;5195:9;5191:18;5178:32;-1:-1:-1;;;;;5270:2:1;5262:6;5259:14;5256:34;;;5286:1;5283;5276:12;5256:34;5324:6;5313:9;5309:22;5299:32;;5369:7;5362:4;5358:2;5354:13;5350:27;5340:55;;5391:1;5388;5381:12;5340:55;5431:2;5418:16;5457:2;5449:6;5446:14;5443:34;;;5473:1;5470;5463:12;5443:34;5526:7;5521:2;5511:6;5508:1;5504:14;5500:2;5496:23;5492:32;5489:45;5486:65;;;5547:1;5544;5537:12;5486:65;5578:2;5574;5570:11;5560:21;;5600:6;5590:16;;;;;4927:685;;;;;:::o;5617:257::-;5658:3;5696:5;5690:12;5723:6;5718:3;5711:19;5739:63;5795:6;5788:4;5783:3;5779:14;5772:4;5765:5;5761:16;5739:63;:::i;:::-;5856:2;5835:15;-1:-1:-1;;5831:29:1;5822:39;;;;5863:4;5818:50;;5617:257;-1:-1:-1;;5617:257:1:o;6113:1527::-;6337:3;6375:6;6369:13;6401:4;6414:51;6458:6;6453:3;6448:2;6440:6;6436:15;6414:51;:::i;:::-;6528:13;;6487:16;;;;6550:55;6528:13;6487:16;6572:15;;;6550:55;:::i;:::-;6694:13;;6627:20;;;6667:1;;6754;6776:18;;;;6829;;;;6856:93;;6934:4;6924:8;6920:19;6908:31;;6856:93;6997:2;6987:8;6984:16;6964:18;6961:40;6958:167;;;-1:-1:-1;;;7024:33:1;;7080:4;7077:1;7070:15;7110:4;7031:3;7098:17;6958:167;7141:18;7168:110;;;;7292:1;7287:328;;;;7134:481;;7168:110;-1:-1:-1;;7203:24:1;;7189:39;;7248:20;;;;-1:-1:-1;7168:110:1;;7287:328;13636:1;13629:14;;;13673:4;13660:18;;7382:1;7396:169;7410:8;7407:1;7404:15;7396:169;;;7492:14;;7477:13;;;7470:37;7535:16;;;;7427:10;;7396:169;;;7400:3;;7596:8;7589:5;7585:20;7578:27;;7134:481;-1:-1:-1;7631:3:1;;6113:1527;-1:-1:-1;;;;;;;;;;;6113:1527:1:o;7853:488::-;-1:-1:-1;;;;;8122:15:1;;;8104:34;;8174:15;;8169:2;8154:18;;8147:43;8221:2;8206:18;;8199:34;;;8269:3;8264:2;8249:18;;8242:31;;;8047:4;;8290:45;;8315:19;;8307:6;8290:45;:::i;:::-;8282:53;7853:488;-1:-1:-1;;;;;;7853:488:1:o;8720:219::-;8869:2;8858:9;8851:21;8832:4;8889:44;8929:2;8918:9;8914:18;8906:6;8889:44;:::i;10816:356::-;11018:2;11000:21;;;11037:18;;;11030:30;11096:34;11091:2;11076:18;;11069:62;11163:2;11148:18;;10816:356::o;13689:224::-;13728:3;13756:6;13789:2;13786:1;13782:10;13819:2;13816:1;13812:10;13850:3;13846:2;13842:12;13837:3;13834:21;13831:47;;;13858:18;;:::i;:::-;13894:13;;13689:224;-1:-1:-1;;;;13689:224:1:o;13918:128::-;13958:3;13989:1;13985:6;13982:1;13979:13;13976:39;;;13995:18;;:::i;:::-;-1:-1:-1;14031:9:1;;13918:128::o;14051:204::-;14089:3;14125:4;14122:1;14118:12;14157:4;14154:1;14150:12;14192:3;14186:4;14182:14;14177:3;14174:23;14171:49;;;14200:18;;:::i;:::-;14236:13;;14051:204;-1:-1:-1;;;14051:204:1:o;14260:120::-;14300:1;14326;14316:35;;14331:18;;:::i;:::-;-1:-1:-1;14365:9:1;;14260:120::o;14385:168::-;14425:7;14491:1;14487;14483:6;14479:14;14476:1;14473:21;14468:1;14461:9;14454:17;14450:45;14447:71;;;14498:18;;:::i;:::-;-1:-1:-1;14538:9:1;;14385:168::o;14558:125::-;14598:4;14626:1;14623;14620:8;14617:34;;;14631:18;;:::i;:::-;-1:-1:-1;14668:9:1;;14558:125::o;14688:258::-;14760:1;14770:113;14784:6;14781:1;14778:13;14770:113;;;14860:11;;;14854:18;14841:11;;;14834:39;14806:2;14799:10;14770:113;;;14901:6;14898:1;14895:13;14892:48;;;-1:-1:-1;;14936:1:1;14918:16;;14911:27;14688:258::o;14951:380::-;15030:1;15026:12;;;;15073;;;15094:61;;15148:4;15140:6;15136:17;15126:27;;15094:61;15201:2;15193:6;15190:14;15170:18;15167:38;15164:161;;;15247:10;15242:3;15238:20;15235:1;15228:31;15282:4;15279:1;15272:15;15310:4;15307:1;15300:15;15164:161;;14951:380;;;:::o;15336:135::-;15375:3;-1:-1:-1;;15396:17:1;;15393:43;;;15416:18;;:::i;:::-;-1:-1:-1;15463:1:1;15452:13;;15336:135::o;15476:112::-;15508:1;15534;15524:35;;15539:18;;:::i;:::-;-1:-1:-1;15573:9:1;;15476:112::o;15593:127::-;15654:10;15649:3;15645:20;15642:1;15635:31;15685:4;15682:1;15675:15;15709:4;15706:1;15699:15;15725:127;15786:10;15781:3;15777:20;15774:1;15767:31;15817:4;15814:1;15807:15;15841:4;15838:1;15831:15;15857:127;15918:10;15913:3;15909:20;15906:1;15899:31;15949:4;15946:1;15939:15;15973:4;15970:1;15963:15;15989:127;16050:10;16045:3;16041:20;16038:1;16031:31;16081:4;16078:1;16071:15;16105:4;16102:1;16095:15;16121:131;-1:-1:-1;;;;;;16195:32:1;;16185:43;;16175:71;;16242:1;16239;16232:12
Swarm Source
ipfs://490a2998e45fa95c982292a98cc34c6fbfa67347bbaf81e5eec6711fcfaf2eec
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.