Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
990 MAFC
Holders
29
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 MAFCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
MetaApeFightClub
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-02-23 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol // OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol) pragma solidity >=0.7.0 <0.9.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 = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } return computedHash; } } // File: @openzeppelin/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: AdventureRoos.sol pragma solidity >=0.7.0 <0.9.0; contract MetaApeFightClub is ERC721, Ownable { using Strings for uint256; using Counters for Counters.Counter; Counters.Counter private supply; string private uriPrefix = ""; string public uriSuffix = ".json"; string public hiddenMetadataUri; uint256 public presaleCost = 0.1 ether; uint256 public publicSaleCost = 0.15 ether; uint256 public maxSupply = 10000; uint256 public maxMintAmountPerTx = 10; uint256 public maxWalletLimit = 100; bool public paused = true; bool public revealed = false; bool public presaleActive = false; bool public saleActive = false; mapping(address => uint256) private addressMintedBalance; bytes32 private merkleRoot = ""; constructor() ERC721("Meta Ape Fight Club", "MAFC") { setHiddenMetadataUri("https://ipfs.io/ipfs/QmaaffBrqefmNh1oGYuLqzFUT2AZhwvMJDDb2KPtdbST5w/hidden.json"); } modifier mintCompliance(uint256 _mintAmount) { require(!paused, "The contract is paused!"); require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!"); require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!"); _; } modifier selfMintCompliance(uint256 _mintAmount) { require(_mintAmount > 0, "Invalid mint amount!"); require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!"); _; } function cost() public view returns(uint256) { if(presaleActive) { return presaleCost; } return publicSaleCost; } function totalSupply() public view returns (uint256) { return supply.current(); } function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) { require(saleActive, "Sale is not Active" ); require(msg.value >= cost() * _mintAmount, "Insufficient funds!"); require(addressMintedBalance[msg.sender] + _mintAmount <= maxWalletLimit, "Max mint amount per wallet reached"); _mintLoop(msg.sender, _mintAmount); } function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner { _mintLoop(_receiver, _mintAmount); } function mintForSelf(uint256 _mintAmount) public selfMintCompliance(_mintAmount) onlyOwner { _mintLoop(msg.sender, _mintAmount); } function whitelistMint(uint _mintAmount, bytes32 leaf, bytes32[] memory proof) external payable mintCompliance(_mintAmount) { require(presaleActive, "Sale is not Active" ); // Verify that (msg.sender, amount) correspond to Merkle leaf require(keccak256(abi.encodePacked(msg.sender)) == leaf, "Sender and amount don't match Merkle leaf"); // Verify that (leaf, proof) matches the Merkle root require(verify(merkleRoot, leaf, proof), "Not a valid leaf in the Merkle tree"); require(msg.value >= cost() * _mintAmount, "Insufficient funds!"); require(addressMintedBalance[msg.sender] + _mintAmount <= maxWalletLimit, "Max mint amount per wallet reached"); _mintLoop(msg.sender, _mintAmount); } function verify(bytes32 _merkleRoot, bytes32 leaf, bytes32[] memory proof) internal pure returns (bool) { return MerkleProof.verify(proof, _merkleRoot, leaf); } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); if (revealed == false) { return hiddenMetadataUri; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix)) : ""; } function setRevealed(bool _state) public onlyOwner { revealed = _state; } function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner { merkleRoot = _merkleRoot; } function setPreCost(uint256 _cost) public onlyOwner { presaleCost = _cost; } function setPublicSaleCost(uint256 _cost) public onlyOwner { publicSaleCost = _cost; } function setPublicSale(bool _sale) public onlyOwner { saleActive = _sale; } function setPreSale(bool _sale) public onlyOwner { presaleActive = _sale; } function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner { maxMintAmountPerTx = _maxMintAmountPerTx; } function setMaxWalletLimit(uint256 _maxWalletLimit) public onlyOwner { maxWalletLimit = _maxWalletLimit; } function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner { hiddenMetadataUri = _hiddenMetadataUri; } function setUriPrefix(string memory _uriPrefix) public onlyOwner { uriPrefix = _uriPrefix; } function setUriSuffix(string memory _uriSuffix) public onlyOwner { uriSuffix = _uriSuffix; } function setPaused(bool _state) public onlyOwner { paused = _state; } function withdraw() public onlyOwner { require(address(this).balance > 0, "Balance is 0"); payable(owner()).transfer(address(this).balance); } function _mintLoop(address _receiver, uint256 _mintAmount) internal { addressMintedBalance[_receiver]+= _mintAmount; for (uint256 i = 0; i < _mintAmount; i++) { supply.increment(); _safeMint(_receiver, supply.current()); } } function _baseURI() internal view virtual override returns (string memory) { return uriPrefix; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintForSelf","outputs":[],"stateMutability":"nonpayable","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":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletLimit","type":"uint256"}],"name":"setMaxWalletLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setPreCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_sale","type":"bool"}],"name":"setPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_sale","type":"bool"}],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setPublicSaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32","name":"leaf","type":"bytes32"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040819052600060808190526200001b9160089162000222565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a9160099162000222565b5067016345785d8a0000600b55670214e8348c4f0000600c55612710600d55600a600e556064600f556010805463ffffffff1916600117905560006012553480156200009557600080fd5b50604080518082018252601381527f4d6574612041706520466967687420436c7562000000000000000000000000006020808301918252835180850190945260048452634d41464360e01b908401528151919291620000f79160009162000222565b5080516200010d90600190602084019062000222565b5050506200012a620001246200015460201b60201c565b62000158565b6200014e6040518060800160405280604f815260200162002ce8604f9139620001aa565b62000305565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620002095760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200021e90600a90602084019062000222565b5050565b8280546200023090620002c8565b90600052602060002090601f0160209004810192826200025457600085556200029f565b82601f106200026f57805160ff19168380011785556200029f565b828001600101855582156200029f579182015b828111156200029f57825182559160200191906001019062000282565b50620002ad929150620002b1565b5090565b5b80821115620002ad5760008155600101620002b2565b600181811c90821680620002dd57607f821691505b60208210811415620002ff57634e487b7160e01b600052602260045260246000fd5b50919050565b6129d380620003156000396000f3fe60806040526004361061027d5760003560e01c806368428a1b1161014f578063a22cb465116100c1578063cebbaf551161007a578063cebbaf5514610737578063d5abeb011461074a578063e0a8085314610760578063e985e9c514610780578063efbd73f4146107c9578063f2fde38b146107e957600080fd5b8063a22cb46514610682578063a45ba8e7146106a2578063b071401b146106b7578063b88d4fde146106d7578063c49b3d54146106f7578063c87b56dd1461071757600080fd5b80637ec4a659116101135780637ec4a659146105e65780638da5cb5b146106065780638dbb7c061461062457806394354fd01461064457806395d89b411461065a578063a0712d681461066f57600080fd5b806368428a1b1461055057806370a0823114610571578063715018a614610591578063728d41c9146105a65780637cb64759146105c657600080fd5b80633018f54f116101f357806353135ca0116101ac57806353135ca0146104ab5780635503a0e8146104cb5780635aca1bb6146104e05780635c975abb146105005780636352211e1461051a57806366a88d961461053a57600080fd5b80633018f54f146104015780633ccfd60b1461042157806342842e0e14610436578063453afb0f146104565780634fdd43cb1461046c578063518302271461048c57600080fd5b806313faede61161024557806313faede61461035357806316ba10e01461037657806316c38b3c1461039657806318160ddd146103b657806323b872dd146103cb5780632a23d07d146103eb57600080fd5b806301ffc9a71461028257806306fdde03146102b7578063081812fc146102d9578063095ea7b3146103115780630d95ccc914610333575b600080fd5b34801561028e57600080fd5b506102a261029d3660046123b1565b610809565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc61085b565b6040516102ae9190612646565b3480156102e557600080fd5b506102f96102f4366004612398565b6108ed565b6040516001600160a01b0390911681526020016102ae565b34801561031d57600080fd5b5061033161032c366004612353565b610987565b005b34801561033f57600080fd5b5061033161034e36600461237d565b610a9d565b34801561035f57600080fd5b50610368610ae3565b6040519081526020016102ae565b34801561038257600080fd5b506103316103913660046123eb565b610b05565b3480156103a257600080fd5b506103316103b136600461237d565b610b46565b3480156103c257600080fd5b50610368610b83565b3480156103d757600080fd5b506103316103e6366004612271565b610b93565b3480156103f757600080fd5b50610368600b5481565b34801561040d57600080fd5b5061033161041c366004612398565b610bc4565b34801561042d57600080fd5b50610331610bf3565b34801561044257600080fd5b50610331610451366004612271565b610c98565b34801561046257600080fd5b50610368600c5481565b34801561047857600080fd5b506103316104873660046123eb565b610cb3565b34801561049857600080fd5b506010546102a290610100900460ff1681565b3480156104b757600080fd5b506010546102a29062010000900460ff1681565b3480156104d757600080fd5b506102cc610cf0565b3480156104ec57600080fd5b506103316104fb36600461237d565b610d7e565b34801561050c57600080fd5b506010546102a29060ff1681565b34801561052657600080fd5b506102f9610535366004612398565b610dc6565b34801561054657600080fd5b50610368600f5481565b34801561055c57600080fd5b506010546102a2906301000000900460ff1681565b34801561057d57600080fd5b5061036861058c366004612223565b610e3d565b34801561059d57600080fd5b50610331610ec4565b3480156105b257600080fd5b506103316105c1366004612398565b610efa565b3480156105d257600080fd5b506103316105e1366004612398565b610f29565b3480156105f257600080fd5b506103316106013660046123eb565b610f58565b34801561061257600080fd5b506006546001600160a01b03166102f9565b34801561063057600080fd5b5061033161063f366004612398565b610f95565b34801561065057600080fd5b50610368600e5481565b34801561066657600080fd5b506102cc610fc4565b61033161067d366004612398565b610fd3565b34801561068e57600080fd5b5061033161069d366004612329565b611147565b3480156106ae57600080fd5b506102cc611152565b3480156106c357600080fd5b506103316106d2366004612398565b61115f565b3480156106e357600080fd5b506103316106f23660046122ad565b61118e565b34801561070357600080fd5b50610331610712366004612398565b6111c6565b34801561072357600080fd5b506102cc610732366004612398565b611246565b610331610745366004612457565b6113c5565b34801561075657600080fd5b50610368600d5481565b34801561076c57600080fd5b5061033161077b36600461237d565b611632565b34801561078c57600080fd5b506102a261079b36600461223e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107d557600080fd5b506103316107e4366004612434565b611676565b3480156107f557600080fd5b50610331610804366004612223565b611732565b60006001600160e01b031982166380ac58cd60e01b148061083a57506001600160e01b03198216635b5e139f60e01b145b8061085557506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461086a906128c5565b80601f0160208091040260200160405190810160405280929190818152602001828054610896906128c5565b80156108e35780601f106108b8576101008083540402835291602001916108e3565b820191906000526020600020905b8154815290600101906020018083116108c657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661096b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061099282610dc6565b9050806001600160a01b0316836001600160a01b03161415610a005760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610962565b336001600160a01b0382161480610a1c5750610a1c813361079b565b610a8e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610962565b610a9883836117ca565b505050565b6006546001600160a01b03163314610ac75760405162461bcd60e51b8152600401610962906126d9565b60108054911515620100000262ff000019909216919091179055565b60105460009062010000900460ff1615610afe5750600b5490565b50600c5490565b6006546001600160a01b03163314610b2f5760405162461bcd60e51b8152600401610962906126d9565b8051610b42906009906020840190612106565b5050565b6006546001600160a01b03163314610b705760405162461bcd60e51b8152600401610962906126d9565b6010805460ff1916911515919091179055565b6000610b8e60075490565b905090565b610b9d3382611838565b610bb95760405162461bcd60e51b815260040161096290612773565b610a9883838361192f565b6006546001600160a01b03163314610bee5760405162461bcd60e51b8152600401610962906126d9565b600b55565b6006546001600160a01b03163314610c1d5760405162461bcd60e51b8152600401610962906126d9565b60004711610c5c5760405162461bcd60e51b815260206004820152600c60248201526b042616c616e636520697320360a41b6044820152606401610962565b6006546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610c95573d6000803e3d6000fd5b50565b610a988383836040518060200160405280600081525061118e565b6006546001600160a01b03163314610cdd5760405162461bcd60e51b8152600401610962906126d9565b8051610b4290600a906020840190612106565b60098054610cfd906128c5565b80601f0160208091040260200160405190810160405280929190818152602001828054610d29906128c5565b8015610d765780601f10610d4b57610100808354040283529160200191610d76565b820191906000526020600020905b815481529060010190602001808311610d5957829003601f168201915b505050505081565b6006546001600160a01b03163314610da85760405162461bcd60e51b8152600401610962906126d9565b6010805491151563010000000263ff00000019909216919091179055565b6000818152600260205260408120546001600160a01b0316806108555760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610962565b60006001600160a01b038216610ea85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610962565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610eee5760405162461bcd60e51b8152600401610962906126d9565b610ef86000611acf565b565b6006546001600160a01b03163314610f245760405162461bcd60e51b8152600401610962906126d9565b600f55565b6006546001600160a01b03163314610f535760405162461bcd60e51b8152600401610962906126d9565b601255565b6006546001600160a01b03163314610f825760405162461bcd60e51b8152600401610962906126d9565b8051610b42906008906020840190612106565b6006546001600160a01b03163314610fbf5760405162461bcd60e51b8152600401610962906126d9565b600c55565b60606001805461086a906128c5565b601054819060ff1615610ff85760405162461bcd60e51b81526004016109629061270e565b60008111801561100a5750600e548111155b6110265760405162461bcd60e51b8152600401610962906126ab565b600d548161103360075490565b61103d9190612837565b111561105b5760405162461bcd60e51b815260040161096290612745565b6010546301000000900460ff166110a95760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742041637469766560701b6044820152606401610962565b816110b2610ae3565b6110bc9190612863565b3410156111015760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610962565b600f543360009081526011602052604090205461111f908490612837565b111561113d5760405162461bcd60e51b8152600401610962906127c4565b610b423383611b21565b610b42338383611b8c565b600a8054610cfd906128c5565b6006546001600160a01b031633146111895760405162461bcd60e51b8152600401610962906126d9565b600e55565b6111983383611838565b6111b45760405162461bcd60e51b815260040161096290612773565b6111c084848484611c5b565b50505050565b80600081116111e75760405162461bcd60e51b8152600401610962906126ab565b600d54816111f460075490565b6111fe9190612837565b111561121c5760405162461bcd60e51b815260040161096290612745565b6006546001600160a01b0316331461113d5760405162461bcd60e51b8152600401610962906126d9565b6000818152600260205260409020546060906001600160a01b03166112c55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610962565b601054610100900460ff1661136657600a80546112e1906128c5565b80601f016020809104026020016040519081016040528092919081815260200182805461130d906128c5565b801561135a5780601f1061132f5761010080835404028352916020019161135a565b820191906000526020600020905b81548152906001019060200180831161133d57829003601f168201915b50505050509050919050565b6000611370611c8e565b9050600081511161139057604051806020016040528060008152506113be565b8061139a84611c9d565b60096040516020016113ae93929190612545565b6040516020818303038152906040525b9392505050565b601054839060ff16156113ea5760405162461bcd60e51b81526004016109629061270e565b6000811180156113fc5750600e548111155b6114185760405162461bcd60e51b8152600401610962906126ab565b600d548161142560075490565b61142f9190612837565b111561144d5760405162461bcd60e51b815260040161096290612745565b60105462010000900460ff1661149a5760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742041637469766560701b6044820152606401610962565b6040516bffffffffffffffffffffffff193360601b1660208201528390603401604051602081830303815290604052805190602001201461152f5760405162461bcd60e51b815260206004820152602960248201527f53656e64657220616e6420616d6f756e7420646f6e2774206d61746368204d656044820152683935b632903632b0b360b91b6064820152608401610962565b61153c6012548484611d9b565b6115945760405162461bcd60e51b815260206004820152602360248201527f4e6f7420612076616c6964206c65616620696e20746865204d65726b6c65207460448201526272656560e81b6064820152608401610962565b8361159d610ae3565b6115a79190612863565b3410156115ec5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610962565b600f543360009081526011602052604090205461160a908690612837565b11156116285760405162461bcd60e51b8152600401610962906127c4565b6111c03385611b21565b6006546001600160a01b0316331461165c5760405162461bcd60e51b8152600401610962906126d9565b601080549115156101000261ff0019909216919091179055565b601054829060ff161561169b5760405162461bcd60e51b81526004016109629061270e565b6000811180156116ad5750600e548111155b6116c95760405162461bcd60e51b8152600401610962906126ab565b600d54816116d660075490565b6116e09190612837565b11156116fe5760405162461bcd60e51b815260040161096290612745565b6006546001600160a01b031633146117285760405162461bcd60e51b8152600401610962906126d9565b610a988284611b21565b6006546001600160a01b0316331461175c5760405162461bcd60e51b8152600401610962906126d9565b6001600160a01b0381166117c15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610962565b610c9581611acf565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906117ff82610dc6565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166118b15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610962565b60006118bc83610dc6565b9050806001600160a01b0316846001600160a01b031614806118f75750836001600160a01b03166118ec846108ed565b6001600160a01b0316145b8061192757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661194282610dc6565b6001600160a01b0316146119aa5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610962565b6001600160a01b038216611a0c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610962565b611a176000826117ca565b6001600160a01b0383166000908152600360205260408120805460019290611a40908490612882565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a6e908490612837565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526011602052604081208054839290611b49908490612837565b90915550600090505b81811015610a9857611b68600780546001019055565b611b7a83611b7560075490565b611da8565b80611b8481612900565b915050611b52565b816001600160a01b0316836001600160a01b03161415611bee5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610962565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611c6684848461192f565b611c7284848484611dc2565b6111c05760405162461bcd60e51b815260040161096290612659565b60606008805461086a906128c5565b606081611cc15750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ceb5780611cd581612900565b9150611ce49050600a8361284f565b9150611cc5565b60008167ffffffffffffffff811115611d0657611d06612971565b6040519080825280601f01601f191660200182016040528015611d30576020820181803683370190505b5090505b841561192757611d45600183612882565b9150611d52600a8661291b565b611d5d906030612837565b60f81b818381518110611d7257611d7261295b565b60200101906001600160f81b031916908160001a905350611d94600a8661284f565b9450611d34565b6000611927828585611ecf565b610b42828260405180602001604052806000815250611ee5565b60006001600160a01b0384163b15611ec457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e06903390899088908890600401612609565b602060405180830381600087803b158015611e2057600080fd5b505af1925050508015611e50575060408051601f3d908101601f19168201909252611e4d918101906123ce565b60015b611eaa573d808015611e7e576040519150601f19603f3d011682016040523d82523d6000602084013e611e83565b606091505b508051611ea25760405162461bcd60e51b815260040161096290612659565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611927565b506001949350505050565b600082611edc8584611f18565b14949350505050565b611eef8383611fc4565b611efc6000848484611dc2565b610a985760405162461bcd60e51b815260040161096290612659565b600081815b8451811015611fbc576000858281518110611f3a57611f3a61295b565b60200260200101519050808311611f7c576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611fa9565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611fb481612900565b915050611f1d565b509392505050565b6001600160a01b03821661201a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610962565b6000818152600260205260409020546001600160a01b03161561207f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610962565b6001600160a01b03821660009081526003602052604081208054600192906120a8908490612837565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612112906128c5565b90600052602060002090601f016020900481019282612134576000855561217a565b82601f1061214d57805160ff191683800117855561217a565b8280016001018555821561217a579182015b8281111561217a57825182559160200191906001019061215f565b5061218692915061218a565b5090565b5b80821115612186576000815560010161218b565b600067ffffffffffffffff8311156121b9576121b9612971565b6121cc601f8401601f1916602001612806565b90508281528383830111156121e057600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461220e57600080fd5b919050565b8035801515811461220e57600080fd5b60006020828403121561223557600080fd5b6113be826121f7565b6000806040838503121561225157600080fd5b61225a836121f7565b9150612268602084016121f7565b90509250929050565b60008060006060848603121561228657600080fd5b61228f846121f7565b925061229d602085016121f7565b9150604084013590509250925092565b600080600080608085870312156122c357600080fd5b6122cc856121f7565b93506122da602086016121f7565b925060408501359150606085013567ffffffffffffffff8111156122fd57600080fd5b8501601f8101871361230e57600080fd5b61231d8782356020840161219f565b91505092959194509250565b6000806040838503121561233c57600080fd5b612345836121f7565b915061226860208401612213565b6000806040838503121561236657600080fd5b61236f836121f7565b946020939093013593505050565b60006020828403121561238f57600080fd5b6113be82612213565b6000602082840312156123aa57600080fd5b5035919050565b6000602082840312156123c357600080fd5b81356113be81612987565b6000602082840312156123e057600080fd5b81516113be81612987565b6000602082840312156123fd57600080fd5b813567ffffffffffffffff81111561241457600080fd5b8201601f8101841361242557600080fd5b6119278482356020840161219f565b6000806040838503121561244757600080fd5b82359150612268602084016121f7565b60008060006060848603121561246c57600080fd5b833592506020808501359250604085013567ffffffffffffffff8082111561249357600080fd5b818701915087601f8301126124a757600080fd5b8135818111156124b9576124b9612971565b8060051b91506124ca848301612806565b8181528481019084860184860187018c10156124e557600080fd5b600095505b838610156125085780358352600195909501949186019186016124ea565b508096505050505050509250925092565b60008151808452612531816020860160208601612899565b601f01601f19169290920160200192915050565b6000845160206125588285838a01612899565b85519184019161256b8184848a01612899565b8554920191600090600181811c908083168061258857607f831692505b8583108114156125a657634e487b7160e01b85526022600452602485fd5b8080156125ba57600181146125cb576125f8565b60ff198516885283880195506125f8565b60008b81526020902060005b858110156125f05781548a8201529084019088016125d7565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061263c90830184612519565b9695505050505050565b6020815260006113be6020830184612519565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526017908201527f54686520636f6e74726163742069732070617573656421000000000000000000604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526022908201527f4d6178206d696e7420616d6f756e74207065722077616c6c6574207265616368604082015261195960f21b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561282f5761282f612971565b604052919050565b6000821982111561284a5761284a61292f565b500190565b60008261285e5761285e612945565b500490565b600081600019048311821515161561287d5761287d61292f565b500290565b6000828210156128945761289461292f565b500390565b60005b838110156128b457818101518382015260200161289c565b838111156111c05750506000910152565b600181811c908216806128d957607f821691505b602082108114156128fa57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129145761291461292f565b5060010190565b60008261292a5761292a612945565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c9557600080fdfea26469706673582212203976d3cda91001075c2a37bb7d157eab4299a5e781ba30b4969380232c20abe764736f6c6343000807003368747470733a2f2f697066732e696f2f697066732f516d6161666642727165666d4e68316f4759754c717a46555432415a6877764d4a444462324b50746462535435772f68696464656e2e6a736f6e
Deployed Bytecode
0x60806040526004361061027d5760003560e01c806368428a1b1161014f578063a22cb465116100c1578063cebbaf551161007a578063cebbaf5514610737578063d5abeb011461074a578063e0a8085314610760578063e985e9c514610780578063efbd73f4146107c9578063f2fde38b146107e957600080fd5b8063a22cb46514610682578063a45ba8e7146106a2578063b071401b146106b7578063b88d4fde146106d7578063c49b3d54146106f7578063c87b56dd1461071757600080fd5b80637ec4a659116101135780637ec4a659146105e65780638da5cb5b146106065780638dbb7c061461062457806394354fd01461064457806395d89b411461065a578063a0712d681461066f57600080fd5b806368428a1b1461055057806370a0823114610571578063715018a614610591578063728d41c9146105a65780637cb64759146105c657600080fd5b80633018f54f116101f357806353135ca0116101ac57806353135ca0146104ab5780635503a0e8146104cb5780635aca1bb6146104e05780635c975abb146105005780636352211e1461051a57806366a88d961461053a57600080fd5b80633018f54f146104015780633ccfd60b1461042157806342842e0e14610436578063453afb0f146104565780634fdd43cb1461046c578063518302271461048c57600080fd5b806313faede61161024557806313faede61461035357806316ba10e01461037657806316c38b3c1461039657806318160ddd146103b657806323b872dd146103cb5780632a23d07d146103eb57600080fd5b806301ffc9a71461028257806306fdde03146102b7578063081812fc146102d9578063095ea7b3146103115780630d95ccc914610333575b600080fd5b34801561028e57600080fd5b506102a261029d3660046123b1565b610809565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc61085b565b6040516102ae9190612646565b3480156102e557600080fd5b506102f96102f4366004612398565b6108ed565b6040516001600160a01b0390911681526020016102ae565b34801561031d57600080fd5b5061033161032c366004612353565b610987565b005b34801561033f57600080fd5b5061033161034e36600461237d565b610a9d565b34801561035f57600080fd5b50610368610ae3565b6040519081526020016102ae565b34801561038257600080fd5b506103316103913660046123eb565b610b05565b3480156103a257600080fd5b506103316103b136600461237d565b610b46565b3480156103c257600080fd5b50610368610b83565b3480156103d757600080fd5b506103316103e6366004612271565b610b93565b3480156103f757600080fd5b50610368600b5481565b34801561040d57600080fd5b5061033161041c366004612398565b610bc4565b34801561042d57600080fd5b50610331610bf3565b34801561044257600080fd5b50610331610451366004612271565b610c98565b34801561046257600080fd5b50610368600c5481565b34801561047857600080fd5b506103316104873660046123eb565b610cb3565b34801561049857600080fd5b506010546102a290610100900460ff1681565b3480156104b757600080fd5b506010546102a29062010000900460ff1681565b3480156104d757600080fd5b506102cc610cf0565b3480156104ec57600080fd5b506103316104fb36600461237d565b610d7e565b34801561050c57600080fd5b506010546102a29060ff1681565b34801561052657600080fd5b506102f9610535366004612398565b610dc6565b34801561054657600080fd5b50610368600f5481565b34801561055c57600080fd5b506010546102a2906301000000900460ff1681565b34801561057d57600080fd5b5061036861058c366004612223565b610e3d565b34801561059d57600080fd5b50610331610ec4565b3480156105b257600080fd5b506103316105c1366004612398565b610efa565b3480156105d257600080fd5b506103316105e1366004612398565b610f29565b3480156105f257600080fd5b506103316106013660046123eb565b610f58565b34801561061257600080fd5b506006546001600160a01b03166102f9565b34801561063057600080fd5b5061033161063f366004612398565b610f95565b34801561065057600080fd5b50610368600e5481565b34801561066657600080fd5b506102cc610fc4565b61033161067d366004612398565b610fd3565b34801561068e57600080fd5b5061033161069d366004612329565b611147565b3480156106ae57600080fd5b506102cc611152565b3480156106c357600080fd5b506103316106d2366004612398565b61115f565b3480156106e357600080fd5b506103316106f23660046122ad565b61118e565b34801561070357600080fd5b50610331610712366004612398565b6111c6565b34801561072357600080fd5b506102cc610732366004612398565b611246565b610331610745366004612457565b6113c5565b34801561075657600080fd5b50610368600d5481565b34801561076c57600080fd5b5061033161077b36600461237d565b611632565b34801561078c57600080fd5b506102a261079b36600461223e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107d557600080fd5b506103316107e4366004612434565b611676565b3480156107f557600080fd5b50610331610804366004612223565b611732565b60006001600160e01b031982166380ac58cd60e01b148061083a57506001600160e01b03198216635b5e139f60e01b145b8061085557506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461086a906128c5565b80601f0160208091040260200160405190810160405280929190818152602001828054610896906128c5565b80156108e35780601f106108b8576101008083540402835291602001916108e3565b820191906000526020600020905b8154815290600101906020018083116108c657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661096b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061099282610dc6565b9050806001600160a01b0316836001600160a01b03161415610a005760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610962565b336001600160a01b0382161480610a1c5750610a1c813361079b565b610a8e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610962565b610a9883836117ca565b505050565b6006546001600160a01b03163314610ac75760405162461bcd60e51b8152600401610962906126d9565b60108054911515620100000262ff000019909216919091179055565b60105460009062010000900460ff1615610afe5750600b5490565b50600c5490565b6006546001600160a01b03163314610b2f5760405162461bcd60e51b8152600401610962906126d9565b8051610b42906009906020840190612106565b5050565b6006546001600160a01b03163314610b705760405162461bcd60e51b8152600401610962906126d9565b6010805460ff1916911515919091179055565b6000610b8e60075490565b905090565b610b9d3382611838565b610bb95760405162461bcd60e51b815260040161096290612773565b610a9883838361192f565b6006546001600160a01b03163314610bee5760405162461bcd60e51b8152600401610962906126d9565b600b55565b6006546001600160a01b03163314610c1d5760405162461bcd60e51b8152600401610962906126d9565b60004711610c5c5760405162461bcd60e51b815260206004820152600c60248201526b042616c616e636520697320360a41b6044820152606401610962565b6006546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610c95573d6000803e3d6000fd5b50565b610a988383836040518060200160405280600081525061118e565b6006546001600160a01b03163314610cdd5760405162461bcd60e51b8152600401610962906126d9565b8051610b4290600a906020840190612106565b60098054610cfd906128c5565b80601f0160208091040260200160405190810160405280929190818152602001828054610d29906128c5565b8015610d765780601f10610d4b57610100808354040283529160200191610d76565b820191906000526020600020905b815481529060010190602001808311610d5957829003601f168201915b505050505081565b6006546001600160a01b03163314610da85760405162461bcd60e51b8152600401610962906126d9565b6010805491151563010000000263ff00000019909216919091179055565b6000818152600260205260408120546001600160a01b0316806108555760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610962565b60006001600160a01b038216610ea85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610962565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610eee5760405162461bcd60e51b8152600401610962906126d9565b610ef86000611acf565b565b6006546001600160a01b03163314610f245760405162461bcd60e51b8152600401610962906126d9565b600f55565b6006546001600160a01b03163314610f535760405162461bcd60e51b8152600401610962906126d9565b601255565b6006546001600160a01b03163314610f825760405162461bcd60e51b8152600401610962906126d9565b8051610b42906008906020840190612106565b6006546001600160a01b03163314610fbf5760405162461bcd60e51b8152600401610962906126d9565b600c55565b60606001805461086a906128c5565b601054819060ff1615610ff85760405162461bcd60e51b81526004016109629061270e565b60008111801561100a5750600e548111155b6110265760405162461bcd60e51b8152600401610962906126ab565b600d548161103360075490565b61103d9190612837565b111561105b5760405162461bcd60e51b815260040161096290612745565b6010546301000000900460ff166110a95760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742041637469766560701b6044820152606401610962565b816110b2610ae3565b6110bc9190612863565b3410156111015760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610962565b600f543360009081526011602052604090205461111f908490612837565b111561113d5760405162461bcd60e51b8152600401610962906127c4565b610b423383611b21565b610b42338383611b8c565b600a8054610cfd906128c5565b6006546001600160a01b031633146111895760405162461bcd60e51b8152600401610962906126d9565b600e55565b6111983383611838565b6111b45760405162461bcd60e51b815260040161096290612773565b6111c084848484611c5b565b50505050565b80600081116111e75760405162461bcd60e51b8152600401610962906126ab565b600d54816111f460075490565b6111fe9190612837565b111561121c5760405162461bcd60e51b815260040161096290612745565b6006546001600160a01b0316331461113d5760405162461bcd60e51b8152600401610962906126d9565b6000818152600260205260409020546060906001600160a01b03166112c55760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610962565b601054610100900460ff1661136657600a80546112e1906128c5565b80601f016020809104026020016040519081016040528092919081815260200182805461130d906128c5565b801561135a5780601f1061132f5761010080835404028352916020019161135a565b820191906000526020600020905b81548152906001019060200180831161133d57829003601f168201915b50505050509050919050565b6000611370611c8e565b9050600081511161139057604051806020016040528060008152506113be565b8061139a84611c9d565b60096040516020016113ae93929190612545565b6040516020818303038152906040525b9392505050565b601054839060ff16156113ea5760405162461bcd60e51b81526004016109629061270e565b6000811180156113fc5750600e548111155b6114185760405162461bcd60e51b8152600401610962906126ab565b600d548161142560075490565b61142f9190612837565b111561144d5760405162461bcd60e51b815260040161096290612745565b60105462010000900460ff1661149a5760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742041637469766560701b6044820152606401610962565b6040516bffffffffffffffffffffffff193360601b1660208201528390603401604051602081830303815290604052805190602001201461152f5760405162461bcd60e51b815260206004820152602960248201527f53656e64657220616e6420616d6f756e7420646f6e2774206d61746368204d656044820152683935b632903632b0b360b91b6064820152608401610962565b61153c6012548484611d9b565b6115945760405162461bcd60e51b815260206004820152602360248201527f4e6f7420612076616c6964206c65616620696e20746865204d65726b6c65207460448201526272656560e81b6064820152608401610962565b8361159d610ae3565b6115a79190612863565b3410156115ec5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610962565b600f543360009081526011602052604090205461160a908690612837565b11156116285760405162461bcd60e51b8152600401610962906127c4565b6111c03385611b21565b6006546001600160a01b0316331461165c5760405162461bcd60e51b8152600401610962906126d9565b601080549115156101000261ff0019909216919091179055565b601054829060ff161561169b5760405162461bcd60e51b81526004016109629061270e565b6000811180156116ad5750600e548111155b6116c95760405162461bcd60e51b8152600401610962906126ab565b600d54816116d660075490565b6116e09190612837565b11156116fe5760405162461bcd60e51b815260040161096290612745565b6006546001600160a01b031633146117285760405162461bcd60e51b8152600401610962906126d9565b610a988284611b21565b6006546001600160a01b0316331461175c5760405162461bcd60e51b8152600401610962906126d9565b6001600160a01b0381166117c15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610962565b610c9581611acf565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906117ff82610dc6565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166118b15760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610962565b60006118bc83610dc6565b9050806001600160a01b0316846001600160a01b031614806118f75750836001600160a01b03166118ec846108ed565b6001600160a01b0316145b8061192757506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661194282610dc6565b6001600160a01b0316146119aa5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610962565b6001600160a01b038216611a0c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610962565b611a176000826117ca565b6001600160a01b0383166000908152600360205260408120805460019290611a40908490612882565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a6e908490612837565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526011602052604081208054839290611b49908490612837565b90915550600090505b81811015610a9857611b68600780546001019055565b611b7a83611b7560075490565b611da8565b80611b8481612900565b915050611b52565b816001600160a01b0316836001600160a01b03161415611bee5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610962565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611c6684848461192f565b611c7284848484611dc2565b6111c05760405162461bcd60e51b815260040161096290612659565b60606008805461086a906128c5565b606081611cc15750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ceb5780611cd581612900565b9150611ce49050600a8361284f565b9150611cc5565b60008167ffffffffffffffff811115611d0657611d06612971565b6040519080825280601f01601f191660200182016040528015611d30576020820181803683370190505b5090505b841561192757611d45600183612882565b9150611d52600a8661291b565b611d5d906030612837565b60f81b818381518110611d7257611d7261295b565b60200101906001600160f81b031916908160001a905350611d94600a8661284f565b9450611d34565b6000611927828585611ecf565b610b42828260405180602001604052806000815250611ee5565b60006001600160a01b0384163b15611ec457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e06903390899088908890600401612609565b602060405180830381600087803b158015611e2057600080fd5b505af1925050508015611e50575060408051601f3d908101601f19168201909252611e4d918101906123ce565b60015b611eaa573d808015611e7e576040519150601f19603f3d011682016040523d82523d6000602084013e611e83565b606091505b508051611ea25760405162461bcd60e51b815260040161096290612659565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611927565b506001949350505050565b600082611edc8584611f18565b14949350505050565b611eef8383611fc4565b611efc6000848484611dc2565b610a985760405162461bcd60e51b815260040161096290612659565b600081815b8451811015611fbc576000858281518110611f3a57611f3a61295b565b60200260200101519050808311611f7c576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611fa9565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611fb481612900565b915050611f1d565b509392505050565b6001600160a01b03821661201a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610962565b6000818152600260205260409020546001600160a01b03161561207f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610962565b6001600160a01b03821660009081526003602052604081208054600192906120a8908490612837565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612112906128c5565b90600052602060002090601f016020900481019282612134576000855561217a565b82601f1061214d57805160ff191683800117855561217a565b8280016001018555821561217a579182015b8281111561217a57825182559160200191906001019061215f565b5061218692915061218a565b5090565b5b80821115612186576000815560010161218b565b600067ffffffffffffffff8311156121b9576121b9612971565b6121cc601f8401601f1916602001612806565b90508281528383830111156121e057600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461220e57600080fd5b919050565b8035801515811461220e57600080fd5b60006020828403121561223557600080fd5b6113be826121f7565b6000806040838503121561225157600080fd5b61225a836121f7565b9150612268602084016121f7565b90509250929050565b60008060006060848603121561228657600080fd5b61228f846121f7565b925061229d602085016121f7565b9150604084013590509250925092565b600080600080608085870312156122c357600080fd5b6122cc856121f7565b93506122da602086016121f7565b925060408501359150606085013567ffffffffffffffff8111156122fd57600080fd5b8501601f8101871361230e57600080fd5b61231d8782356020840161219f565b91505092959194509250565b6000806040838503121561233c57600080fd5b612345836121f7565b915061226860208401612213565b6000806040838503121561236657600080fd5b61236f836121f7565b946020939093013593505050565b60006020828403121561238f57600080fd5b6113be82612213565b6000602082840312156123aa57600080fd5b5035919050565b6000602082840312156123c357600080fd5b81356113be81612987565b6000602082840312156123e057600080fd5b81516113be81612987565b6000602082840312156123fd57600080fd5b813567ffffffffffffffff81111561241457600080fd5b8201601f8101841361242557600080fd5b6119278482356020840161219f565b6000806040838503121561244757600080fd5b82359150612268602084016121f7565b60008060006060848603121561246c57600080fd5b833592506020808501359250604085013567ffffffffffffffff8082111561249357600080fd5b818701915087601f8301126124a757600080fd5b8135818111156124b9576124b9612971565b8060051b91506124ca848301612806565b8181528481019084860184860187018c10156124e557600080fd5b600095505b838610156125085780358352600195909501949186019186016124ea565b508096505050505050509250925092565b60008151808452612531816020860160208601612899565b601f01601f19169290920160200192915050565b6000845160206125588285838a01612899565b85519184019161256b8184848a01612899565b8554920191600090600181811c908083168061258857607f831692505b8583108114156125a657634e487b7160e01b85526022600452602485fd5b8080156125ba57600181146125cb576125f8565b60ff198516885283880195506125f8565b60008b81526020902060005b858110156125f05781548a8201529084019088016125d7565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061263c90830184612519565b9695505050505050565b6020815260006113be6020830184612519565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526017908201527f54686520636f6e74726163742069732070617573656421000000000000000000604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526022908201527f4d6178206d696e7420616d6f756e74207065722077616c6c6574207265616368604082015261195960f21b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561282f5761282f612971565b604052919050565b6000821982111561284a5761284a61292f565b500190565b60008261285e5761285e612945565b500490565b600081600019048311821515161561287d5761287d61292f565b500290565b6000828210156128945761289461292f565b500390565b60005b838110156128b457818101518382015260200161289c565b838111156111c05750506000910152565b600181811c908216806128d957607f821691505b602082108114156128fa57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129145761291461292f565b5060010190565b60008261292a5761292a612945565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c9557600080fdfea26469706673582212203976d3cda91001075c2a37bb7d157eab4299a5e781ba30b4969380232c20abe764736f6c63430008070033
Deployed Bytecode Sourcemap
39923:5521:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27416:305;;;;;;;;;;-1:-1:-1;27416:305:0;;;;;:::i;:::-;;:::i;:::-;;;8763:14:1;;8756:22;8738:41;;8726:2;8711:18;27416:305:0;;;;;;;;28361:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29920:221::-;;;;;;;;;;-1:-1:-1;29920:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8061:32:1;;;8043:51;;8031:2;8016:18;29920:221:0;7897:203:1;29443:411:0;;;;;;;;;;-1:-1:-1;29443:411:0;;;;;:::i;:::-;;:::i;:::-;;44136:83;;;;;;;;;;-1:-1:-1;44136:83:0;;;;;:::i;:::-;;:::i;41313:150::-;;;;;;;;;;;;;:::i;:::-;;;18845:25:1;;;18833:2;18818:18;41313:150:0;18699:177:1;44725:100:0;;;;;;;;;;-1:-1:-1;44725:100:0;;;;;:::i;:::-;;:::i;44831:77::-;;;;;;;;;;-1:-1:-1;44831:77:0;;;;;:::i;:::-;;:::i;41469:89::-;;;;;;;;;;;;;:::i;30670:339::-;;;;;;;;;;-1:-1:-1;30670:339:0;;;;;:::i;:::-;;:::i;40195:38::-;;;;;;;;;;;;;;;;43859:84;;;;;;;;;;-1:-1:-1;43859:84:0;;;;;:::i;:::-;;:::i;44914:155::-;;;;;;;;;;;;;:::i;31080:185::-;;;;;;;;;;-1:-1:-1;31080:185:0;;;;;:::i;:::-;;:::i;40238:42::-;;;;;;;;;;;;;;;;44481:132;;;;;;;;;;-1:-1:-1;44481:132:0;;;;;:::i;:::-;;:::i;40437:28::-;;;;;;;;;;-1:-1:-1;40437:28:0;;;;;;;;;;;40470:33;;;;;;;;;;-1:-1:-1;40470:33:0;;;;;;;;;;;40117;;;;;;;;;;;;;:::i;44047:83::-;;;;;;;;;;-1:-1:-1;44047:83:0;;;;;:::i;:::-;;:::i;40407:25::-;;;;;;;;;;-1:-1:-1;40407:25:0;;;;;;;;28055:239;;;;;;;;;;-1:-1:-1;28055:239:0;;;;;:::i;:::-;;:::i;40365:35::-;;;;;;;;;;;;;;;;40508:30;;;;;;;;;;-1:-1:-1;40508:30:0;;;;;;;;;;;27785:208;;;;;;;;;;-1:-1:-1;27785:208:0;;;;;:::i;:::-;;:::i;8404:103::-;;;;;;;;;;;;;:::i;44361:114::-;;;;;;;;;;-1:-1:-1;44361:114:0;;;;;:::i;:::-;;:::i;43749:104::-;;;;;;;;;;-1:-1:-1;43749:104:0;;;;;:::i;:::-;;:::i;44619:100::-;;;;;;;;;;-1:-1:-1;44619:100:0;;;;;:::i;:::-;;:::i;7753:87::-;;;;;;;;;;-1:-1:-1;7826:6:0;;-1:-1:-1;;;;;7826:6:0;7753:87;;43947:94;;;;;;;;;;-1:-1:-1;43947:94:0;;;;;:::i;:::-;;:::i;40322:38::-;;;;;;;;;;;;;;;;28530:104;;;;;;;;;;;;;:::i;41564:364::-;;;;;;:::i;:::-;;:::i;30213:155::-;;;;;;;;;;-1:-1:-1;30213:155:0;;;;;:::i;:::-;;:::i;40155:31::-;;;;;;;;;;;;;:::i;44225:130::-;;;;;;;;;;-1:-1:-1;44225:130:0;;;;;:::i;:::-;;:::i;31336:328::-;;;;;;;;;;-1:-1:-1;31336:328:0;;;;;:::i;:::-;;:::i;42097:138::-;;;;;;;;;;-1:-1:-1;42097:138:0;;;;;:::i;:::-;;:::i;43162:494::-;;;;;;;;;;-1:-1:-1;43162:494:0;;;;;:::i;:::-;;:::i;42241:735::-;;;;;;:::i;:::-;;:::i;40285:32::-;;;;;;;;;;;;;;;;43662:81;;;;;;;;;;-1:-1:-1;43662:81:0;;;;;:::i;:::-;;:::i;30439:164::-;;;;;;;;;;-1:-1:-1;30439:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30560:25:0;;;30536:4;30560:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30439:164;41936:155;;;;;;;;;;-1:-1:-1;41936:155:0;;;;;:::i;:::-;;:::i;8662:201::-;;;;;;;;;;-1:-1:-1;8662:201:0;;;;;:::i;:::-;;:::i;27416:305::-;27518:4;-1:-1:-1;;;;;;27555:40:0;;-1:-1:-1;;;27555:40:0;;:105;;-1:-1:-1;;;;;;;27612:48:0;;-1:-1:-1;;;27612:48:0;27555:105;:158;;;-1:-1:-1;;;;;;;;;;20294:40:0;;;27677:36;27535:178;27416:305;-1:-1:-1;;27416:305:0:o;28361:100::-;28415:13;28448:5;28441:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28361:100;:::o;29920:221::-;29996:7;33263:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33263:16:0;30016:73;;;;-1:-1:-1;;;30016:73:0;;14625:2:1;30016:73:0;;;14607:21:1;14664:2;14644:18;;;14637:30;14703:34;14683:18;;;14676:62;-1:-1:-1;;;14754:18:1;;;14747:42;14806:19;;30016:73:0;;;;;;;;;-1:-1:-1;30109:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30109:24:0;;29920:221::o;29443:411::-;29524:13;29540:23;29555:7;29540:14;:23::i;:::-;29524:39;;29588:5;-1:-1:-1;;;;;29582:11:0;:2;-1:-1:-1;;;;;29582:11:0;;;29574:57;;;;-1:-1:-1;;;29574:57:0;;16577:2:1;29574:57:0;;;16559:21:1;16616:2;16596:18;;;16589:30;16655:34;16635:18;;;16628:62;-1:-1:-1;;;16706:18:1;;;16699:31;16747:19;;29574:57:0;16375:397:1;29574:57:0;6557:10;-1:-1:-1;;;;;29666:21:0;;;;:62;;-1:-1:-1;29691:37:0;29708:5;6557:10;30439:164;:::i;29691:37::-;29644:168;;;;-1:-1:-1;;;29644:168:0;;12677:2:1;29644:168:0;;;12659:21:1;12716:2;12696:18;;;12689:30;12755:34;12735:18;;;12728:62;12826:26;12806:18;;;12799:54;12870:19;;29644:168:0;12475:420:1;29644:168:0;29825:21;29834:2;29838:7;29825:8;:21::i;:::-;29513:341;29443:411;;:::o;44136:83::-;7826:6;;-1:-1:-1;;;;;7826:6:0;6557:10;7973:23;7965:68;;;;-1:-1:-1;;;7965:68:0;;;;;;;:::i;:::-;44192:13:::1;:21:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;44192:21:0;;::::1;::::0;;;::::1;::::0;;44136:83::o;41313:150::-;41370:13;;41349:7;;41370:13;;;;;41367:59;;;-1:-1:-1;41405:11:0;;;41313:150::o;41367:59::-;-1:-1:-1;41443:14:0;;;41313:150::o;44725:100::-;7826:6;;-1:-1:-1;;;;;7826:6:0;6557:10;7973:23;7965:68;;;;-1:-1:-1;;;7965:68:0;;;;;;;:::i;:::-;44797:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;44725:100:::0;:::o;44831:77::-;7826:6;;-1:-1:-1;;;;;7826:6:0;6557:10;7973:23;7965:68;;;;-1:-1:-1;;;7965:68:0;;;;;;;:::i;:::-;44887:6:::1;:15:::0;;-1:-1:-1;;44887:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;44831:77::o;41469:89::-;41513:7;41536:16;:6;3173:14;;3081:114;41536:16;41529:23;;41469:89;:::o;30670:339::-;30865:41;6557:10;30898:7;30865:18;:41::i;:::-;30857:103;;;;-1:-1:-1;;;30857:103:0;;;;;;;:::i;:::-;30973:28;30983:4;30989:2;30993:7;30973:9;:28::i;43859:84::-;7826:6;;-1:-1:-1;;;;;7826:6:0;6557:10;7973:23;7965:68;;;;-1:-1:-1;;;7965:68:0;;;;;;;:::i;:::-;43918:11:::1;:19:::0;43859:84::o;44914:155::-;7826:6;;-1:-1:-1;;;;;7826:6:0;6557:10;7973:23;7965:68;;;;-1:-1:-1;;;7965:68:0;;;;;;;:::i;:::-;44990:1:::1;44966:21;:25;44958:50;;;::::0;-1:-1:-1;;;44958:50:0;;14284:2:1;44958:50:0::1;::::0;::::1;14266:21:1::0;14323:2;14303:18;;;14296:30;-1:-1:-1;;;14342:18:1;;;14335:42;14394:18;;44958:50:0::1;14082:336:1::0;44958:50:0::1;7826:6:::0;;45015:48:::1;::::0;-1:-1:-1;;;;;7826:6:0;;;;45041:21:::1;45015:48:::0;::::1;;;::::0;::::1;::::0;;;45041:21;7826:6;45015:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;44914:155::o:0;31080:185::-;31218:39;31235:4;31241:2;31245:7;31218:39;;;;;;;;;;;;:16;:39::i;44481:132::-;7826:6;;-1:-1:-1;;;;;7826:6:0;6557:10;7973:23;7965:68;;;;-1:-1:-1;;;7965:68:0;;;;;;;:::i;:::-;44569:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;40117:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;44047:83::-;7826:6;;-1:-1:-1;;;;;7826:6:0;6557:10;7973:23;7965:68;;;;-1:-1:-1;;;7965:68:0;;;;;;;:::i;:::-;44106:10:::1;:18:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;44106:18:0;;::::1;::::0;;;::::1;::::0;;44047:83::o;28055:239::-;28127:7;28163:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28163:16:0;28198:19;28190:73;;;;-1:-1:-1;;;28190:73:0;;13513:2:1;28190:73:0;;;13495:21:1;13552:2;13532:18;;;13525:30;13591:34;13571:18;;;13564:62;-1:-1:-1;;;13642:18:1;;;13635:39;13691:19;;28190:73:0;13311:405:1;27785:208:0;27857:7;-1:-1:-1;;;;;27885:19:0;;27877:74;;;;-1:-1:-1;;;27877:74:0;;13102:2:1;27877:74:0;;;13084:21:1;13141:2;13121:18;;;13114:30;13180:34;13160:18;;;13153:62;-1:-1:-1;;;13231:18:1;;;13224:40;13281:19;;27877:74:0;12900:406:1;27877:74:0;-1:-1:-1;;;;;;27969:16:0;;;;;:9;:16;;;;;;;27785:208::o;8404:103::-;7826:6;;-1:-1:-1;;;;;7826:6:0;6557:10;7973:23;7965:68;;;;-1:-1:-1;;;7965:68:0;;;;;;;:::i;:::-;8469:30:::1;8496:1;8469:18;:30::i;:::-;8404:103::o:0;44361:114::-;7826:6;;-1:-1:-1;;;;;7826:6:0;6557:10;7973:23;7965:68;;;;-1:-1:-1;;;7965:68:0;;;;;;;:::i;:::-;44437:14:::1;:32:::0;44361:114::o;43749:104::-;7826:6;;-1:-1:-1;;;;;7826:6:0;6557:10;7973:23;7965:68;;;;-1:-1:-1;;;7965:68:0;;;;;;;:::i;:::-;43821:10:::1;:24:::0;43749:104::o;44619:100::-;7826:6;;-1:-1:-1;;;;;7826:6:0;6557:10;7973:23;7965:68;;;;-1:-1:-1;;;7965:68:0;;;;;;;:::i;:::-;44691:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;43947:94::-:0;7826:6;;-1:-1:-1;;;;;7826:6:0;6557:10;7973:23;7965:68;;;;-1:-1:-1;;;7965:68:0;;;;;;;:::i;:::-;44013:14:::1;:22:::0;43947:94::o;28530:104::-;28586:13;28619:7;28612:14;;;;;:::i;41564:364::-;40877:6;;41629:11;;40877:6;;40876:7;40868:43;;;;-1:-1:-1;;;40868:43:0;;;;;;;:::i;:::-;40940:1;40926:11;:15;:52;;;;;40960:18;;40945:11;:33;;40926:52;40918:85;;;;-1:-1:-1;;;40918:85:0;;;;;;;:::i;:::-;41052:9;;41037:11;41018:16;:6;3173:14;;3081:114;41018:16;:30;;;;:::i;:::-;:43;;41010:76;;;;-1:-1:-1;;;41010:76:0;;;;;;;:::i;:::-;41657:10:::1;::::0;;;::::1;;;41649:42;;;::::0;-1:-1:-1;;;41649:42:0;;11507:2:1;41649:42:0::1;::::0;::::1;11489:21:1::0;11546:2;11526:18;;;11519:30;-1:-1:-1;;;11565:18:1;;;11558:48;11623:18;;41649:42:0::1;11305:342:1::0;41649:42:0::1;41728:11;41719:6;:4;:6::i;:::-;:20;;;;:::i;:::-;41706:9;:33;;41698:65;;;::::0;-1:-1:-1;;;41698:65:0;;18149:2:1;41698:65:0::1;::::0;::::1;18131:21:1::0;18188:2;18168:18;;;18161:30;-1:-1:-1;;;18207:18:1;;;18200:49;18266:18;;41698:65:0::1;17947:343:1::0;41698:65:0::1;41828:14;::::0;41799:10:::1;41778:32;::::0;;;:20:::1;:32;::::0;;;;;:46:::1;::::0;41813:11;;41778:46:::1;:::i;:::-;:64;;41770:111;;;;-1:-1:-1::0;;;41770:111:0::1;;;;;;;:::i;:::-;41888:34;41898:10;41910:11;41888:9;:34::i;30213:155::-:0;30308:52;6557:10;30341:8;30351;30308:18;:52::i;40155:31::-;;;;;;;:::i;44225:130::-;7826:6;;-1:-1:-1;;;;;7826:6:0;6557:10;7973:23;7965:68;;;;-1:-1:-1;;;7965:68:0;;;;;;;:::i;:::-;44309:18:::1;:40:::0;44225:130::o;31336:328::-;31511:41;6557:10;31544:7;31511:18;:41::i;:::-;31503:103;;;;-1:-1:-1;;;31503:103:0;;;;;;;:::i;:::-;31617:39;31631:4;31637:2;31641:7;31650:5;31617:13;:39::i;:::-;31336:328;;;;:::o;42097:138::-;42165:11;41184:1;41170:11;:15;41162:48;;;;-1:-1:-1;;;41162:48:0;;;;;;;:::i;:::-;41259:9;;41244:11;41225:16;:6;3173:14;;3081:114;41225:16;:30;;;;:::i;:::-;:43;;41217:76;;;;-1:-1:-1;;;41217:76:0;;;;;;;:::i;:::-;7826:6;;-1:-1:-1;;;;;7826:6:0;6557:10;7973:23:::1;7965:68;;;;-1:-1:-1::0;;;7965:68:0::1;;;;;;;:::i;43162:494::-:0;33239:4;33263:16;;;:7;:16;;;;;;43261:13;;-1:-1:-1;;;;;33263:16:0;43286:98;;;;-1:-1:-1;;;43286:98:0;;16161:2:1;43286:98:0;;;16143:21:1;16200:2;16180:18;;;16173:30;16239:34;16219:18;;;16212:62;-1:-1:-1;;;16290:18:1;;;16283:45;16345:19;;43286:98:0;15959:411:1;43286:98:0;43397:8;;;;;;;43393:64;;43432:17;43425:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43162:494;;;:::o;43393:64::-;43465:28;43496:10;:8;:10::i;:::-;43465:41;;43551:1;43526:14;43520:28;:32;:130;;;;;;;;;;;;;;;;;43588:14;43604:19;:8;:17;:19::i;:::-;43625:9;43571:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43520:130;43513:137;43162:494;-1:-1:-1;;;43162:494:0:o;42241:735::-;40877:6;;42352:11;;40877:6;;40876:7;40868:43;;;;-1:-1:-1;;;40868:43:0;;;;;;;:::i;:::-;40940:1;40926:11;:15;:52;;;;;40960:18;;40945:11;:33;;40926:52;40918:85;;;;-1:-1:-1;;;40918:85:0;;;;;;;:::i;:::-;41052:9;;41037:11;41018:16;:6;3173:14;;3081:114;41018:16;:30;;;;:::i;:::-;:43;;41010:76;;;;-1:-1:-1;;;41010:76:0;;;;;;;:::i;:::-;42380:13:::1;::::0;;;::::1;;;42372:45;;;::::0;-1:-1:-1;;;42372:45:0;;11507:2:1;42372:45:0::1;::::0;::::1;11489:21:1::0;11546:2;11526:18;;;11519:30;-1:-1:-1;;;11565:18:1;;;11558:48;11623:18;;42372:45:0::1;11305:342:1::0;42372:45:0::1;42509:28;::::0;-1:-1:-1;;42526:10:0::1;6028:2:1::0;6024:15;6020:53;42509:28:0::1;::::0;::::1;6008:66:1::0;42542:4:0;;6090:12:1;;42509:28:0::1;;;;;;;;;;;;42499:39;;;;;;:47;42491:101;;;::::0;-1:-1:-1;;;42491:101:0;;12267:2:1;42491:101:0::1;::::0;::::1;12249:21:1::0;12306:2;12286:18;;;12279:30;12345:34;12325:18;;;12318:62;-1:-1:-1;;;12396:18:1;;;12389:39;12445:19;;42491:101:0::1;12065:405:1::0;42491:101:0::1;42668:31;42675:10;;42687:4;42693:5;42668:6;:31::i;:::-;42660:79;;;::::0;-1:-1:-1;;;42660:79:0;;18497:2:1;42660:79:0::1;::::0;::::1;18479:21:1::0;18536:2;18516:18;;;18509:30;18575:34;18555:18;;;18548:62;-1:-1:-1;;;18626:18:1;;;18619:33;18669:19;;42660:79:0::1;18295:399:1::0;42660:79:0::1;42776:11;42767:6;:4;:6::i;:::-;:20;;;;:::i;:::-;42754:9;:33;;42746:65;;;::::0;-1:-1:-1;;;42746:65:0;;18149:2:1;42746:65:0::1;::::0;::::1;18131:21:1::0;18188:2;18168:18;;;18161:30;-1:-1:-1;;;18207:18:1;;;18200:49;18266:18;;42746:65:0::1;17947:343:1::0;42746:65:0::1;42876:14;::::0;42847:10:::1;42826:32;::::0;;;:20:::1;:32;::::0;;;;;:46:::1;::::0;42861:11;;42826:46:::1;:::i;:::-;:64;;42818:111;;;;-1:-1:-1::0;;;42818:111:0::1;;;;;;;:::i;:::-;42936:34;42946:10;42958:11;42936:9;:34::i;43662:81::-:0;7826:6;;-1:-1:-1;;;;;7826:6:0;6557:10;7973:23;7965:68;;;;-1:-1:-1;;;7965:68:0;;;;;;;:::i;:::-;43720:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;43720:17:0;;::::1;::::0;;;::::1;::::0;;43662:81::o;41936:155::-;40877:6;;42022:11;;40877:6;;40876:7;40868:43;;;;-1:-1:-1;;;40868:43:0;;;;;;;:::i;:::-;40940:1;40926:11;:15;:52;;;;;40960:18;;40945:11;:33;;40926:52;40918:85;;;;-1:-1:-1;;;40918:85:0;;;;;;;:::i;:::-;41052:9;;41037:11;41018:16;:6;3173:14;;3081:114;41018:16;:30;;;;:::i;:::-;:43;;41010:76;;;;-1:-1:-1;;;41010:76:0;;;;;;;:::i;:::-;7826:6;;-1:-1:-1;;;;;7826:6:0;6557:10;7973:23:::1;7965:68;;;;-1:-1:-1::0;;;7965:68:0::1;;;;;;;:::i;:::-;42052:33:::2;42062:9;42073:11;42052:9;:33::i;8662:201::-:0;7826:6;;-1:-1:-1;;;;;7826:6:0;6557:10;7973:23;7965:68;;;;-1:-1:-1;;;7965:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;8751:22:0;::::1;8743:73;;;::::0;-1:-1:-1;;;8743:73:0;;9635:2:1;8743:73:0::1;::::0;::::1;9617:21:1::0;9674:2;9654:18;;;9647:30;9713:34;9693:18;;;9686:62;-1:-1:-1;;;9764:18:1;;;9757:36;9810:19;;8743:73:0::1;9433:402:1::0;8743:73:0::1;8827:28;8846:8;8827:18;:28::i;37156:174::-:0;37231:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;37231:29:0;-1:-1:-1;;;;;37231:29:0;;;;;;;;:24;;37285:23;37231:24;37285:14;:23::i;:::-;-1:-1:-1;;;;;37276:46:0;;;;;;;;;;;37156:174;;:::o;33468:348::-;33561:4;33263:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33263:16:0;33578:73;;;;-1:-1:-1;;;33578:73:0;;11854:2:1;33578:73:0;;;11836:21:1;11893:2;11873:18;;;11866:30;11932:34;11912:18;;;11905:62;-1:-1:-1;;;11983:18:1;;;11976:42;12035:19;;33578:73:0;11652:408:1;33578:73:0;33662:13;33678:23;33693:7;33678:14;:23::i;:::-;33662:39;;33731:5;-1:-1:-1;;;;;33720:16:0;:7;-1:-1:-1;;;;;33720:16:0;;:51;;;;33764:7;-1:-1:-1;;;;;33740:31:0;:20;33752:7;33740:11;:20::i;:::-;-1:-1:-1;;;;;33740:31:0;;33720:51;:87;;;-1:-1:-1;;;;;;30560:25:0;;;30536:4;30560:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;33775:32;33712:96;33468:348;-1:-1:-1;;;;33468:348:0:o;36460:578::-;36619:4;-1:-1:-1;;;;;36592:31:0;:23;36607:7;36592:14;:23::i;:::-;-1:-1:-1;;;;;36592:31:0;;36584:85;;;;-1:-1:-1;;;36584:85:0;;15751:2:1;36584:85:0;;;15733:21:1;15790:2;15770:18;;;15763:30;15829:34;15809:18;;;15802:62;-1:-1:-1;;;15880:18:1;;;15873:39;15929:19;;36584:85:0;15549:405:1;36584:85:0;-1:-1:-1;;;;;36688:16:0;;36680:65;;;;-1:-1:-1;;;36680:65:0;;10748:2:1;36680:65:0;;;10730:21:1;10787:2;10767:18;;;10760:30;10826:34;10806:18;;;10799:62;-1:-1:-1;;;10877:18:1;;;10870:34;10921:19;;36680:65:0;10546:400:1;36680:65:0;36862:29;36879:1;36883:7;36862:8;:29::i;:::-;-1:-1:-1;;;;;36904:15:0;;;;;;:9;:15;;;;;:20;;36923:1;;36904:15;:20;;36923:1;;36904:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36935:13:0;;;;;;:9;:13;;;;;:18;;36952:1;;36935:13;:18;;36952:1;;36935:18;:::i;:::-;;;;-1:-1:-1;;36964:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36964:21:0;-1:-1:-1;;;;;36964:21:0;;;;;;;;;37003:27;;36964:16;;37003:27;;;;;;;36460:578;;;:::o;9023:191::-;9116:6;;;-1:-1:-1;;;;;9133:17:0;;;-1:-1:-1;;;;;;9133:17:0;;;;;;;9166:40;;9116:6;;;9133:17;9116:6;;9166:40;;9097:16;;9166:40;9086:128;9023:191;:::o;45075:256::-;-1:-1:-1;;;;;45150:31:0;;;;;;:20;:31;;;;;:45;;45184:11;;45150:31;:45;;45184:11;;45150:45;:::i;:::-;;;;-1:-1:-1;45207:9:0;;-1:-1:-1;45202:124:0;45226:11;45222:1;:15;45202:124;;;45253:18;:6;3292:19;;3310:1;3292:19;;;3203:127;45253:18;45280:38;45290:9;45301:16;:6;3173:14;;3081:114;45301:16;45280:9;:38::i;:::-;45239:3;;;;:::i;:::-;;;;45202:124;;37472:315;37627:8;-1:-1:-1;;;;;37618:17:0;:5;-1:-1:-1;;;;;37618:17:0;;;37610:55;;;;-1:-1:-1;;;37610:55:0;;11153:2:1;37610:55:0;;;11135:21:1;11192:2;11172:18;;;11165:30;11231:27;11211:18;;;11204:55;11276:18;;37610:55:0;10951:349:1;37610:55:0;-1:-1:-1;;;;;37676:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;37676:46:0;;;;;;;;;;37738:41;;8738::1;;;37738::0;;8711:18:1;37738:41:0;;;;;;;37472:315;;;:::o;32546:::-;32703:28;32713:4;32719:2;32723:7;32703:9;:28::i;:::-;32750:48;32773:4;32779:2;32783:7;32792:5;32750:22;:48::i;:::-;32742:111;;;;-1:-1:-1;;;32742:111:0;;;;;;;:::i;45337:104::-;45397:13;45426:9;45419:16;;;;;:::i;4039:723::-;4095:13;4316:10;4312:53;;-1:-1:-1;;4343:10:0;;;;;;;;;;;;-1:-1:-1;;;4343:10:0;;;;;4039:723::o;4312:53::-;4390:5;4375:12;4431:78;4438:9;;4431:78;;4464:8;;;;:::i;:::-;;-1:-1:-1;4487:10:0;;-1:-1:-1;4495:2:0;4487:10;;:::i;:::-;;;4431:78;;;4519:19;4551:6;4541:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4541:17:0;;4519:39;;4569:154;4576:10;;4569:154;;4603:11;4613:1;4603:11;;:::i;:::-;;-1:-1:-1;4672:10:0;4680:2;4672:5;:10;:::i;:::-;4659:24;;:2;:24;:::i;:::-;4646:39;;4629:6;4636;4629:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;4629:56:0;;;;;;;;-1:-1:-1;4700:11:0;4709:2;4700:11;;:::i;:::-;;;4569:154;;42982:174;43080:4;43104:44;43123:5;43130:11;43143:4;43104:18;:44::i;34158:110::-;34234:26;34244:2;34248:7;34234:26;;;;;;;;;;;;:9;:26::i;38352:799::-;38507:4;-1:-1:-1;;;;;38528:13:0;;10364:20;10412:8;38524:620;;38564:72;;-1:-1:-1;;;38564:72:0;;-1:-1:-1;;;;;38564:36:0;;;;;:72;;6557:10;;38615:4;;38621:7;;38630:5;;38564:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38564:72:0;;;;;;;;-1:-1:-1;;38564:72:0;;;;;;;;;;;;:::i;:::-;;;38560:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38806:13:0;;38802:272;;38849:60;;-1:-1:-1;;;38849:60:0;;;;;;;:::i;38802:272::-;39024:6;39018:13;39009:6;39005:2;39001:15;38994:38;38560:529;-1:-1:-1;;;;;;38687:51:0;-1:-1:-1;;;38687:51:0;;-1:-1:-1;38680:58:0;;38524:620;-1:-1:-1;39128:4:0;38352:799;;;;;;:::o;949:190::-;1074:4;1127;1098:25;1111:5;1118:4;1098:12;:25::i;:::-;:33;;949:190;-1:-1:-1;;;;949:190:0:o;34495:321::-;34625:18;34631:2;34635:7;34625:5;:18::i;:::-;34676:54;34707:1;34711:2;34715:7;34724:5;34676:22;:54::i;:::-;34654:154;;;;-1:-1:-1;;;34654:154:0;;;;;;;:::i;1501:701::-;1584:7;1627:4;1584:7;1642:523;1666:5;:12;1662:1;:16;1642:523;;;1700:20;1723:5;1729:1;1723:8;;;;;;;;:::i;:::-;;;;;;;1700:31;;1766:12;1750;:28;1746:408;;1903:44;;;;;;6270:19:1;;;6305:12;;;6298:28;;;6342:12;;1903:44:0;;;;;;;;;;;;1893:55;;;;;;1878:70;;1746:408;;;2093:44;;;;;;6270:19:1;;;6305:12;;;6298:28;;;6342:12;;2093:44:0;;;;;;;;;;;;2083:55;;;;;;2068:70;;1746:408;-1:-1:-1;1680:3:0;;;;:::i;:::-;;;;1642:523;;;-1:-1:-1;2182:12:0;1501:701;-1:-1:-1;;;1501:701:0:o;35152:382::-;-1:-1:-1;;;;;35232:16:0;;35224:61;;;;-1:-1:-1;;;35224:61:0;;13923:2:1;35224:61:0;;;13905:21:1;;;13942:18;;;13935:30;14001:34;13981:18;;;13974:62;14053:18;;35224:61:0;13721:356:1;35224:61:0;33239:4;33263:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33263:16:0;:30;35296:58;;;;-1:-1:-1;;;35296:58:0;;10042:2:1;35296:58:0;;;10024:21:1;10081:2;10061:18;;;10054:30;10120;10100:18;;;10093:58;10168:18;;35296:58:0;9840:352:1;35296:58:0;-1:-1:-1;;;;;35425:13:0;;;;;;:9;:13;;;;;:18;;35442:1;;35425:13;:18;;35442:1;;35425:18;:::i;:::-;;;;-1:-1:-1;;35454:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35454:21:0;-1:-1:-1;;;;;35454:21:0;;;;;;;;35493:33;;35454:16;;;35493:33;;35454:16;;35493:33;35152:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:160::-;668:20;;724:13;;717:21;707:32;;697:60;;753:1;750;743:12;768:186;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;919:29;938:9;919:29;:::i;959:260::-;1027:6;1035;1088:2;1076:9;1067:7;1063:23;1059:32;1056:52;;;1104:1;1101;1094:12;1056:52;1127:29;1146:9;1127:29;:::i;:::-;1117:39;;1175:38;1209:2;1198:9;1194:18;1175:38;:::i;:::-;1165:48;;959:260;;;;;:::o;1224:328::-;1301:6;1309;1317;1370:2;1358:9;1349:7;1345:23;1341:32;1338:52;;;1386:1;1383;1376:12;1338:52;1409:29;1428:9;1409:29;:::i;:::-;1399:39;;1457:38;1491:2;1480:9;1476:18;1457:38;:::i;:::-;1447:48;;1542:2;1531:9;1527:18;1514:32;1504:42;;1224:328;;;;;:::o;1557:666::-;1652:6;1660;1668;1676;1729:3;1717:9;1708:7;1704:23;1700:33;1697:53;;;1746:1;1743;1736:12;1697:53;1769:29;1788:9;1769:29;:::i;:::-;1759:39;;1817:38;1851:2;1840:9;1836:18;1817:38;:::i;:::-;1807:48;;1902:2;1891:9;1887:18;1874:32;1864:42;;1957:2;1946:9;1942:18;1929:32;1984:18;1976:6;1973:30;1970:50;;;2016:1;2013;2006:12;1970:50;2039:22;;2092:4;2084:13;;2080:27;-1:-1:-1;2070:55:1;;2121:1;2118;2111:12;2070:55;2144:73;2209:7;2204:2;2191:16;2186:2;2182;2178:11;2144:73;:::i;:::-;2134:83;;;1557:666;;;;;;;:::o;2228:254::-;2293:6;2301;2354:2;2342:9;2333:7;2329:23;2325:32;2322:52;;;2370:1;2367;2360:12;2322:52;2393:29;2412:9;2393:29;:::i;:::-;2383:39;;2441:35;2472:2;2461:9;2457:18;2441:35;:::i;2487:254::-;2555:6;2563;2616:2;2604:9;2595:7;2591:23;2587:32;2584:52;;;2632:1;2629;2622:12;2584:52;2655:29;2674:9;2655:29;:::i;:::-;2645:39;2731:2;2716:18;;;;2703:32;;-1:-1:-1;;;2487:254:1:o;2746:180::-;2802:6;2855:2;2843:9;2834:7;2830:23;2826:32;2823:52;;;2871:1;2868;2861:12;2823:52;2894:26;2910:9;2894:26;:::i;2931:180::-;2990:6;3043:2;3031:9;3022:7;3018:23;3014:32;3011:52;;;3059:1;3056;3049:12;3011:52;-1:-1:-1;3082:23:1;;2931:180;-1:-1:-1;2931:180:1:o;3116:245::-;3174:6;3227:2;3215:9;3206:7;3202:23;3198:32;3195:52;;;3243:1;3240;3233:12;3195:52;3282:9;3269:23;3301:30;3325:5;3301:30;:::i;3366:249::-;3435:6;3488:2;3476:9;3467:7;3463:23;3459:32;3456:52;;;3504:1;3501;3494:12;3456:52;3536:9;3530:16;3555:30;3579:5;3555:30;:::i;3620:450::-;3689:6;3742:2;3730:9;3721:7;3717:23;3713:32;3710:52;;;3758:1;3755;3748:12;3710:52;3798:9;3785:23;3831:18;3823:6;3820:30;3817:50;;;3863:1;3860;3853:12;3817:50;3886:22;;3939:4;3931:13;;3927:27;-1:-1:-1;3917:55:1;;3968:1;3965;3958:12;3917:55;3991:73;4056:7;4051:2;4038:16;4033:2;4029;4025:11;3991:73;:::i;4260:254::-;4328:6;4336;4389:2;4377:9;4368:7;4364:23;4360:32;4357:52;;;4405:1;4402;4395:12;4357:52;4441:9;4428:23;4418:33;;4470:38;4504:2;4493:9;4489:18;4470:38;:::i;4519:1093::-;4621:6;4629;4637;4690:2;4678:9;4669:7;4665:23;4661:32;4658:52;;;4706:1;4703;4696:12;4658:52;4742:9;4729:23;4719:33;;4771:2;4820;4809:9;4805:18;4792:32;4782:42;;4875:2;4864:9;4860:18;4847:32;4898:18;4939:2;4931:6;4928:14;4925:34;;;4955:1;4952;4945:12;4925:34;4993:6;4982:9;4978:22;4968:32;;5038:7;5031:4;5027:2;5023:13;5019:27;5009:55;;5060:1;5057;5050:12;5009:55;5096:2;5083:16;5118:2;5114;5111:10;5108:36;;;5124:18;;:::i;:::-;5170:2;5167:1;5163:10;5153:20;;5193:28;5217:2;5213;5209:11;5193:28;:::i;:::-;5255:15;;;5286:12;;;;5318:11;;;5348;;;5344:20;;5341:33;-1:-1:-1;5338:53:1;;;5387:1;5384;5377:12;5338:53;5409:1;5400:10;;5419:163;5433:2;5430:1;5427:9;5419:163;;;5490:17;;5478:30;;5451:1;5444:9;;;;;5528:12;;;;5560;;5419:163;;;5423:3;5601:5;5591:15;;;;;;;;4519:1093;;;;;:::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;6365:1527::-;6589:3;6627:6;6621:13;6653:4;6666:51;6710:6;6705:3;6700:2;6692:6;6688:15;6666:51;:::i;:::-;6780:13;;6739:16;;;;6802:55;6780:13;6739:16;6824:15;;;6802:55;:::i;:::-;6946:13;;6879:20;;;6919:1;;7006;7028:18;;;;7081;;;;7108:93;;7186:4;7176:8;7172:19;7160:31;;7108:93;7249:2;7239:8;7236:16;7216:18;7213:40;7210:167;;;-1:-1:-1;;;7276:33:1;;7332:4;7329:1;7322:15;7362:4;7283:3;7350:17;7210:167;7393:18;7420:110;;;;7544:1;7539:328;;;;7386:481;;7420:110;-1:-1:-1;;7455:24:1;;7441:39;;7500:20;;;;-1:-1:-1;7420:110:1;;7539:328;19234:1;19227:14;;;19271:4;19258:18;;7634:1;7648:169;7662:8;7659:1;7656:15;7648:169;;;7744:14;;7729:13;;;7722:37;7787:16;;;;7679:10;;7648:169;;;7652:3;;7848:8;7841:5;7837:20;7830:27;;7386:481;-1:-1:-1;7883:3:1;;6365:1527;-1:-1:-1;;;;;;;;;;;6365:1527:1:o;8105:488::-;-1:-1:-1;;;;;8374:15:1;;;8356:34;;8426:15;;8421:2;8406:18;;8399:43;8473:2;8458:18;;8451:34;;;8521:3;8516:2;8501:18;;8494:31;;;8299:4;;8542:45;;8567:19;;8559:6;8542:45;:::i;:::-;8534:53;8105:488;-1:-1:-1;;;;;;8105:488:1:o;8790:219::-;8939:2;8928:9;8921:21;8902:4;8959:44;8999:2;8988:9;8984:18;8976:6;8959:44;:::i;9014:414::-;9216:2;9198:21;;;9255:2;9235:18;;;9228:30;9294:34;9289:2;9274:18;;9267:62;-1:-1:-1;;;9360:2:1;9345:18;;9338:48;9418:3;9403:19;;9014:414::o;10197:344::-;10399:2;10381:21;;;10438:2;10418:18;;;10411:30;-1:-1:-1;;;10472:2:1;10457:18;;10450:50;10532:2;10517:18;;10197:344::o;14836:356::-;15038:2;15020:21;;;15057:18;;;15050:30;15116:34;15111:2;15096:18;;15089:62;15183:2;15168:18;;14836:356::o;15197:347::-;15399:2;15381:21;;;15438:2;15418:18;;;15411:30;15477:25;15472:2;15457:18;;15450:53;15535:2;15520:18;;15197:347::o;16777:344::-;16979:2;16961:21;;;17018:2;16998:18;;;16991:30;-1:-1:-1;;;17052:2:1;17037:18;;17030:50;17112:2;17097:18;;16777:344::o;17126:413::-;17328:2;17310:21;;;17367:2;17347:18;;;17340:30;17406:34;17401:2;17386:18;;17379:62;-1:-1:-1;;;17472:2:1;17457:18;;17450:47;17529:3;17514:19;;17126:413::o;17544:398::-;17746:2;17728:21;;;17785:2;17765:18;;;17758:30;17824:34;17819:2;17804:18;;17797:62;-1:-1:-1;;;17890:2:1;17875:18;;17868:32;17932:3;17917:19;;17544:398::o;18881:275::-;18952:2;18946:9;19017:2;18998:13;;-1:-1:-1;;18994:27:1;18982:40;;19052:18;19037:34;;19073:22;;;19034:62;19031:88;;;19099:18;;:::i;:::-;19135:2;19128:22;18881:275;;-1:-1:-1;18881:275:1:o;19287:128::-;19327:3;19358:1;19354:6;19351:1;19348:13;19345:39;;;19364:18;;:::i;:::-;-1:-1:-1;19400:9:1;;19287:128::o;19420:120::-;19460:1;19486;19476:35;;19491:18;;:::i;:::-;-1:-1:-1;19525:9:1;;19420:120::o;19545:168::-;19585:7;19651:1;19647;19643:6;19639:14;19636:1;19633:21;19628:1;19621:9;19614:17;19610:45;19607:71;;;19658:18;;:::i;:::-;-1:-1:-1;19698:9:1;;19545:168::o;19718:125::-;19758:4;19786:1;19783;19780:8;19777:34;;;19791:18;;:::i;:::-;-1:-1:-1;19828:9:1;;19718:125::o;19848:258::-;19920:1;19930:113;19944:6;19941:1;19938:13;19930:113;;;20020:11;;;20014:18;20001:11;;;19994:39;19966:2;19959:10;19930:113;;;20061:6;20058:1;20055:13;20052:48;;;-1:-1:-1;;20096:1:1;20078:16;;20071:27;19848:258::o;20111:380::-;20190:1;20186:12;;;;20233;;;20254:61;;20308:4;20300:6;20296:17;20286:27;;20254:61;20361:2;20353:6;20350:14;20330:18;20327:38;20324:161;;;20407:10;20402:3;20398:20;20395:1;20388:31;20442:4;20439:1;20432:15;20470:4;20467:1;20460:15;20324:161;;20111:380;;;:::o;20496:135::-;20535:3;-1:-1:-1;;20556:17:1;;20553:43;;;20576:18;;:::i;:::-;-1:-1:-1;20623:1:1;20612:13;;20496:135::o;20636:112::-;20668:1;20694;20684:35;;20699:18;;:::i;:::-;-1:-1:-1;20733:9:1;;20636:112::o;20753:127::-;20814:10;20809:3;20805:20;20802:1;20795:31;20845:4;20842:1;20835:15;20869:4;20866:1;20859:15;20885:127;20946:10;20941:3;20937:20;20934:1;20927:31;20977:4;20974:1;20967:15;21001:4;20998:1;20991:15;21017:127;21078:10;21073:3;21069:20;21066:1;21059:31;21109:4;21106:1;21099:15;21133:4;21130:1;21123:15;21149:127;21210:10;21205:3;21201:20;21198:1;21191:31;21241:4;21238:1;21231:15;21265:4;21262:1;21255:15;21281:131;-1:-1:-1;;;;;;21355:32:1;;21345:43;;21335:71;;21402:1;21399;21392:12
Swarm Source
ipfs://3976d3cda91001075c2a37bb7d157eab4299a5e781ba30b4969380232c20abe7
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.