ERC-721
Overview
Max Total Supply
888 DH
Holders
82
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
48 DHLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DegenHeads
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-30 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.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 (last updated v4.6.0) (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`. * * 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; /** * @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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); } // 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: erc721a/contracts/ERC721A.sol // Creator: Chiru Labs pragma solidity ^0.8.4; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerQueryForNonexistentToken(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return _ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = to; currSlot.startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev This is equivalent to _burn(tokenId, false) */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { TokenOwnership memory prevOwnership = _ownershipOf(tokenId); address from = prevOwnership.addr; if (approvalCheck) { bool isApprovedOrOwner = (_msgSender() == from || isApprovedForAll(from, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, from); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { AddressData storage addressData = _addressData[from]; addressData.balance -= 1; addressData.numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. TokenOwnership storage currSlot = _ownerships[tokenId]; currSlot.addr = from; currSlot.startTimestamp = uint64(block.timestamp); currSlot.burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; TokenOwnership storage nextSlot = _ownerships[nextTokenId]; if (nextSlot.addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId != _currentIndex) { nextSlot.addr = from; nextSlot.startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } // File: contracts/degenheads.sol pragma solidity >=0.8.9 <0.9.0; contract DegenHeads is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; string public uriPrefix = ''; string public uriSuffix = '.json'; uint256 public cost; uint256 public maxSupply; uint256 public maxMintAmountPerTx; bool public paused = false; constructor( string memory _tokenName, string memory _tokenSymbol, uint256 _cost, uint256 _maxSupply, uint256 _maxMintAmountPerTx ) ERC721A(_tokenName, _tokenSymbol) { cost = _cost; maxSupply = _maxSupply; maxMintAmountPerTx = _maxMintAmountPerTx; } modifier mintCompliance(uint256 _mintAmount) { require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!'); require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!'); _; } modifier mintPriceCompliance(uint256 _mintAmount) { require(msg.value >= cost * _mintAmount, 'Insufficient funds!'); _; } function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) { require(!paused, 'The contract is paused!'); _safeMint(_msgSender(), _mintAmount); } function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner { _safeMint(_receiver, _mintAmount); } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount); uint256 currentTokenId = _startTokenId(); uint256 ownedTokenIndex = 0; address latestOwnerAddress; while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) { TokenOwnership memory ownership = _ownerships[currentTokenId]; if (!ownership.burned && ownership.addr != address(0)) { latestOwnerAddress = ownership.addr; } if (latestOwnerAddress == _owner) { ownedTokenIds[ownedTokenIndex] = currentTokenId; ownedTokenIndex++; } currentTokenId++; } return ownedTokenIds; } function _startTokenId() internal view virtual override returns (uint256) { return 1; } function tokenURI(uint256 _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), 'ERC721Metadata: URI query for nonexistent token'); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix)) : ''; } function setCost(uint256 _cost) public onlyOwner { cost = _cost; } function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner { maxMintAmountPerTx = _maxMintAmountPerTx; } 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 nonReentrant { // This will transfer the remaining contract balance to the owner. // Do not remove this otherwise you will not be able to withdraw the funds. // ============================================================================= (bool os, ) = payable(owner()).call{value: address(this).balance}(''); require(os); // ============================================================================= } function _baseURI() internal view virtual override returns (string memory) { return uriPrefix; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"uint256","name":"_cost","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","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":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405260405180602001604052806000815250600a90805190602001906200002b92919062000233565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600b90805190602001906200007992919062000233565b506000600f60006101000a81548160ff021916908315150217905550348015620000a257600080fd5b5060405162004365380380620043658339818101604052810190620000c89190620004bb565b84848160029080519060200190620000e292919062000233565b508060039080519060200190620000fb92919062000233565b506200010c6200015c60201b60201c565b600081905550505062000134620001286200016560201b60201c565b6200016d60201b60201c565b600160098190555082600c8190555081600d8190555080600e819055505050505050620005e5565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024190620005b0565b90600052602060002090601f016020900481019282620002655760008555620002b1565b82601f106200028057805160ff1916838001178555620002b1565b82800160010185558215620002b1579182015b82811115620002b057825182559160200191906001019062000293565b5b509050620002c09190620002c4565b5090565b5b80821115620002df576000816000905550600101620002c5565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200034c8262000301565b810181811067ffffffffffffffff821117156200036e576200036d62000312565b5b80604052505050565b600062000383620002e3565b905062000391828262000341565b919050565b600067ffffffffffffffff821115620003b457620003b362000312565b5b620003bf8262000301565b9050602081019050919050565b60005b83811015620003ec578082015181840152602081019050620003cf565b83811115620003fc576000848401525b50505050565b600062000419620004138462000396565b62000377565b905082815260208101848484011115620004385762000437620002fc565b5b62000445848285620003cc565b509392505050565b600082601f830112620004655762000464620002f7565b5b81516200047784826020860162000402565b91505092915050565b6000819050919050565b620004958162000480565b8114620004a157600080fd5b50565b600081519050620004b5816200048a565b92915050565b600080600080600060a08688031215620004da57620004d9620002ed565b5b600086015167ffffffffffffffff811115620004fb57620004fa620002f2565b5b62000509888289016200044d565b955050602086015167ffffffffffffffff8111156200052d576200052c620002f2565b5b6200053b888289016200044d565b94505060406200054e88828901620004a4565b93505060606200056188828901620004a4565b92505060806200057488828901620004a4565b9150509295509295909350565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005c957607f821691505b602082108103620005df57620005de62000581565b5b50919050565b613d7080620005f56000396000f3fe6080604052600436106101e35760003560e01c80636352211e11610102578063a22cb46511610095578063d5abeb0111610064578063d5abeb01146106bd578063e985e9c5146106e8578063efbd73f414610725578063f2fde38b1461074e576101e3565b8063a22cb46514610605578063b071401b1461062e578063b88d4fde14610657578063c87b56dd14610680576101e3565b80638da5cb5b116100d15780638da5cb5b1461056857806394354fd01461059357806395d89b41146105be578063a0712d68146105e9576101e3565b80636352211e146104ae57806370a08231146104eb578063715018a6146105285780637ec4a6591461053f576101e3565b806323b872dd1161017a57806344a0d68a1161014957806344a0d68a146104045780635503a0e81461042d5780635c975abb1461045857806362b99ad414610483576101e3565b806323b872dd1461035e5780633ccfd60b1461038757806342842e0e1461039e578063438b6300146103c7576101e3565b806313faede6116101b657806313faede6146102b657806316ba10e0146102e157806316c38b3c1461030a57806318160ddd14610333576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612d5b565b610777565b60405161021c9190612da3565b60405180910390f35b34801561023157600080fd5b5061023a610859565b6040516102479190612e57565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612eaf565b6108eb565b6040516102849190612f1d565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612f64565b610967565b005b3480156102c257600080fd5b506102cb610a71565b6040516102d89190612fb3565b60405180910390f35b3480156102ed57600080fd5b5061030860048036038101906103039190613103565b610a77565b005b34801561031657600080fd5b50610331600480360381019061032c9190613178565b610b0d565b005b34801561033f57600080fd5b50610348610ba6565b6040516103559190612fb3565b60405180910390f35b34801561036a57600080fd5b50610385600480360381019061038091906131a5565b610bbd565b005b34801561039357600080fd5b5061039c610bcd565b005b3480156103aa57600080fd5b506103c560048036038101906103c091906131a5565b610d1e565b005b3480156103d357600080fd5b506103ee60048036038101906103e991906131f8565b610d3e565b6040516103fb91906132e3565b60405180910390f35b34801561041057600080fd5b5061042b60048036038101906104269190612eaf565b610f58565b005b34801561043957600080fd5b50610442610fde565b60405161044f9190612e57565b60405180910390f35b34801561046457600080fd5b5061046d61106c565b60405161047a9190612da3565b60405180910390f35b34801561048f57600080fd5b5061049861107f565b6040516104a59190612e57565b60405180910390f35b3480156104ba57600080fd5b506104d560048036038101906104d09190612eaf565b61110d565b6040516104e29190612f1d565b60405180910390f35b3480156104f757600080fd5b50610512600480360381019061050d91906131f8565b611123565b60405161051f9190612fb3565b60405180910390f35b34801561053457600080fd5b5061053d6111f2565b005b34801561054b57600080fd5b5061056660048036038101906105619190613103565b61127a565b005b34801561057457600080fd5b5061057d611310565b60405161058a9190612f1d565b60405180910390f35b34801561059f57600080fd5b506105a861133a565b6040516105b59190612fb3565b60405180910390f35b3480156105ca57600080fd5b506105d3611340565b6040516105e09190612e57565b60405180910390f35b61060360048036038101906105fe9190612eaf565b6113d2565b005b34801561061157600080fd5b5061062c60048036038101906106279190613305565b611532565b005b34801561063a57600080fd5b5061065560048036038101906106509190612eaf565b6116a9565b005b34801561066357600080fd5b5061067e600480360381019061067991906133e6565b61172f565b005b34801561068c57600080fd5b506106a760048036038101906106a29190612eaf565b6117ab565b6040516106b49190612e57565b60405180910390f35b3480156106c957600080fd5b506106d2611855565b6040516106df9190612fb3565b60405180910390f35b3480156106f457600080fd5b5061070f600480360381019061070a9190613469565b61185b565b60405161071c9190612da3565b60405180910390f35b34801561073157600080fd5b5061074c600480360381019061074791906134a9565b6118ef565b005b34801561075a57600080fd5b50610775600480360381019061077091906131f8565b611a23565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061084257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610852575061085182611b1a565b5b9050919050565b60606002805461086890613518565b80601f016020809104026020016040519081016040528092919081815260200182805461089490613518565b80156108e15780601f106108b6576101008083540402835291602001916108e1565b820191906000526020600020905b8154815290600101906020018083116108c457829003601f168201915b5050505050905090565b60006108f682611b84565b61092c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109728261110d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109d9576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109f8611bd2565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a2a5750610a2881610a23611bd2565b61185b565b155b15610a61576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a6c838383611bda565b505050565b600c5481565b610a7f611bd2565b73ffffffffffffffffffffffffffffffffffffffff16610a9d611310565b73ffffffffffffffffffffffffffffffffffffffff1614610af3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aea90613595565b60405180910390fd5b80600b9080519060200190610b09929190612c09565b5050565b610b15611bd2565b73ffffffffffffffffffffffffffffffffffffffff16610b33611310565b73ffffffffffffffffffffffffffffffffffffffff1614610b89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8090613595565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6000610bb0611c8c565b6001546000540303905090565b610bc8838383611c95565b505050565b610bd5611bd2565b73ffffffffffffffffffffffffffffffffffffffff16610bf3611310565b73ffffffffffffffffffffffffffffffffffffffff1614610c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4090613595565b60405180910390fd5b600260095403610c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8590613601565b60405180910390fd5b60026009819055506000610ca0611310565b73ffffffffffffffffffffffffffffffffffffffff1647604051610cc390613652565b60006040518083038185875af1925050503d8060008114610d00576040519150601f19603f3d011682016040523d82523d6000602084013e610d05565b606091505b5050905080610d1357600080fd5b506001600981905550565b610d398383836040518060200160405280600081525061172f565b505050565b60606000610d4b83611123565b905060008167ffffffffffffffff811115610d6957610d68612fd8565b5b604051908082528060200260200182016040528015610d975781602001602082028036833780820191505090505b5090506000610da4611c8c565b90506000805b8482108015610dbb5750600d548311155b15610f4b576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151158015610ec85750600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614155b15610ed557806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f375783858481518110610f1c57610f1b613667565b5b6020026020010181815250508280610f33906136c5565b9350505b8380610f42906136c5565b94505050610daa565b8395505050505050919050565b610f60611bd2565b73ffffffffffffffffffffffffffffffffffffffff16610f7e611310565b73ffffffffffffffffffffffffffffffffffffffff1614610fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcb90613595565b60405180910390fd5b80600c8190555050565b600b8054610feb90613518565b80601f016020809104026020016040519081016040528092919081815260200182805461101790613518565b80156110645780601f1061103957610100808354040283529160200191611064565b820191906000526020600020905b81548152906001019060200180831161104757829003601f168201915b505050505081565b600f60009054906101000a900460ff1681565b600a805461108c90613518565b80601f01602080910402602001604051908101604052809291908181526020018280546110b890613518565b80156111055780601f106110da57610100808354040283529160200191611105565b820191906000526020600020905b8154815290600101906020018083116110e857829003601f168201915b505050505081565b600061111882612149565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361118a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6111fa611bd2565b73ffffffffffffffffffffffffffffffffffffffff16611218611310565b73ffffffffffffffffffffffffffffffffffffffff161461126e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126590613595565b60405180910390fd5b61127860006123d8565b565b611282611bd2565b73ffffffffffffffffffffffffffffffffffffffff166112a0611310565b73ffffffffffffffffffffffffffffffffffffffff16146112f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ed90613595565b60405180910390fd5b80600a908051906020019061130c929190612c09565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b60606003805461134f90613518565b80601f016020809104026020016040519081016040528092919081815260200182805461137b90613518565b80156113c85780601f1061139d576101008083540402835291602001916113c8565b820191906000526020600020905b8154815290600101906020018083116113ab57829003601f168201915b5050505050905090565b806000811180156113e55750600e548111155b611424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141b90613759565b60405180910390fd5b600d5481611430610ba6565b61143a9190613779565b111561147b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114729061381b565b60405180910390fd5b8180600c5461148a919061383b565b3410156114cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c3906138e1565b60405180910390fd5b600f60009054906101000a900460ff161561151c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115139061394d565b60405180910390fd5b61152d611527611bd2565b8461249e565b505050565b61153a611bd2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361159e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006115ab611bd2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611658611bd2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161169d9190612da3565b60405180910390a35050565b6116b1611bd2565b73ffffffffffffffffffffffffffffffffffffffff166116cf611310565b73ffffffffffffffffffffffffffffffffffffffff1614611725576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171c90613595565b60405180910390fd5b80600e8190555050565b61173a848484611c95565b6117598373ffffffffffffffffffffffffffffffffffffffff166124bc565b801561176e575061176c848484846124df565b155b156117a5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606117b682611b84565b6117f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ec906139df565b60405180910390fd5b60006117ff61262f565b9050600081511161181f576040518060200160405280600081525061184d565b80611829846126c1565b600b60405160200161183d93929190613acf565b6040516020818303038152906040525b915050919050565b600d5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156119025750600e548111155b611941576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193890613759565b60405180910390fd5b600d548161194d610ba6565b6119579190613779565b1115611998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198f9061381b565b60405180910390fd5b6119a0611bd2565b73ffffffffffffffffffffffffffffffffffffffff166119be611310565b73ffffffffffffffffffffffffffffffffffffffff1614611a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0b90613595565b60405180910390fd5b611a1e828461249e565b505050565b611a2b611bd2565b73ffffffffffffffffffffffffffffffffffffffff16611a49611310565b73ffffffffffffffffffffffffffffffffffffffff1614611a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9690613595565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0590613b72565b60405180910390fd5b611b17816123d8565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611b8f611c8c565b11158015611b9e575060005482105b8015611bcb575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611ca082612149565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611d0b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611d2c611bd2565b73ffffffffffffffffffffffffffffffffffffffff161480611d5b5750611d5a85611d55611bd2565b61185b565b5b80611da05750611d69611bd2565b73ffffffffffffffffffffffffffffffffffffffff16611d88846108eb565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611dd9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611e3f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e4c8585856001612821565b611e5860008487611bda565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036120d75760005482146120d657878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121428585856001612827565b5050505050565b612151612c8f565b60008290508061215f611c8c565b1115801561216e575060005481105b156123a1576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161239f57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122835780925050506123d3565b5b60011561239e57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123995780925050506123d3565b612284565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124b882826040518060200160405280600081525061282d565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612505611bd2565b8786866040518563ffffffff1660e01b81526004016125279493929190613be7565b6020604051808303816000875af192505050801561256357506040513d601f19601f820116820180604052508101906125609190613c48565b60015b6125dc573d8060008114612593576040519150601f19603f3d011682016040523d82523d6000602084013e612598565b606091505b5060008151036125d4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461263e90613518565b80601f016020809104026020016040519081016040528092919081815260200182805461266a90613518565b80156126b75780601f1061268c576101008083540402835291602001916126b7565b820191906000526020600020905b81548152906001019060200180831161269a57829003601f168201915b5050505050905090565b606060008203612708576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061281c565b600082905060005b6000821461273a578080612723906136c5565b915050600a826127339190613ca4565b9150612710565b60008167ffffffffffffffff81111561275657612755612fd8565b5b6040519080825280601f01601f1916602001820160405280156127885781602001600182028036833780820191505090505b5090505b60008514612815576001826127a19190613cd5565b9150600a856127b09190613d09565b60306127bc9190613779565b60f81b8183815181106127d2576127d1613667565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561280e9190613ca4565b945061278c565b8093505050505b919050565b50505050565b50505050565b61283a838383600161283f565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036128ab576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084036128e5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128f26000868387612821565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612abc5750612abb8773ffffffffffffffffffffffffffffffffffffffff166124bc565b5b15612b81575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b3160008884806001019550886124df565b612b67576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612ac2578260005414612b7c57600080fd5b612bec565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612b82575b816000819055505050612c026000868387612827565b5050505050565b828054612c1590613518565b90600052602060002090601f016020900481019282612c375760008555612c7e565b82601f10612c5057805160ff1916838001178555612c7e565b82800160010185558215612c7e579182015b82811115612c7d578251825591602001919060010190612c62565b5b509050612c8b9190612cd2565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612ceb576000816000905550600101612cd3565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d3881612d03565b8114612d4357600080fd5b50565b600081359050612d5581612d2f565b92915050565b600060208284031215612d7157612d70612cf9565b5b6000612d7f84828501612d46565b91505092915050565b60008115159050919050565b612d9d81612d88565b82525050565b6000602082019050612db86000830184612d94565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612df8578082015181840152602081019050612ddd565b83811115612e07576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e2982612dbe565b612e338185612dc9565b9350612e43818560208601612dda565b612e4c81612e0d565b840191505092915050565b60006020820190508181036000830152612e718184612e1e565b905092915050565b6000819050919050565b612e8c81612e79565b8114612e9757600080fd5b50565b600081359050612ea981612e83565b92915050565b600060208284031215612ec557612ec4612cf9565b5b6000612ed384828501612e9a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f0782612edc565b9050919050565b612f1781612efc565b82525050565b6000602082019050612f326000830184612f0e565b92915050565b612f4181612efc565b8114612f4c57600080fd5b50565b600081359050612f5e81612f38565b92915050565b60008060408385031215612f7b57612f7a612cf9565b5b6000612f8985828601612f4f565b9250506020612f9a85828601612e9a565b9150509250929050565b612fad81612e79565b82525050565b6000602082019050612fc86000830184612fa4565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61301082612e0d565b810181811067ffffffffffffffff8211171561302f5761302e612fd8565b5b80604052505050565b6000613042612cef565b905061304e8282613007565b919050565b600067ffffffffffffffff82111561306e5761306d612fd8565b5b61307782612e0d565b9050602081019050919050565b82818337600083830152505050565b60006130a66130a184613053565b613038565b9050828152602081018484840111156130c2576130c1612fd3565b5b6130cd848285613084565b509392505050565b600082601f8301126130ea576130e9612fce565b5b81356130fa848260208601613093565b91505092915050565b60006020828403121561311957613118612cf9565b5b600082013567ffffffffffffffff81111561313757613136612cfe565b5b613143848285016130d5565b91505092915050565b61315581612d88565b811461316057600080fd5b50565b6000813590506131728161314c565b92915050565b60006020828403121561318e5761318d612cf9565b5b600061319c84828501613163565b91505092915050565b6000806000606084860312156131be576131bd612cf9565b5b60006131cc86828701612f4f565b93505060206131dd86828701612f4f565b92505060406131ee86828701612e9a565b9150509250925092565b60006020828403121561320e5761320d612cf9565b5b600061321c84828501612f4f565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61325a81612e79565b82525050565b600061326c8383613251565b60208301905092915050565b6000602082019050919050565b600061329082613225565b61329a8185613230565b93506132a583613241565b8060005b838110156132d65781516132bd8882613260565b97506132c883613278565b9250506001810190506132a9565b5085935050505092915050565b600060208201905081810360008301526132fd8184613285565b905092915050565b6000806040838503121561331c5761331b612cf9565b5b600061332a85828601612f4f565b925050602061333b85828601613163565b9150509250929050565b600067ffffffffffffffff8211156133605761335f612fd8565b5b61336982612e0d565b9050602081019050919050565b600061338961338484613345565b613038565b9050828152602081018484840111156133a5576133a4612fd3565b5b6133b0848285613084565b509392505050565b600082601f8301126133cd576133cc612fce565b5b81356133dd848260208601613376565b91505092915050565b60008060008060808587031215613400576133ff612cf9565b5b600061340e87828801612f4f565b945050602061341f87828801612f4f565b935050604061343087828801612e9a565b925050606085013567ffffffffffffffff81111561345157613450612cfe565b5b61345d878288016133b8565b91505092959194509250565b600080604083850312156134805761347f612cf9565b5b600061348e85828601612f4f565b925050602061349f85828601612f4f565b9150509250929050565b600080604083850312156134c0576134bf612cf9565b5b60006134ce85828601612e9a565b92505060206134df85828601612f4f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061353057607f821691505b602082108103613543576135426134e9565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061357f602083612dc9565b915061358a82613549565b602082019050919050565b600060208201905081810360008301526135ae81613572565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006135eb601f83612dc9565b91506135f6826135b5565b602082019050919050565b6000602082019050818103600083015261361a816135de565b9050919050565b600081905092915050565b50565b600061363c600083613621565b91506136478261362c565b600082019050919050565b600061365d8261362f565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006136d082612e79565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361370257613701613696565b5b600182019050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613743601483612dc9565b915061374e8261370d565b602082019050919050565b6000602082019050818103600083015261377281613736565b9050919050565b600061378482612e79565b915061378f83612e79565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137c4576137c3613696565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613805601483612dc9565b9150613810826137cf565b602082019050919050565b60006020820190508181036000830152613834816137f8565b9050919050565b600061384682612e79565b915061385183612e79565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561388a57613889613696565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b60006138cb601383612dc9565b91506138d682613895565b602082019050919050565b600060208201905081810360008301526138fa816138be565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000613937601783612dc9565b915061394282613901565b602082019050919050565b600060208201905081810360008301526139668161392a565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006139c9602f83612dc9565b91506139d48261396d565b604082019050919050565b600060208201905081810360008301526139f8816139bc565b9050919050565b600081905092915050565b6000613a1582612dbe565b613a1f81856139ff565b9350613a2f818560208601612dda565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613a5d81613518565b613a6781866139ff565b94506001821660008114613a825760018114613a9357613ac6565b60ff19831686528186019350613ac6565b613a9c85613a3b565b60005b83811015613abe57815481890152600182019150602081019050613a9f565b838801955050505b50505092915050565b6000613adb8286613a0a565b9150613ae78285613a0a565b9150613af38284613a50565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b5c602683612dc9565b9150613b6782613b00565b604082019050919050565b60006020820190508181036000830152613b8b81613b4f565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613bb982613b92565b613bc38185613b9d565b9350613bd3818560208601612dda565b613bdc81612e0d565b840191505092915050565b6000608082019050613bfc6000830187612f0e565b613c096020830186612f0e565b613c166040830185612fa4565b8181036060830152613c288184613bae565b905095945050505050565b600081519050613c4281612d2f565b92915050565b600060208284031215613c5e57613c5d612cf9565b5b6000613c6c84828501613c33565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613caf82612e79565b9150613cba83612e79565b925082613cca57613cc9613c75565b5b828204905092915050565b6000613ce082612e79565b9150613ceb83612e79565b925082821015613cfe57613cfd613696565b5b828203905092915050565b6000613d1482612e79565b9150613d1f83612e79565b925082613d2f57613d2e613c75565b5b82820690509291505056fea26469706673582212208a0a0ef00b622d746ce2cb5c660aa8767ace4f7a94d6b7ae053e2e6e5060012264736f6c634300080d003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003780000000000000000000000000000000000000000000000000000000000000058000000000000000000000000000000000000000000000000000000000000000a446567656e48656164730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024448000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101e35760003560e01c80636352211e11610102578063a22cb46511610095578063d5abeb0111610064578063d5abeb01146106bd578063e985e9c5146106e8578063efbd73f414610725578063f2fde38b1461074e576101e3565b8063a22cb46514610605578063b071401b1461062e578063b88d4fde14610657578063c87b56dd14610680576101e3565b80638da5cb5b116100d15780638da5cb5b1461056857806394354fd01461059357806395d89b41146105be578063a0712d68146105e9576101e3565b80636352211e146104ae57806370a08231146104eb578063715018a6146105285780637ec4a6591461053f576101e3565b806323b872dd1161017a57806344a0d68a1161014957806344a0d68a146104045780635503a0e81461042d5780635c975abb1461045857806362b99ad414610483576101e3565b806323b872dd1461035e5780633ccfd60b1461038757806342842e0e1461039e578063438b6300146103c7576101e3565b806313faede6116101b657806313faede6146102b657806316ba10e0146102e157806316c38b3c1461030a57806318160ddd14610333576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612d5b565b610777565b60405161021c9190612da3565b60405180910390f35b34801561023157600080fd5b5061023a610859565b6040516102479190612e57565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612eaf565b6108eb565b6040516102849190612f1d565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612f64565b610967565b005b3480156102c257600080fd5b506102cb610a71565b6040516102d89190612fb3565b60405180910390f35b3480156102ed57600080fd5b5061030860048036038101906103039190613103565b610a77565b005b34801561031657600080fd5b50610331600480360381019061032c9190613178565b610b0d565b005b34801561033f57600080fd5b50610348610ba6565b6040516103559190612fb3565b60405180910390f35b34801561036a57600080fd5b50610385600480360381019061038091906131a5565b610bbd565b005b34801561039357600080fd5b5061039c610bcd565b005b3480156103aa57600080fd5b506103c560048036038101906103c091906131a5565b610d1e565b005b3480156103d357600080fd5b506103ee60048036038101906103e991906131f8565b610d3e565b6040516103fb91906132e3565b60405180910390f35b34801561041057600080fd5b5061042b60048036038101906104269190612eaf565b610f58565b005b34801561043957600080fd5b50610442610fde565b60405161044f9190612e57565b60405180910390f35b34801561046457600080fd5b5061046d61106c565b60405161047a9190612da3565b60405180910390f35b34801561048f57600080fd5b5061049861107f565b6040516104a59190612e57565b60405180910390f35b3480156104ba57600080fd5b506104d560048036038101906104d09190612eaf565b61110d565b6040516104e29190612f1d565b60405180910390f35b3480156104f757600080fd5b50610512600480360381019061050d91906131f8565b611123565b60405161051f9190612fb3565b60405180910390f35b34801561053457600080fd5b5061053d6111f2565b005b34801561054b57600080fd5b5061056660048036038101906105619190613103565b61127a565b005b34801561057457600080fd5b5061057d611310565b60405161058a9190612f1d565b60405180910390f35b34801561059f57600080fd5b506105a861133a565b6040516105b59190612fb3565b60405180910390f35b3480156105ca57600080fd5b506105d3611340565b6040516105e09190612e57565b60405180910390f35b61060360048036038101906105fe9190612eaf565b6113d2565b005b34801561061157600080fd5b5061062c60048036038101906106279190613305565b611532565b005b34801561063a57600080fd5b5061065560048036038101906106509190612eaf565b6116a9565b005b34801561066357600080fd5b5061067e600480360381019061067991906133e6565b61172f565b005b34801561068c57600080fd5b506106a760048036038101906106a29190612eaf565b6117ab565b6040516106b49190612e57565b60405180910390f35b3480156106c957600080fd5b506106d2611855565b6040516106df9190612fb3565b60405180910390f35b3480156106f457600080fd5b5061070f600480360381019061070a9190613469565b61185b565b60405161071c9190612da3565b60405180910390f35b34801561073157600080fd5b5061074c600480360381019061074791906134a9565b6118ef565b005b34801561075a57600080fd5b50610775600480360381019061077091906131f8565b611a23565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061084257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610852575061085182611b1a565b5b9050919050565b60606002805461086890613518565b80601f016020809104026020016040519081016040528092919081815260200182805461089490613518565b80156108e15780601f106108b6576101008083540402835291602001916108e1565b820191906000526020600020905b8154815290600101906020018083116108c457829003601f168201915b5050505050905090565b60006108f682611b84565b61092c576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006109728261110d565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109d9576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109f8611bd2565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a2a5750610a2881610a23611bd2565b61185b565b155b15610a61576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a6c838383611bda565b505050565b600c5481565b610a7f611bd2565b73ffffffffffffffffffffffffffffffffffffffff16610a9d611310565b73ffffffffffffffffffffffffffffffffffffffff1614610af3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aea90613595565b60405180910390fd5b80600b9080519060200190610b09929190612c09565b5050565b610b15611bd2565b73ffffffffffffffffffffffffffffffffffffffff16610b33611310565b73ffffffffffffffffffffffffffffffffffffffff1614610b89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8090613595565b60405180910390fd5b80600f60006101000a81548160ff02191690831515021790555050565b6000610bb0611c8c565b6001546000540303905090565b610bc8838383611c95565b505050565b610bd5611bd2565b73ffffffffffffffffffffffffffffffffffffffff16610bf3611310565b73ffffffffffffffffffffffffffffffffffffffff1614610c49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4090613595565b60405180910390fd5b600260095403610c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8590613601565b60405180910390fd5b60026009819055506000610ca0611310565b73ffffffffffffffffffffffffffffffffffffffff1647604051610cc390613652565b60006040518083038185875af1925050503d8060008114610d00576040519150601f19603f3d011682016040523d82523d6000602084013e610d05565b606091505b5050905080610d1357600080fd5b506001600981905550565b610d398383836040518060200160405280600081525061172f565b505050565b60606000610d4b83611123565b905060008167ffffffffffffffff811115610d6957610d68612fd8565b5b604051908082528060200260200182016040528015610d975781602001602082028036833780820191505090505b5090506000610da4611c8c565b90506000805b8482108015610dbb5750600d548311155b15610f4b576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151158015610ec85750600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614155b15610ed557806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f375783858481518110610f1c57610f1b613667565b5b6020026020010181815250508280610f33906136c5565b9350505b8380610f42906136c5565b94505050610daa565b8395505050505050919050565b610f60611bd2565b73ffffffffffffffffffffffffffffffffffffffff16610f7e611310565b73ffffffffffffffffffffffffffffffffffffffff1614610fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcb90613595565b60405180910390fd5b80600c8190555050565b600b8054610feb90613518565b80601f016020809104026020016040519081016040528092919081815260200182805461101790613518565b80156110645780601f1061103957610100808354040283529160200191611064565b820191906000526020600020905b81548152906001019060200180831161104757829003601f168201915b505050505081565b600f60009054906101000a900460ff1681565b600a805461108c90613518565b80601f01602080910402602001604051908101604052809291908181526020018280546110b890613518565b80156111055780601f106110da57610100808354040283529160200191611105565b820191906000526020600020905b8154815290600101906020018083116110e857829003601f168201915b505050505081565b600061111882612149565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361118a576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6111fa611bd2565b73ffffffffffffffffffffffffffffffffffffffff16611218611310565b73ffffffffffffffffffffffffffffffffffffffff161461126e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126590613595565b60405180910390fd5b61127860006123d8565b565b611282611bd2565b73ffffffffffffffffffffffffffffffffffffffff166112a0611310565b73ffffffffffffffffffffffffffffffffffffffff16146112f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ed90613595565b60405180910390fd5b80600a908051906020019061130c929190612c09565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b60606003805461134f90613518565b80601f016020809104026020016040519081016040528092919081815260200182805461137b90613518565b80156113c85780601f1061139d576101008083540402835291602001916113c8565b820191906000526020600020905b8154815290600101906020018083116113ab57829003601f168201915b5050505050905090565b806000811180156113e55750600e548111155b611424576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141b90613759565b60405180910390fd5b600d5481611430610ba6565b61143a9190613779565b111561147b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114729061381b565b60405180910390fd5b8180600c5461148a919061383b565b3410156114cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c3906138e1565b60405180910390fd5b600f60009054906101000a900460ff161561151c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115139061394d565b60405180910390fd5b61152d611527611bd2565b8461249e565b505050565b61153a611bd2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361159e576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006115ab611bd2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611658611bd2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161169d9190612da3565b60405180910390a35050565b6116b1611bd2565b73ffffffffffffffffffffffffffffffffffffffff166116cf611310565b73ffffffffffffffffffffffffffffffffffffffff1614611725576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171c90613595565b60405180910390fd5b80600e8190555050565b61173a848484611c95565b6117598373ffffffffffffffffffffffffffffffffffffffff166124bc565b801561176e575061176c848484846124df565b155b156117a5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606117b682611b84565b6117f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117ec906139df565b60405180910390fd5b60006117ff61262f565b9050600081511161181f576040518060200160405280600081525061184d565b80611829846126c1565b600b60405160200161183d93929190613acf565b6040516020818303038152906040525b915050919050565b600d5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b816000811180156119025750600e548111155b611941576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193890613759565b60405180910390fd5b600d548161194d610ba6565b6119579190613779565b1115611998576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198f9061381b565b60405180910390fd5b6119a0611bd2565b73ffffffffffffffffffffffffffffffffffffffff166119be611310565b73ffffffffffffffffffffffffffffffffffffffff1614611a14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a0b90613595565b60405180910390fd5b611a1e828461249e565b505050565b611a2b611bd2565b73ffffffffffffffffffffffffffffffffffffffff16611a49611310565b73ffffffffffffffffffffffffffffffffffffffff1614611a9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9690613595565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611b0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0590613b72565b60405180910390fd5b611b17816123d8565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081611b8f611c8c565b11158015611b9e575060005482105b8015611bcb575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000611ca082612149565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614611d0b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16611d2c611bd2565b73ffffffffffffffffffffffffffffffffffffffff161480611d5b5750611d5a85611d55611bd2565b61185b565b5b80611da05750611d69611bd2565b73ffffffffffffffffffffffffffffffffffffffff16611d88846108eb565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611dd9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611e3f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e4c8585856001612821565b611e5860008487611bda565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036120d75760005482146120d657878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121428585856001612827565b5050505050565b612151612c8f565b60008290508061215f611c8c565b1115801561216e575060005481105b156123a1576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161239f57600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146122835780925050506123d3565b5b60011561239e57818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123995780925050506123d3565b612284565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6124b882826040518060200160405280600081525061282d565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612505611bd2565b8786866040518563ffffffff1660e01b81526004016125279493929190613be7565b6020604051808303816000875af192505050801561256357506040513d601f19601f820116820180604052508101906125609190613c48565b60015b6125dc573d8060008114612593576040519150601f19603f3d011682016040523d82523d6000602084013e612598565b606091505b5060008151036125d4576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a805461263e90613518565b80601f016020809104026020016040519081016040528092919081815260200182805461266a90613518565b80156126b75780601f1061268c576101008083540402835291602001916126b7565b820191906000526020600020905b81548152906001019060200180831161269a57829003601f168201915b5050505050905090565b606060008203612708576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061281c565b600082905060005b6000821461273a578080612723906136c5565b915050600a826127339190613ca4565b9150612710565b60008167ffffffffffffffff81111561275657612755612fd8565b5b6040519080825280601f01601f1916602001820160405280156127885781602001600182028036833780820191505090505b5090505b60008514612815576001826127a19190613cd5565b9150600a856127b09190613d09565b60306127bc9190613779565b60f81b8183815181106127d2576127d1613667565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561280e9190613ca4565b945061278c565b8093505050505b919050565b50505050565b50505050565b61283a838383600161283f565b505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16036128ab576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084036128e5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6128f26000868387612821565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612abc5750612abb8773ffffffffffffffffffffffffffffffffffffffff166124bc565b5b15612b81575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b3160008884806001019550886124df565b612b67576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808203612ac2578260005414612b7c57600080fd5b612bec565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808203612b82575b816000819055505050612c026000868387612827565b5050505050565b828054612c1590613518565b90600052602060002090601f016020900481019282612c375760008555612c7e565b82601f10612c5057805160ff1916838001178555612c7e565b82800160010185558215612c7e579182015b82811115612c7d578251825591602001919060010190612c62565b5b509050612c8b9190612cd2565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612ceb576000816000905550600101612cd3565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b612d3881612d03565b8114612d4357600080fd5b50565b600081359050612d5581612d2f565b92915050565b600060208284031215612d7157612d70612cf9565b5b6000612d7f84828501612d46565b91505092915050565b60008115159050919050565b612d9d81612d88565b82525050565b6000602082019050612db86000830184612d94565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612df8578082015181840152602081019050612ddd565b83811115612e07576000848401525b50505050565b6000601f19601f8301169050919050565b6000612e2982612dbe565b612e338185612dc9565b9350612e43818560208601612dda565b612e4c81612e0d565b840191505092915050565b60006020820190508181036000830152612e718184612e1e565b905092915050565b6000819050919050565b612e8c81612e79565b8114612e9757600080fd5b50565b600081359050612ea981612e83565b92915050565b600060208284031215612ec557612ec4612cf9565b5b6000612ed384828501612e9a565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612f0782612edc565b9050919050565b612f1781612efc565b82525050565b6000602082019050612f326000830184612f0e565b92915050565b612f4181612efc565b8114612f4c57600080fd5b50565b600081359050612f5e81612f38565b92915050565b60008060408385031215612f7b57612f7a612cf9565b5b6000612f8985828601612f4f565b9250506020612f9a85828601612e9a565b9150509250929050565b612fad81612e79565b82525050565b6000602082019050612fc86000830184612fa4565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61301082612e0d565b810181811067ffffffffffffffff8211171561302f5761302e612fd8565b5b80604052505050565b6000613042612cef565b905061304e8282613007565b919050565b600067ffffffffffffffff82111561306e5761306d612fd8565b5b61307782612e0d565b9050602081019050919050565b82818337600083830152505050565b60006130a66130a184613053565b613038565b9050828152602081018484840111156130c2576130c1612fd3565b5b6130cd848285613084565b509392505050565b600082601f8301126130ea576130e9612fce565b5b81356130fa848260208601613093565b91505092915050565b60006020828403121561311957613118612cf9565b5b600082013567ffffffffffffffff81111561313757613136612cfe565b5b613143848285016130d5565b91505092915050565b61315581612d88565b811461316057600080fd5b50565b6000813590506131728161314c565b92915050565b60006020828403121561318e5761318d612cf9565b5b600061319c84828501613163565b91505092915050565b6000806000606084860312156131be576131bd612cf9565b5b60006131cc86828701612f4f565b93505060206131dd86828701612f4f565b92505060406131ee86828701612e9a565b9150509250925092565b60006020828403121561320e5761320d612cf9565b5b600061321c84828501612f4f565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61325a81612e79565b82525050565b600061326c8383613251565b60208301905092915050565b6000602082019050919050565b600061329082613225565b61329a8185613230565b93506132a583613241565b8060005b838110156132d65781516132bd8882613260565b97506132c883613278565b9250506001810190506132a9565b5085935050505092915050565b600060208201905081810360008301526132fd8184613285565b905092915050565b6000806040838503121561331c5761331b612cf9565b5b600061332a85828601612f4f565b925050602061333b85828601613163565b9150509250929050565b600067ffffffffffffffff8211156133605761335f612fd8565b5b61336982612e0d565b9050602081019050919050565b600061338961338484613345565b613038565b9050828152602081018484840111156133a5576133a4612fd3565b5b6133b0848285613084565b509392505050565b600082601f8301126133cd576133cc612fce565b5b81356133dd848260208601613376565b91505092915050565b60008060008060808587031215613400576133ff612cf9565b5b600061340e87828801612f4f565b945050602061341f87828801612f4f565b935050604061343087828801612e9a565b925050606085013567ffffffffffffffff81111561345157613450612cfe565b5b61345d878288016133b8565b91505092959194509250565b600080604083850312156134805761347f612cf9565b5b600061348e85828601612f4f565b925050602061349f85828601612f4f565b9150509250929050565b600080604083850312156134c0576134bf612cf9565b5b60006134ce85828601612e9a565b92505060206134df85828601612f4f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061353057607f821691505b602082108103613543576135426134e9565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061357f602083612dc9565b915061358a82613549565b602082019050919050565b600060208201905081810360008301526135ae81613572565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006135eb601f83612dc9565b91506135f6826135b5565b602082019050919050565b6000602082019050818103600083015261361a816135de565b9050919050565b600081905092915050565b50565b600061363c600083613621565b91506136478261362c565b600082019050919050565b600061365d8261362f565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006136d082612e79565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361370257613701613696565b5b600182019050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000613743601483612dc9565b915061374e8261370d565b602082019050919050565b6000602082019050818103600083015261377281613736565b9050919050565b600061378482612e79565b915061378f83612e79565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137c4576137c3613696565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000613805601483612dc9565b9150613810826137cf565b602082019050919050565b60006020820190508181036000830152613834816137f8565b9050919050565b600061384682612e79565b915061385183612e79565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561388a57613889613696565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b60006138cb601383612dc9565b91506138d682613895565b602082019050919050565b600060208201905081810360008301526138fa816138be565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000613937601783612dc9565b915061394282613901565b602082019050919050565b600060208201905081810360008301526139668161392a565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b60006139c9602f83612dc9565b91506139d48261396d565b604082019050919050565b600060208201905081810360008301526139f8816139bc565b9050919050565b600081905092915050565b6000613a1582612dbe565b613a1f81856139ff565b9350613a2f818560208601612dda565b80840191505092915050565b60008190508160005260206000209050919050565b60008154613a5d81613518565b613a6781866139ff565b94506001821660008114613a825760018114613a9357613ac6565b60ff19831686528186019350613ac6565b613a9c85613a3b565b60005b83811015613abe57815481890152600182019150602081019050613a9f565b838801955050505b50505092915050565b6000613adb8286613a0a565b9150613ae78285613a0a565b9150613af38284613a50565b9150819050949350505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613b5c602683612dc9565b9150613b6782613b00565b604082019050919050565b60006020820190508181036000830152613b8b81613b4f565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000613bb982613b92565b613bc38185613b9d565b9350613bd3818560208601612dda565b613bdc81612e0d565b840191505092915050565b6000608082019050613bfc6000830187612f0e565b613c096020830186612f0e565b613c166040830185612fa4565b8181036060830152613c288184613bae565b905095945050505050565b600081519050613c4281612d2f565b92915050565b600060208284031215613c5e57613c5d612cf9565b5b6000613c6c84828501613c33565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613caf82612e79565b9150613cba83612e79565b925082613cca57613cc9613c75565b5b828204905092915050565b6000613ce082612e79565b9150613ceb83612e79565b925082821015613cfe57613cfd613696565b5b828203905092915050565b6000613d1482612e79565b9150613d1f83612e79565b925082613d2f57613d2e613c75565b5b82820690509291505056fea26469706673582212208a0a0ef00b622d746ce2cb5c660aa8767ace4f7a94d6b7ae053e2e6e5060012264736f6c634300080d0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003780000000000000000000000000000000000000000000000000000000000000058000000000000000000000000000000000000000000000000000000000000000a446567656e48656164730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000024448000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _tokenName (string): DegenHeads
Arg [1] : _tokenSymbol (string): DH
Arg [2] : _cost (uint256): 0
Arg [3] : _maxSupply (uint256): 888
Arg [4] : _maxMintAmountPerTx (uint256): 88
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000378
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000058
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [6] : 446567656e486561647300000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [8] : 4448000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
47631:3775:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29804:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32917:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34420:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33983:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47808:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50621:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50727:77;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29053:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35285:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50816:477;;;;;;;;;;;;;:::i;:::-;;35526:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49001:796;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50295:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47766:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47901:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47733:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32725:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30173:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7524:103;;;;;;;;;;;;;:::i;:::-;;50515:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6873:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47861:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33086:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48620:212;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34696:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50375:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35782:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49910:375;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47832:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35054:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48840:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7782:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29804:305;29906:4;29958:25;29943:40;;;:11;:40;;;;:105;;;;30015:33;30000:48;;;:11;:48;;;;29943:105;:158;;;;30065:36;30089:11;30065:23;:36::i;:::-;29943:158;29923:178;;29804:305;;;:::o;32917:100::-;32971:13;33004:5;32997:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32917:100;:::o;34420:204::-;34488:7;34513:16;34521:7;34513;:16::i;:::-;34508:64;;34538:34;;;;;;;;;;;;;;34508:64;34592:15;:24;34608:7;34592:24;;;;;;;;;;;;;;;;;;;;;34585:31;;34420:204;;;:::o;33983:371::-;34056:13;34072:24;34088:7;34072:15;:24::i;:::-;34056:40;;34117:5;34111:11;;:2;:11;;;34107:48;;34131:24;;;;;;;;;;;;;;34107:48;34188:5;34172:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;34198:37;34215:5;34222:12;:10;:12::i;:::-;34198:16;:37::i;:::-;34197:38;34172:63;34168:138;;;34259:35;;;;;;;;;;;;;;34168:138;34318:28;34327:2;34331:7;34340:5;34318:8;:28::i;:::-;34045:309;33983:371;;:::o;47808:19::-;;;;:::o;50621:100::-;7104:12;:10;:12::i;:::-;7093:23;;:7;:5;:7::i;:::-;:23;;;7085:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50705:10:::1;50693:9;:22;;;;;;;;;;;;:::i;:::-;;50621:100:::0;:::o;50727:77::-;7104:12;:10;:12::i;:::-;7093:23;;:7;:5;:7::i;:::-;:23;;;7085:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50792:6:::1;50783;;:15;;;;;;;;;;;;;;;;;;50727:77:::0;:::o;29053:303::-;29097:7;29322:15;:13;:15::i;:::-;29307:12;;29291:13;;:28;:46;29284:53;;29053:303;:::o;35285:170::-;35419:28;35429:4;35435:2;35439:7;35419:9;:28::i;:::-;35285:170;;;:::o;50816:477::-;7104:12;:10;:12::i;:::-;7093:23;;:7;:5;:7::i;:::-;:23;;;7085:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1847:1:::1;2445:7;;:19:::0;2437:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1847:1;2578:7;:18;;;;51115:7:::2;51136;:5;:7::i;:::-;51128:21;;51157;51128:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51114:69;;;51198:2;51190:11;;;::::0;::::2;;50866:427;1803:1:::1;2757:7;:22;;;;50816:477::o:0;35526:185::-;35664:39;35681:4;35687:2;35691:7;35664:39;;;;;;;;;;;;:16;:39::i;:::-;35526:185;;;:::o;49001:796::-;49061:16;49086:23;49112:17;49122:6;49112:9;:17::i;:::-;49086:43;;49136:30;49183:15;49169:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49136:63;;49206:22;49231:15;:13;:15::i;:::-;49206:40;;49253:23;49287:26;49322:441;49347:15;49329;:33;:64;;;;;49384:9;;49366:14;:27;;49329:64;49322:441;;;49404:31;49438:11;:27;49450:14;49438:27;;;;;;;;;;;49404:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49481:9;:16;;;49480:17;:49;;;;;49527:1;49501:28;;:9;:14;;;:28;;;;49480:49;49476:111;;;49563:9;:14;;;49542:35;;49476:111;49623:6;49601:28;;:18;:28;;;49597:132;;49675:14;49642:13;49656:15;49642:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;49702:17;;;;;:::i;:::-;;;;49597:132;49739:16;;;;;:::i;:::-;;;;49395:368;49322:441;;;49778:13;49771:20;;;;;;;49001:796;;;:::o;50295:74::-;7104:12;:10;:12::i;:::-;7093:23;;:7;:5;:7::i;:::-;:23;;;7085:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50358:5:::1;50351:4;:12;;;;50295:74:::0;:::o;47766:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;47901:26::-;;;;;;;;;;;;;:::o;47733:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32725:125::-;32789:7;32816:21;32829:7;32816:12;:21::i;:::-;:26;;;32809:33;;32725:125;;;:::o;30173:206::-;30237:7;30278:1;30261:19;;:5;:19;;;30257:60;;30289:28;;;;;;;;;;;;;;30257:60;30343:12;:19;30356:5;30343:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;30335:36;;30328:43;;30173:206;;;:::o;7524:103::-;7104:12;:10;:12::i;:::-;7093:23;;:7;:5;:7::i;:::-;:23;;;7085:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7589:30:::1;7616:1;7589:18;:30::i;:::-;7524:103::o:0;50515:100::-;7104:12;:10;:12::i;:::-;7093:23;;:7;:5;:7::i;:::-;:23;;;7085:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50599:10:::1;50587:9;:22;;;;;;;;;;;;:::i;:::-;;50515:100:::0;:::o;6873:87::-;6919:7;6946:6;;;;;;;;;;;6939:13;;6873:87;:::o;47861:33::-;;;;:::o;33086:104::-;33142:13;33175:7;33168:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33086:104;:::o;48620:212::-;48685:11;48311:1;48297:11;:15;:52;;;;;48331:18;;48316:11;:33;;48297:52;48289:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;48420:9;;48405:11;48389:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;48381:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;48718:11:::1;48559;48552:4;;:18;;;;:::i;:::-;48539:9;:31;;48531:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;48747:6:::2;;;;;;;;;;;48746:7;48738:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;48790:36;48800:12;:10;:12::i;:::-;48814:11;48790:9;:36::i;:::-;48461:1:::1;48620:212:::0;;:::o;34696:287::-;34807:12;:10;:12::i;:::-;34795:24;;:8;:24;;;34791:54;;34828:17;;;;;;;;;;;;;;34791:54;34903:8;34858:18;:32;34877:12;:10;:12::i;:::-;34858:32;;;;;;;;;;;;;;;:42;34891:8;34858:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;34956:8;34927:48;;34942:12;:10;:12::i;:::-;34927:48;;;34966:8;34927:48;;;;;;:::i;:::-;;;;;;;;34696:287;;:::o;50375:130::-;7104:12;:10;:12::i;:::-;7093:23;;:7;:5;:7::i;:::-;:23;;;7085:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50480:19:::1;50459:18;:40;;;;50375:130:::0;:::o;35782:369::-;35949:28;35959:4;35965:2;35969:7;35949:9;:28::i;:::-;35992:15;:2;:13;;;:15::i;:::-;:76;;;;;36012:56;36043:4;36049:2;36053:7;36062:5;36012:30;:56::i;:::-;36011:57;35992:76;35988:156;;;36092:40;;;;;;;;;;;;;;35988:156;35782:369;;;;:::o;49910:375::-;49984:13;50014:17;50022:8;50014:7;:17::i;:::-;50006:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;50094:28;50125:10;:8;:10::i;:::-;50094:41;;50180:1;50155:14;50149:28;:32;:130;;;;;;;;;;;;;;;;;50217:14;50233:19;:8;:17;:19::i;:::-;50254:9;50200:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50149:130;50142:137;;;49910:375;;;:::o;47832:24::-;;;;:::o;35054:164::-;35151:4;35175:18;:25;35194:5;35175:25;;;;;;;;;;;;;;;:35;35201:8;35175:35;;;;;;;;;;;;;;;;;;;;;;;;;35168:42;;35054:164;;;;:::o;48840:155::-;48926:11;48311:1;48297:11;:15;:52;;;;;48331:18;;48316:11;:33;;48297:52;48289:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;48420:9;;48405:11;48389:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;48381:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7104:12:::1;:10;:12::i;:::-;7093:23;;:7;:5;:7::i;:::-;:23;;;7085:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48956:33:::2;48966:9;48977:11;48956:9;:33::i;:::-;48840:155:::0;;;:::o;7782:201::-;7104:12;:10;:12::i;:::-;7093:23;;:7;:5;:7::i;:::-;:23;;;7085:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7891:1:::1;7871:22;;:8;:22;;::::0;7863:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;7947:28;7966:8;7947:18;:28::i;:::-;7782:201:::0;:::o;19680:157::-;19765:4;19804:25;19789:40;;;:11;:40;;;;19782:47;;19680:157;;;:::o;36406:174::-;36463:4;36506:7;36487:15;:13;:15::i;:::-;:26;;:53;;;;;36527:13;;36517:7;:23;36487:53;:85;;;;;36545:11;:20;36557:7;36545:20;;;;;;;;;;;:27;;;;;;;;;;;;36544:28;36487:85;36480:92;;36406:174;;;:::o;5597:98::-;5650:7;5677:10;5670:17;;5597:98;:::o;44563:196::-;44705:2;44678:15;:24;44694:7;44678:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;44743:7;44739:2;44723:28;;44732:5;44723:28;;;;;;;;;;;;44563:196;;;:::o;49803:101::-;49868:7;49895:1;49888:8;;49803:101;:::o;39506:2130::-;39621:35;39659:21;39672:7;39659:12;:21::i;:::-;39621:59;;39719:4;39697:26;;:13;:18;;;:26;;;39693:67;;39732:28;;;;;;;;;;;;;;39693:67;39773:22;39815:4;39799:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;39836:36;39853:4;39859:12;:10;:12::i;:::-;39836:16;:36::i;:::-;39799:73;:126;;;;39913:12;:10;:12::i;:::-;39889:36;;:20;39901:7;39889:11;:20::i;:::-;:36;;;39799:126;39773:153;;39944:17;39939:66;;39970:35;;;;;;;;;;;;;;39939:66;40034:1;40020:16;;:2;:16;;;40016:52;;40045:23;;;;;;;;;;;;;;40016:52;40081:43;40103:4;40109:2;40113:7;40122:1;40081:21;:43::i;:::-;40189:35;40206:1;40210:7;40219:4;40189:8;:35::i;:::-;40550:1;40520:12;:18;40533:4;40520:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40594:1;40566:12;:16;40579:2;40566:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40612:31;40646:11;:20;40658:7;40646:20;;;;;;;;;;;40612:54;;40697:2;40681:8;:13;;;:18;;;;;;;;;;;;;;;;;;40747:15;40714:8;:23;;;:49;;;;;;;;;;;;;;;;;;41015:19;41047:1;41037:7;:11;41015:33;;41063:31;41097:11;:24;41109:11;41097:24;;;;;;;;;;;41063:58;;41165:1;41140:27;;:8;:13;;;;;;;;;;;;:27;;;41136:384;;41350:13;;41335:11;:28;41331:174;;41404:4;41388:8;:13;;;:20;;;;;;;;;;;;;;;;;;41457:13;:28;;;41431:8;:23;;;:54;;;;;;;;;;;;;;;;;;41331:174;41136:384;40495:1036;;;41567:7;41563:2;41548:27;;41557:4;41548:27;;;;;;;;;;;;41586:42;41607:4;41613:2;41617:7;41626:1;41586:20;:42::i;:::-;39610:2026;;39506:2130;;;:::o;31554:1109::-;31616:21;;:::i;:::-;31650:12;31665:7;31650:22;;31733:4;31714:15;:13;:15::i;:::-;:23;;:47;;;;;31748:13;;31741:4;:20;31714:47;31710:886;;;31782:31;31816:11;:17;31828:4;31816:17;;;;;;;;;;;31782:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31857:9;:16;;;31852:729;;31928:1;31902:28;;:9;:14;;;:28;;;31898:101;;31966:9;31959:16;;;;;;31898:101;32301:261;32308:4;32301:261;;;32341:6;;;;;;;;32386:11;:17;32398:4;32386:17;;;;;;;;;;;32374:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32460:1;32434:28;;:9;:14;;;:28;;;32430:109;;32502:9;32495:16;;;;;;32430:109;32301:261;;;31852:729;31763:833;31710:886;32624:31;;;;;;;;;;;;;;31554:1109;;;;:::o;8143:191::-;8217:16;8236:6;;;;;;;;;;;8217:25;;8262:8;8253:6;;:17;;;;;;;;;;;;;;;;;;8317:8;8286:40;;8307:8;8286:40;;;;;;;;;;;;8206:128;8143:191;:::o;36588:104::-;36657:27;36667:2;36671:8;36657:27;;;;;;;;;;;;:9;:27::i;:::-;36588:104;;:::o;9574:326::-;9634:4;9891:1;9869:7;:19;;;:23;9862:30;;9574:326;;;:::o;45251:667::-;45414:4;45451:2;45435:36;;;45472:12;:10;:12::i;:::-;45486:4;45492:7;45501:5;45435:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45431:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45686:1;45669:6;:13;:18;45665:235;;45715:40;;;;;;;;;;;;;;45665:235;45858:6;45852:13;45843:6;45839:2;45835:15;45828:38;45431:480;45564:45;;;45554:55;;;:6;:55;;;;45547:62;;;45251:667;;;;;;:::o;51299:104::-;51359:13;51388:9;51381:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51299:104;:::o;3159:723::-;3215:13;3445:1;3436:5;:10;3432:53;;3463:10;;;;;;;;;;;;;;;;;;;;;3432:53;3495:12;3510:5;3495:20;;3526:14;3551:78;3566:1;3558:4;:9;3551:78;;3584:8;;;;;:::i;:::-;;;;3615:2;3607:10;;;;;:::i;:::-;;;3551:78;;;3639:19;3671:6;3661:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3639:39;;3689:154;3705:1;3696:5;:10;3689:154;;3733:1;3723:11;;;;;:::i;:::-;;;3800:2;3792:5;:10;;;;:::i;:::-;3779:2;:24;;;;:::i;:::-;3766:39;;3749:6;3756;3749:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;3829:2;3820:11;;;;;:::i;:::-;;;3689:154;;;3867:6;3853:21;;;;;3159:723;;;;:::o;46566:159::-;;;;;:::o;47384:158::-;;;;;:::o;37055:163::-;37178:32;37184:2;37188:8;37198:5;37205:4;37178:5;:32::i;:::-;37055:163;;;:::o;37477:1775::-;37616:20;37639:13;;37616:36;;37681:1;37667:16;;:2;:16;;;37663:48;;37692:19;;;;;;;;;;;;;;37663:48;37738:1;37726:8;:13;37722:44;;37748:18;;;;;;;;;;;;;;37722:44;37779:61;37809:1;37813:2;37817:12;37831:8;37779:21;:61::i;:::-;38152:8;38117:12;:16;38130:2;38117:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38216:8;38176:12;:16;38189:2;38176:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38275:2;38242:11;:25;38254:12;38242:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;38342:15;38292:11;:25;38304:12;38292:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;38375:20;38398:12;38375:35;;38425:11;38454:8;38439:12;:23;38425:37;;38483:4;:23;;;;;38491:15;:2;:13;;;:15::i;:::-;38483:23;38479:641;;;38527:314;38583:12;38579:2;38558:38;;38575:1;38558:38;;;;;;;;;;;;38624:69;38663:1;38667:2;38671:14;;;;;;38687:5;38624:30;:69::i;:::-;38619:174;;38729:40;;;;;;;;;;;;;;38619:174;38836:3;38820:12;:19;38527:314;;38922:12;38905:13;;:29;38901:43;;38936:8;;;38901:43;38479:641;;;38985:120;39041:14;;;;;;39037:2;39016:40;;39033:1;39016:40;;;;;;;;;;;;39100:3;39084:12;:19;38985:120;;38479:641;39150:12;39134:13;:28;;;;38092:1082;;39184:60;39213:1;39217:2;39221:12;39235:8;39184:20;:60::i;:::-;37605:1647;37477:1775;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:117::-;5399:1;5396;5389:12;5413:117;5522:1;5519;5512:12;5536:180;5584:77;5581:1;5574:88;5681:4;5678:1;5671:15;5705:4;5702:1;5695:15;5722:281;5805:27;5827:4;5805:27;:::i;:::-;5797:6;5793:40;5935:6;5923:10;5920:22;5899:18;5887:10;5884:34;5881:62;5878:88;;;5946:18;;:::i;:::-;5878:88;5986:10;5982:2;5975:22;5765:238;5722:281;;:::o;6009:129::-;6043:6;6070:20;;:::i;:::-;6060:30;;6099:33;6127:4;6119:6;6099:33;:::i;:::-;6009:129;;;:::o;6144:308::-;6206:4;6296:18;6288:6;6285:30;6282:56;;;6318:18;;:::i;:::-;6282:56;6356:29;6378:6;6356:29;:::i;:::-;6348:37;;6440:4;6434;6430:15;6422:23;;6144:308;;;:::o;6458:154::-;6542:6;6537:3;6532;6519:30;6604:1;6595:6;6590:3;6586:16;6579:27;6458:154;;;:::o;6618:412::-;6696:5;6721:66;6737:49;6779:6;6737:49;:::i;:::-;6721:66;:::i;:::-;6712:75;;6810:6;6803:5;6796:21;6848:4;6841:5;6837:16;6886:3;6877:6;6872:3;6868:16;6865:25;6862:112;;;6893:79;;:::i;:::-;6862:112;6983:41;7017:6;7012:3;7007;6983:41;:::i;:::-;6702:328;6618:412;;;;;:::o;7050:340::-;7106:5;7155:3;7148:4;7140:6;7136:17;7132:27;7122:122;;7163:79;;:::i;:::-;7122:122;7280:6;7267:20;7305:79;7380:3;7372:6;7365:4;7357:6;7353:17;7305:79;:::i;:::-;7296:88;;7112:278;7050:340;;;;:::o;7396:509::-;7465:6;7514:2;7502:9;7493:7;7489:23;7485:32;7482:119;;;7520:79;;:::i;:::-;7482:119;7668:1;7657:9;7653:17;7640:31;7698:18;7690:6;7687:30;7684:117;;;7720:79;;:::i;:::-;7684:117;7825:63;7880:7;7871:6;7860:9;7856:22;7825:63;:::i;:::-;7815:73;;7611:287;7396:509;;;;:::o;7911:116::-;7981:21;7996:5;7981:21;:::i;:::-;7974:5;7971:32;7961:60;;8017:1;8014;8007:12;7961:60;7911:116;:::o;8033:133::-;8076:5;8114:6;8101:20;8092:29;;8130:30;8154:5;8130:30;:::i;:::-;8033:133;;;;:::o;8172:323::-;8228:6;8277:2;8265:9;8256:7;8252:23;8248:32;8245:119;;;8283:79;;:::i;:::-;8245:119;8403:1;8428:50;8470:7;8461:6;8450:9;8446:22;8428:50;:::i;:::-;8418:60;;8374:114;8172:323;;;;:::o;8501:619::-;8578:6;8586;8594;8643:2;8631:9;8622:7;8618:23;8614:32;8611:119;;;8649:79;;:::i;:::-;8611:119;8769:1;8794:53;8839:7;8830:6;8819:9;8815:22;8794:53;:::i;:::-;8784:63;;8740:117;8896:2;8922:53;8967:7;8958:6;8947:9;8943:22;8922:53;:::i;:::-;8912:63;;8867:118;9024:2;9050:53;9095:7;9086:6;9075:9;9071:22;9050:53;:::i;:::-;9040:63;;8995:118;8501:619;;;;;:::o;9126:329::-;9185:6;9234:2;9222:9;9213:7;9209:23;9205:32;9202:119;;;9240:79;;:::i;:::-;9202:119;9360:1;9385:53;9430:7;9421:6;9410:9;9406:22;9385:53;:::i;:::-;9375:63;;9331:117;9126:329;;;;:::o;9461:114::-;9528:6;9562:5;9556:12;9546:22;;9461:114;;;:::o;9581:184::-;9680:11;9714:6;9709:3;9702:19;9754:4;9749:3;9745:14;9730:29;;9581:184;;;;:::o;9771:132::-;9838:4;9861:3;9853:11;;9891:4;9886:3;9882:14;9874:22;;9771:132;;;:::o;9909:108::-;9986:24;10004:5;9986:24;:::i;:::-;9981:3;9974:37;9909:108;;:::o;10023:179::-;10092:10;10113:46;10155:3;10147:6;10113:46;:::i;:::-;10191:4;10186:3;10182:14;10168:28;;10023:179;;;;:::o;10208:113::-;10278:4;10310;10305:3;10301:14;10293:22;;10208:113;;;:::o;10357:732::-;10476:3;10505:54;10553:5;10505:54;:::i;:::-;10575:86;10654:6;10649:3;10575:86;:::i;:::-;10568:93;;10685:56;10735:5;10685:56;:::i;:::-;10764:7;10795:1;10780:284;10805:6;10802:1;10799:13;10780:284;;;10881:6;10875:13;10908:63;10967:3;10952:13;10908:63;:::i;:::-;10901:70;;10994:60;11047:6;10994:60;:::i;:::-;10984:70;;10840:224;10827:1;10824;10820:9;10815:14;;10780:284;;;10784:14;11080:3;11073:10;;10481:608;;;10357:732;;;;:::o;11095:373::-;11238:4;11276:2;11265:9;11261:18;11253:26;;11325:9;11319:4;11315:20;11311:1;11300:9;11296:17;11289:47;11353:108;11456:4;11447:6;11353:108;:::i;:::-;11345:116;;11095:373;;;;:::o;11474:468::-;11539:6;11547;11596:2;11584:9;11575:7;11571:23;11567:32;11564:119;;;11602:79;;:::i;:::-;11564:119;11722:1;11747:53;11792:7;11783:6;11772:9;11768:22;11747:53;:::i;:::-;11737:63;;11693:117;11849:2;11875:50;11917:7;11908:6;11897:9;11893:22;11875:50;:::i;:::-;11865:60;;11820:115;11474:468;;;;;:::o;11948:307::-;12009:4;12099:18;12091:6;12088:30;12085:56;;;12121:18;;:::i;:::-;12085:56;12159:29;12181:6;12159:29;:::i;:::-;12151:37;;12243:4;12237;12233:15;12225:23;;11948:307;;;:::o;12261:410::-;12338:5;12363:65;12379:48;12420:6;12379:48;:::i;:::-;12363:65;:::i;:::-;12354:74;;12451:6;12444:5;12437:21;12489:4;12482:5;12478:16;12527:3;12518:6;12513:3;12509:16;12506:25;12503:112;;;12534:79;;:::i;:::-;12503:112;12624:41;12658:6;12653:3;12648;12624:41;:::i;:::-;12344:327;12261:410;;;;;:::o;12690:338::-;12745:5;12794:3;12787:4;12779:6;12775:17;12771:27;12761:122;;12802:79;;:::i;:::-;12761:122;12919:6;12906:20;12944:78;13018:3;13010:6;13003:4;12995:6;12991:17;12944:78;:::i;:::-;12935:87;;12751:277;12690:338;;;;:::o;13034:943::-;13129:6;13137;13145;13153;13202:3;13190:9;13181:7;13177:23;13173:33;13170:120;;;13209:79;;:::i;:::-;13170:120;13329:1;13354:53;13399:7;13390:6;13379:9;13375:22;13354:53;:::i;:::-;13344:63;;13300:117;13456:2;13482:53;13527:7;13518:6;13507:9;13503:22;13482:53;:::i;:::-;13472:63;;13427:118;13584:2;13610:53;13655:7;13646:6;13635:9;13631:22;13610:53;:::i;:::-;13600:63;;13555:118;13740:2;13729:9;13725:18;13712:32;13771:18;13763:6;13760:30;13757:117;;;13793:79;;:::i;:::-;13757:117;13898:62;13952:7;13943:6;13932:9;13928:22;13898:62;:::i;:::-;13888:72;;13683:287;13034:943;;;;;;;:::o;13983:474::-;14051:6;14059;14108:2;14096:9;14087:7;14083:23;14079:32;14076:119;;;14114:79;;:::i;:::-;14076:119;14234:1;14259:53;14304:7;14295:6;14284:9;14280:22;14259:53;:::i;:::-;14249:63;;14205:117;14361:2;14387:53;14432:7;14423:6;14412:9;14408:22;14387:53;:::i;:::-;14377:63;;14332:118;13983:474;;;;;:::o;14463:::-;14531:6;14539;14588:2;14576:9;14567:7;14563:23;14559:32;14556:119;;;14594:79;;:::i;:::-;14556:119;14714:1;14739:53;14784:7;14775:6;14764:9;14760:22;14739:53;:::i;:::-;14729:63;;14685:117;14841:2;14867:53;14912:7;14903:6;14892:9;14888:22;14867:53;:::i;:::-;14857:63;;14812:118;14463:474;;;;;:::o;14943:180::-;14991:77;14988:1;14981:88;15088:4;15085:1;15078:15;15112:4;15109:1;15102:15;15129:320;15173:6;15210:1;15204:4;15200:12;15190:22;;15257:1;15251:4;15247:12;15278:18;15268:81;;15334:4;15326:6;15322:17;15312:27;;15268:81;15396:2;15388:6;15385:14;15365:18;15362:38;15359:84;;15415:18;;:::i;:::-;15359:84;15180:269;15129:320;;;:::o;15455:182::-;15595:34;15591:1;15583:6;15579:14;15572:58;15455:182;:::o;15643:366::-;15785:3;15806:67;15870:2;15865:3;15806:67;:::i;:::-;15799:74;;15882:93;15971:3;15882:93;:::i;:::-;16000:2;15995:3;15991:12;15984:19;;15643:366;;;:::o;16015:419::-;16181:4;16219:2;16208:9;16204:18;16196:26;;16268:9;16262:4;16258:20;16254:1;16243:9;16239:17;16232:47;16296:131;16422:4;16296:131;:::i;:::-;16288:139;;16015:419;;;:::o;16440:181::-;16580:33;16576:1;16568:6;16564:14;16557:57;16440:181;:::o;16627:366::-;16769:3;16790:67;16854:2;16849:3;16790:67;:::i;:::-;16783:74;;16866:93;16955:3;16866:93;:::i;:::-;16984:2;16979:3;16975:12;16968:19;;16627:366;;;:::o;16999:419::-;17165:4;17203:2;17192:9;17188:18;17180:26;;17252:9;17246:4;17242:20;17238:1;17227:9;17223:17;17216:47;17280:131;17406:4;17280:131;:::i;:::-;17272:139;;16999:419;;;:::o;17424:147::-;17525:11;17562:3;17547:18;;17424:147;;;;:::o;17577:114::-;;:::o;17697:398::-;17856:3;17877:83;17958:1;17953:3;17877:83;:::i;:::-;17870:90;;17969:93;18058:3;17969:93;:::i;:::-;18087:1;18082:3;18078:11;18071:18;;17697:398;;;:::o;18101:379::-;18285:3;18307:147;18450:3;18307:147;:::i;:::-;18300:154;;18471:3;18464:10;;18101:379;;;:::o;18486:180::-;18534:77;18531:1;18524:88;18631:4;18628:1;18621:15;18655:4;18652:1;18645:15;18672:180;18720:77;18717:1;18710:88;18817:4;18814:1;18807:15;18841:4;18838:1;18831:15;18858:233;18897:3;18920:24;18938:5;18920:24;:::i;:::-;18911:33;;18966:66;18959:5;18956:77;18953:103;;19036:18;;:::i;:::-;18953:103;19083:1;19076:5;19072:13;19065:20;;18858:233;;;:::o;19097:170::-;19237:22;19233:1;19225:6;19221:14;19214:46;19097:170;:::o;19273:366::-;19415:3;19436:67;19500:2;19495:3;19436:67;:::i;:::-;19429:74;;19512:93;19601:3;19512:93;:::i;:::-;19630:2;19625:3;19621:12;19614:19;;19273:366;;;:::o;19645:419::-;19811:4;19849:2;19838:9;19834:18;19826:26;;19898:9;19892:4;19888:20;19884:1;19873:9;19869:17;19862:47;19926:131;20052:4;19926:131;:::i;:::-;19918:139;;19645:419;;;:::o;20070:305::-;20110:3;20129:20;20147:1;20129:20;:::i;:::-;20124:25;;20163:20;20181:1;20163:20;:::i;:::-;20158:25;;20317:1;20249:66;20245:74;20242:1;20239:81;20236:107;;;20323:18;;:::i;:::-;20236:107;20367:1;20364;20360:9;20353:16;;20070:305;;;;:::o;20381:170::-;20521:22;20517:1;20509:6;20505:14;20498:46;20381:170;:::o;20557:366::-;20699:3;20720:67;20784:2;20779:3;20720:67;:::i;:::-;20713:74;;20796:93;20885:3;20796:93;:::i;:::-;20914:2;20909:3;20905:12;20898:19;;20557:366;;;:::o;20929:419::-;21095:4;21133:2;21122:9;21118:18;21110:26;;21182:9;21176:4;21172:20;21168:1;21157:9;21153:17;21146:47;21210:131;21336:4;21210:131;:::i;:::-;21202:139;;20929:419;;;:::o;21354:348::-;21394:7;21417:20;21435:1;21417:20;:::i;:::-;21412:25;;21451:20;21469:1;21451:20;:::i;:::-;21446:25;;21639:1;21571:66;21567:74;21564:1;21561:81;21556:1;21549:9;21542:17;21538:105;21535:131;;;21646:18;;:::i;:::-;21535:131;21694:1;21691;21687:9;21676:20;;21354:348;;;;:::o;21708:169::-;21848:21;21844:1;21836:6;21832:14;21825:45;21708:169;:::o;21883:366::-;22025:3;22046:67;22110:2;22105:3;22046:67;:::i;:::-;22039:74;;22122:93;22211:3;22122:93;:::i;:::-;22240:2;22235:3;22231:12;22224:19;;21883:366;;;:::o;22255:419::-;22421:4;22459:2;22448:9;22444:18;22436:26;;22508:9;22502:4;22498:20;22494:1;22483:9;22479:17;22472:47;22536:131;22662:4;22536:131;:::i;:::-;22528:139;;22255:419;;;:::o;22680:173::-;22820:25;22816:1;22808:6;22804:14;22797:49;22680:173;:::o;22859:366::-;23001:3;23022:67;23086:2;23081:3;23022:67;:::i;:::-;23015:74;;23098:93;23187:3;23098:93;:::i;:::-;23216:2;23211:3;23207:12;23200:19;;22859:366;;;:::o;23231:419::-;23397:4;23435:2;23424:9;23420:18;23412:26;;23484:9;23478:4;23474:20;23470:1;23459:9;23455:17;23448:47;23512:131;23638:4;23512:131;:::i;:::-;23504:139;;23231:419;;;:::o;23656:234::-;23796:34;23792:1;23784:6;23780:14;23773:58;23865:17;23860:2;23852:6;23848:15;23841:42;23656:234;:::o;23896:366::-;24038:3;24059:67;24123:2;24118:3;24059:67;:::i;:::-;24052:74;;24135:93;24224:3;24135:93;:::i;:::-;24253:2;24248:3;24244:12;24237:19;;23896:366;;;:::o;24268:419::-;24434:4;24472:2;24461:9;24457:18;24449:26;;24521:9;24515:4;24511:20;24507:1;24496:9;24492:17;24485:47;24549:131;24675:4;24549:131;:::i;:::-;24541:139;;24268:419;;;:::o;24693:148::-;24795:11;24832:3;24817:18;;24693:148;;;;:::o;24847:377::-;24953:3;24981:39;25014:5;24981:39;:::i;:::-;25036:89;25118:6;25113:3;25036:89;:::i;:::-;25029:96;;25134:52;25179:6;25174:3;25167:4;25160:5;25156:16;25134:52;:::i;:::-;25211:6;25206:3;25202:16;25195:23;;24957:267;24847:377;;;;:::o;25230:141::-;25279:4;25302:3;25294:11;;25325:3;25322:1;25315:14;25359:4;25356:1;25346:18;25338:26;;25230:141;;;:::o;25401:845::-;25504:3;25541:5;25535:12;25570:36;25596:9;25570:36;:::i;:::-;25622:89;25704:6;25699:3;25622:89;:::i;:::-;25615:96;;25742:1;25731:9;25727:17;25758:1;25753:137;;;;25904:1;25899:341;;;;25720:520;;25753:137;25837:4;25833:9;25822;25818:25;25813:3;25806:38;25873:6;25868:3;25864:16;25857:23;;25753:137;;25899:341;25966:38;25998:5;25966:38;:::i;:::-;26026:1;26040:154;26054:6;26051:1;26048:13;26040:154;;;26128:7;26122:14;26118:1;26113:3;26109:11;26102:35;26178:1;26169:7;26165:15;26154:26;;26076:4;26073:1;26069:12;26064:17;;26040:154;;;26223:6;26218:3;26214:16;26207:23;;25906:334;;25720:520;;25508:738;;25401:845;;;;:::o;26252:589::-;26477:3;26499:95;26590:3;26581:6;26499:95;:::i;:::-;26492:102;;26611:95;26702:3;26693:6;26611:95;:::i;:::-;26604:102;;26723:92;26811:3;26802:6;26723:92;:::i;:::-;26716:99;;26832:3;26825:10;;26252:589;;;;;;:::o;26847:225::-;26987:34;26983:1;26975:6;26971:14;26964:58;27056:8;27051:2;27043:6;27039:15;27032:33;26847:225;:::o;27078:366::-;27220:3;27241:67;27305:2;27300:3;27241:67;:::i;:::-;27234:74;;27317:93;27406:3;27317:93;:::i;:::-;27435:2;27430:3;27426:12;27419:19;;27078:366;;;:::o;27450:419::-;27616:4;27654:2;27643:9;27639:18;27631:26;;27703:9;27697:4;27693:20;27689:1;27678:9;27674:17;27667:47;27731:131;27857:4;27731:131;:::i;:::-;27723:139;;27450:419;;;:::o;27875:98::-;27926:6;27960:5;27954:12;27944:22;;27875:98;;;:::o;27979:168::-;28062:11;28096:6;28091:3;28084:19;28136:4;28131:3;28127:14;28112:29;;27979:168;;;;:::o;28153:360::-;28239:3;28267:38;28299:5;28267:38;:::i;:::-;28321:70;28384:6;28379:3;28321:70;:::i;:::-;28314:77;;28400:52;28445:6;28440:3;28433:4;28426:5;28422:16;28400:52;:::i;:::-;28477:29;28499:6;28477:29;:::i;:::-;28472:3;28468:39;28461:46;;28243:270;28153:360;;;;:::o;28519:640::-;28714:4;28752:3;28741:9;28737:19;28729:27;;28766:71;28834:1;28823:9;28819:17;28810:6;28766:71;:::i;:::-;28847:72;28915:2;28904:9;28900:18;28891:6;28847:72;:::i;:::-;28929;28997:2;28986:9;28982:18;28973:6;28929:72;:::i;:::-;29048:9;29042:4;29038:20;29033:2;29022:9;29018:18;29011:48;29076:76;29147:4;29138:6;29076:76;:::i;:::-;29068:84;;28519:640;;;;;;;:::o;29165:141::-;29221:5;29252:6;29246:13;29237:22;;29268:32;29294:5;29268:32;:::i;:::-;29165:141;;;;:::o;29312:349::-;29381:6;29430:2;29418:9;29409:7;29405:23;29401:32;29398:119;;;29436:79;;:::i;:::-;29398:119;29556:1;29581:63;29636:7;29627:6;29616:9;29612:22;29581:63;:::i;:::-;29571:73;;29527:127;29312:349;;;;:::o;29667:180::-;29715:77;29712:1;29705:88;29812:4;29809:1;29802:15;29836:4;29833:1;29826:15;29853:185;29893:1;29910:20;29928:1;29910:20;:::i;:::-;29905:25;;29944:20;29962:1;29944:20;:::i;:::-;29939:25;;29983:1;29973:35;;29988:18;;:::i;:::-;29973:35;30030:1;30027;30023:9;30018:14;;29853:185;;;;:::o;30044:191::-;30084:4;30104:20;30122:1;30104:20;:::i;:::-;30099:25;;30138:20;30156:1;30138:20;:::i;:::-;30133:25;;30177:1;30174;30171:8;30168:34;;;30182:18;;:::i;:::-;30168:34;30227:1;30224;30220:9;30212:17;;30044:191;;;;:::o;30241:176::-;30273:1;30290:20;30308:1;30290:20;:::i;:::-;30285:25;;30324:20;30342:1;30324:20;:::i;:::-;30319:25;;30363:1;30353:35;;30368:18;;:::i;:::-;30353:35;30409:1;30406;30402:9;30397:14;;30241:176;;;;:::o
Swarm Source
ipfs://8a0a0ef00b622d746ce2cb5c660aa8767ace4f7a94d6b7ae053e2e6e50600122
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.