ERC-721
Overview
Max Total Supply
1,013 MECHA
Holders
157
Total Transfers
-
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MechagnomesNFT
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: AGPL-3.0-or-later pragma solidity ^0.8.0; import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol"; import { ERC721 } from "./ERC721.sol"; import { Address } from "@openzeppelin/contracts/utils/Address.sol"; import { Pausable } from "@openzeppelin/contracts/security/Pausable.sol"; contract MechagnomesNFT is ERC721, Pausable, Ownable { uint256 public immutable totalMintSupply = 7654; uint256 public immutable protocolReserveCount = 100; uint256 public mintPrice; uint256 public maxMintPerWallet = 50; uint256 public maxMintPerTx = 10; uint256 internal whitelistReserveCount; uint256 internal whitelistMintCount; mapping(address => uint8) public whiteListRegistrations; mapping(address => uint8) public freeMints; bool internal whitelistSaleActive; bool internal publicSaleActive; event SaleStarted(bool whitelist); event RegisteredWhitelisters(address[] registrants); event MintedMechagnome(bool whitelist, uint256 amount, bool claimed); event ContractPaused(); event ContractUnpaused(); event FreeMintsDistributed(uint256 addressCount, uint256 freeCount); constructor( string memory name, string memory symbol, string memory uri, uint256 _mintPrice ) ERC721(name, symbol) { _setBaseURI(uri); mintPrice = _mintPrice; } function isWhitelistSale() public view returns (bool) { return whitelistSaleActive; } function isPublicSale() public view returns (bool) { return publicSaleActive; } function getMintPrice() public view returns (uint256) { return mintPrice; } function setMintPrice(uint256 price) external onlyOwner { require(price >= 0 && price != mintPrice, "price_zero_or_set"); mintPrice = price; } function withdraw() external onlyOwner { uint256 balance = address(this).balance; Address.sendValue(payable(owner()), balance); } function mint(uint8 amount) external payable canMint(amount) onlySale whenNotPaused { uint256 _mintCost = mintPrice * amount; require(_mintCost <= msg.value, "invalid_ether_amount"); bool whitelistSale = isWhitelistSale(); uint256 supply = totalSupply(); for(uint256 i = 0; i < amount; i++) { _safeMint(msg.sender, supply + i); } if(whitelistSale) { whiteListRegistrations[msg.sender] -= amount; whitelistReserveCount -= amount; } emit MintedMechagnome(whitelistSale, amount, false); } function claimFree(uint8 amount) external canClaim(amount) whenNotPaused { uint256 supply = totalSupply(); for(uint256 i = 0; i < amount; i++) { _safeMint(msg.sender, supply + i); } freeMints[msg.sender] -= amount; emit MintedMechagnome(isWhitelistSale(), amount, true); } function grantFree(address[] calldata addresses, uint8[] calldata amounts) external onlyOwner { require(addresses.length == amounts.length, "invalid_address_amounts"); for(uint256 i = 0; i < addresses.length; i++) { freeMints[addresses[i]] += amounts[i]; } emit FreeMintsDistributed(addresses.length, amounts.length); } function tokensOfOwner(address _owner) external view returns(uint256[] memory result) { uint256 tokenCount = balanceOf(_owner); if (tokenCount == 0) { // Return an empty array result = new uint256[](0); } else { result = new uint256[](tokenCount); uint256 index; for (index = 0; index < tokenCount; index++) { result[index] = tokenOfOwnerByIndex(_owner, index); } } } function startWhitelist(uint totalReserveCount) external onlyOwner { require(!isWhitelistSale() && !isPublicSale(), "existing_sale_running"); require(totalReserveCount > 0, "reserveCount_zero"); whitelistReserveCount = totalReserveCount; whitelistSaleActive = true; emit SaleStarted(true); } function startPublicSale() external onlyOwner { require(!isPublicSale(), "existing_sale_running"); whitelistSaleActive = false; whitelistReserveCount = 0; publicSaleActive = true; emit SaleStarted(false); } function registerWhitelisters(address[] calldata registrants, uint8 perAddressCount, bool freeMint, uint8 freeMintCount) external onlyOwner { require(registrants.length > 0, "registrants_empty"); require(perAddressCount >= 0, "per_address_count_zero"); for(uint256 i = 0; i < registrants.length; i++) { address registrant = registrants[i]; // ignore if whitelister has already been added. if(whiteListRegistrations[registrant] == 0) { whiteListRegistrations[registrant] = perAddressCount; if(freeMint) { freeMints[registrant] += freeMintCount; } } } emit RegisteredWhitelisters(registrants); } function getRemainingMintable() external view returns (uint256) { return whitelistSaleActive ? whitelistReserveCount : (totalMintSupply - totalSupply()) - protocolReserveCount; } function getReservedCountForWhitelister() external view returns (uint256 amount) { amount = whiteListRegistrations[msg.sender]; } function getFreeMintCount() external view returns (uint256 amount) { amount = freeMints[msg.sender]; } function pause() external onlyOwner whenNotPaused { super._pause(); emit ContractPaused(); } function unpause() external onlyOwner whenPaused { super._unpause(); emit ContractUnpaused(); } function setBaseURI(string memory uri) external onlyOwner { _setBaseURI(uri); } modifier canMint(uint256 amount) { require(isWhitelistSale() || isPublicSale(), "no_active_sale"); require(amount > 0, "amount_leq_zero"); require(totalSupply() + amount <= totalMintSupply - protocolReserveCount, "exceeds_total_supply"); require(amount <= maxMintPerTx, "exceeds_maxMintPerTx"); require(balanceOf(msg.sender) + amount <= maxMintPerWallet, "exceeds_max_mint"); if(isWhitelistSale()) { require(whitelistReserveCount >= amount, "exceeds_whitelist_reserve"); uint8 reservedCount = whiteListRegistrations[msg.sender]; require(amount <= reservedCount, "exceeds_whitelist_allowance"); } _; } modifier canClaim(uint256 amount) { require(amount > 0, "amount_zero"); require(freeMints[msg.sender] >= amount, "amount_exceeds_Free_mints"); _; } modifier onlySale() { if(isWhitelistSale()) { require(whiteListRegistrations[msg.sender] > 0, "not_whitelisted"); } _; } }
// SPDX-License-Identifier: AGPL-3.0-or-later pragma solidity ^0.8.0; import { IERC165 } from "@openzeppelin/contracts/utils/introspection/IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts may inherit from this and call {_registerInterface} to declare * their support of an interface. */ abstract contract ERC165 is IERC165 { /* * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7 */ bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7; /** * @dev Mapping of interface ids to whether or not it's supported. */ mapping(bytes4 => bool) private _supportedInterfaces; constructor () internal { // Derived contracts need only register support for their own interfaces, // we register support for ERC165 itself here _registerInterface(_INTERFACE_ID_ERC165); } /** * @dev See {IERC165-supportsInterface}. * * Time complexity O(1), guaranteed to always use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return _supportedInterfaces[interfaceId]; } /** * @dev Registers the contract as an implementer of the interface defined by * `interfaceId`. Support of the actual ERC165 interface is automatic and * registering its interface id is not required. * * See {IERC165-supportsInterface}. * * Requirements: * * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`). */ function _registerInterface(bytes4 interfaceId) internal virtual { require(interfaceId != 0xffffffff, "ERC165: invalid interface id"); _supportedInterfaces[interfaceId] = true; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (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); }
// SPDX-License-Identifier: AGPL-3.0-or-later pragma solidity ^0.8.0; import { Context } from "@openzeppelin/contracts/utils/Context.sol"; import { ERC165 } from "./ERC165.sol"; import { IERC721 } from "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import { IERC721Metadata } from "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol"; import { IERC721Enumerable } from "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol"; import { SafeMath } from "@openzeppelin/contracts/utils/math/SafeMath.sol"; import { Address } from "@openzeppelin/contracts/utils/Address.sol"; import { Strings } from "@openzeppelin/contracts/utils/Strings.sol"; import { EnumerableSet } from "@openzeppelin/contracts/utils/structs/EnumerableSet.sol"; import { EnumerableMap } from "@openzeppelin/contracts/utils/structs/EnumerableMap.sol"; import { IERC721Receiver } from "./IERC721Receiver.sol"; /** * @title ERC721 Non-Fungible Token Standard basic implementation * @dev see https://eips.ethereum.org/EIPS/eip-721 */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using SafeMath for uint256; using Address for address; using EnumerableSet for EnumerableSet.UintSet; using EnumerableMap for EnumerableMap.UintToAddressMap; using Strings for uint256; // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector` bytes4 private constant _ERC721_RECEIVED = 0x150b7a02; // Mapping from holder address to their (enumerable) set of owned tokens mapping (address => EnumerableSet.UintSet) private _holderTokens; // Enumerable mapping from token ids to their owners EnumerableMap.UintToAddressMap private _tokenOwners; // 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; // Token name string private _name; // Token symbol string private _symbol; // Optional mapping for token URIs mapping (uint256 => string) private _tokenURIs; // Base URI string private _baseURI; /* * bytes4(keccak256('balanceOf(address)')) == 0x70a08231 * bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e * bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3 * bytes4(keccak256('getApproved(uint256)')) == 0x081812fc * bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465 * bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5 * bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd * bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e * bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde * * => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^ * 0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd */ bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd; /* * bytes4(keccak256('name()')) == 0x06fdde03 * bytes4(keccak256('symbol()')) == 0x95d89b41 * bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd * * => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f */ bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f; /* * bytes4(keccak256('totalSupply()')) == 0x18160ddd * bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59 * bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7 * * => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63 */ bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor (string memory name_, string memory symbol_) public { _name = name_; _symbol = symbol_; // register the supported interfaces to conform to ERC721 via ERC165 _registerInterface(_INTERFACE_ID_ERC721); _registerInterface(_INTERFACE_ID_ERC721_METADATA); _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _holderTokens[owner].length(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token"); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI. return string(abi.encodePacked(base, tokenId.toString())); } /** * @dev Returns the base URI set via {_setBaseURI}. This will be * automatically added as a prefix in {tokenURI} to each token's URI, or * to the token ID if no specific URI is set for that token ID. */ function baseURI() public view virtual returns (string memory) { return _baseURI; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { return _holderTokens[owner].at(index); } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds return _tokenOwners.length(); } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { (uint256 tokenId, ) = _tokenOwners.at(index); return tokenId; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require(_msgSender() == owner || ERC721.isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _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 { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _tokenOwners.contains(tokenId); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || ERC721.isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: d* * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual { _mint(to, tokenId); require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _holderTokens[to].add(tokenId); _tokenOwners.set(tokenId, to); emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); // internal owner _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); // Clear metadata (if any) if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } _holderTokens[owner].remove(tokenId); _tokenOwners.remove(tokenId); emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer(address from, address to, uint256 tokenId) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); // internal owner require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _holderTokens[from].remove(tokenId); _holderTokens[to].add(tokenId); _tokenOwners.set(tokenId, to); emit Transfer(from, to, tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @dev Internal function to set the base URI for all token IDs. It is * automatically added as a prefix to the value returned in {tokenURI}, * or to the token ID if {tokenURI} is empty. */ function _setBaseURI(string memory baseURI_) internal virtual { _baseURI = baseURI_; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data) private returns (bool) { if (!to.isContract()) { return true; } bytes memory returndata = to.functionCall(abi.encodeWithSelector( IERC721Receiver(to).onERC721Received.selector, _msgSender(), from, tokenId, _data ), "ERC721: transfer to non ERC721Receiver implementer"); bytes4 retval = abi.decode(returndata, (bytes4)); return (retval == _ERC721_RECEIVED); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); // internal owner } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/structs/EnumerableSet.sol) pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { return _values(set._inner); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; assembly { result := store } return result; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/structs/EnumerableMap.sol) pragma solidity ^0.8.0; import "./EnumerableSet.sol"; /** * @dev Library for managing an enumerable variant of Solidity's * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`] * type. * * Maps have the following properties: * * - Entries are added, removed, and checked for existence in constant time * (O(1)). * - Entries are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableMap for EnumerableMap.UintToAddressMap; * * // Declare a set state variable * EnumerableMap.UintToAddressMap private myMap; * } * ``` * * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are * supported. */ library EnumerableMap { using EnumerableSet for EnumerableSet.Bytes32Set; // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Map type with // bytes32 keys and values. // The Map implementation uses private functions, and user-facing // implementations (such as Uint256ToAddressMap) are just wrappers around // the underlying Map. // This means that we can only create new EnumerableMaps for types that fit // in bytes32. struct Map { // Storage of keys EnumerableSet.Bytes32Set _keys; mapping(bytes32 => bytes32) _values; } /** * @dev Adds a key-value pair to a map, or updates the value for an existing * key. O(1). * * Returns true if the key was added to the map, that is if it was not * already present. */ function _set( Map storage map, bytes32 key, bytes32 value ) private returns (bool) { map._values[key] = value; return map._keys.add(key); } /** * @dev Removes a key-value pair from a map. O(1). * * Returns true if the key was removed from the map, that is if it was present. */ function _remove(Map storage map, bytes32 key) private returns (bool) { delete map._values[key]; return map._keys.remove(key); } /** * @dev Returns true if the key is in the map. O(1). */ function _contains(Map storage map, bytes32 key) private view returns (bool) { return map._keys.contains(key); } /** * @dev Returns the number of key-value pairs in the map. O(1). */ function _length(Map storage map) private view returns (uint256) { return map._keys.length(); } /** * @dev Returns the key-value pair stored at position `index` in the map. O(1). * * Note that there are no guarantees on the ordering of entries inside the * array, and it may change when more entries are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Map storage map, uint256 index) private view returns (bytes32, bytes32) { bytes32 key = map._keys.at(index); return (key, map._values[key]); } /** * @dev Tries to returns the value associated with `key`. O(1). * Does not revert if `key` is not in the map. */ function _tryGet(Map storage map, bytes32 key) private view returns (bool, bytes32) { bytes32 value = map._values[key]; if (value == bytes32(0)) { return (_contains(map, key), bytes32(0)); } else { return (true, value); } } /** * @dev Returns the value associated with `key`. O(1). * * Requirements: * * - `key` must be in the map. */ function _get(Map storage map, bytes32 key) private view returns (bytes32) { bytes32 value = map._values[key]; require(value != 0 || _contains(map, key), "EnumerableMap: nonexistent key"); return value; } /** * @dev Same as {_get}, with a custom error message when `key` is not in the map. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {_tryGet}. */ function _get( Map storage map, bytes32 key, string memory errorMessage ) private view returns (bytes32) { bytes32 value = map._values[key]; require(value != 0 || _contains(map, key), errorMessage); return value; } // UintToAddressMap struct UintToAddressMap { Map _inner; } /** * @dev Adds a key-value pair to a map, or updates the value for an existing * key. O(1). * * Returns true if the key was added to the map, that is if it was not * already present. */ function set( UintToAddressMap storage map, uint256 key, address value ) internal returns (bool) { return _set(map._inner, bytes32(key), bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the key was removed from the map, that is if it was present. */ function remove(UintToAddressMap storage map, uint256 key) internal returns (bool) { return _remove(map._inner, bytes32(key)); } /** * @dev Returns true if the key is in the map. O(1). */ function contains(UintToAddressMap storage map, uint256 key) internal view returns (bool) { return _contains(map._inner, bytes32(key)); } /** * @dev Returns the number of elements in the map. O(1). */ function length(UintToAddressMap storage map) internal view returns (uint256) { return _length(map._inner); } /** * @dev Returns the element stored at position `index` in the set. O(1). * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintToAddressMap storage map, uint256 index) internal view returns (uint256, address) { (bytes32 key, bytes32 value) = _at(map._inner, index); return (uint256(key), address(uint160(uint256(value)))); } /** * @dev Tries to returns the value associated with `key`. O(1). * Does not revert if `key` is not in the map. * * _Available since v3.4._ */ function tryGet(UintToAddressMap storage map, uint256 key) internal view returns (bool, address) { (bool success, bytes32 value) = _tryGet(map._inner, bytes32(key)); return (success, address(uint160(uint256(value)))); } /** * @dev Returns the value associated with `key`. O(1). * * Requirements: * * - `key` must be in the map. */ function get(UintToAddressMap storage map, uint256 key) internal view returns (address) { return address(uint160(uint256(_get(map._inner, bytes32(key))))); } /** * @dev Same as {get}, with a custom error message when `key` is not in the map. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryGet}. */ function get( UintToAddressMap storage map, uint256 key, string memory errorMessage ) internal view returns (address) { return address(uint160(uint256(_get(map._inner, bytes32(key), errorMessage)))); } }
// SPDX-License-Identifier: AGPL-3.0-or-later pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"uri","type":"string"},{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[],"name":"ContractPaused","type":"event"},{"anonymous":false,"inputs":[],"name":"ContractUnpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"addressCount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"freeCount","type":"uint256"}],"name":"FreeMintsDistributed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"whitelist","type":"bool"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"bool","name":"claimed","type":"bool"}],"name":"MintedMechagnome","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"registrants","type":"address[]"}],"name":"RegisteredWhitelisters","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"whitelist","type":"bool"}],"name":"SaleStarted","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"amount","type":"uint8"}],"name":"claimFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeMints","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getFreeMintCount","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRemainingMintable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReservedCountForWhitelister","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint8[]","name":"amounts","type":"uint8[]"}],"name":"grantFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isWhitelistSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"amount","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"protocolReserveCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"registrants","type":"address[]"},{"internalType":"uint8","name":"perAddressCount","type":"uint8"},{"internalType":"bool","name":"freeMint","type":"bool"},{"internalType":"uint8","name":"freeMintCount","type":"uint8"}],"name":"registerWhitelisters","outputs":[],"stateMutability":"nonpayable","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":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"totalReserveCount","type":"uint256"}],"name":"startWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"result","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whiteListRegistrations","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c0604052611de6608052606460a0526032600d55600a600e553480156200002657600080fd5b506040516200383a3803806200383a83398101604081905262000049916200033e565b83836200005d6301ffc9a760e01b620000ee565b815162000072906007906020850190620001e5565b50805162000088906008906020840190620001e5565b506200009b6380ac58cd60e01b620000ee565b620000ad635b5e139f60e01b620000ee565b620000bf63780e9d6360e01b620000ee565b5050600b805460ff19169055620000d63362000172565b620000e182620001cc565b600c555062000426915050565b6001600160e01b031980821614156200014d5760405162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015260640160405180910390fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b600b80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8051620001e190600a906020840190620001e5565b5050565b828054620001f390620003d3565b90600052602060002090601f01602090048101928262000217576000855562000262565b82601f106200023257805160ff191683800117855562000262565b8280016001018555821562000262579182015b828111156200026257825182559160200191906001019062000245565b506200027092915062000274565b5090565b5b8082111562000270576000815560010162000275565b600082601f8301126200029c578081fd5b81516001600160401b0380821115620002b957620002b962000410565b604051601f8301601f19908116603f01168101908282118183101715620002e457620002e462000410565b8160405283815260209250868385880101111562000300578485fd5b8491505b8382101562000323578582018301518183018401529082019062000304565b838211156200033457848385830101525b9695505050505050565b6000806000806080858703121562000354578384fd5b84516001600160401b03808211156200036b578586fd5b62000379888389016200028b565b955060208701519150808211156200038f578485fd5b6200039d888389016200028b565b94506040870151915080821115620003b3578384fd5b50620003c2878288016200028b565b606096909601519497939650505050565b600181811c90821680620003e857607f821691505b602082108114156200040a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160a0516133d2620004686000396000818161041401528181610e45015261122a01526000818161063601528181610e66015261125701526133d26000f3fe60806040526004361061027d5760003560e01c806370a082311161014f578063b0b3d12c116100c1578063e985e9c51161007a578063e985e9c51461078e578063ec89b371146107d7578063f1c9289d146107fc578063f2fde38b1461081c578063f4a0a5281461083c578063fbd910691461085c57600080fd5b8063b0b3d12c146106e2578063b228d92514610702578063b88d4fde14610718578063bbe0150c14610738578063c87b56dd14610758578063de7fcb1d1461077857600080fd5b806385e0832c1161011357806385e0832c146106245780638da5cb5b1461065857806395d89b411461067b578063a22cb46514610690578063a5a865dc146106b0578063a7f93ebd146106cd57600080fd5b806370a082311461058d578063715018a6146105ad57806375e64227146105c25780638456cb59146105e25780638462151c146105f757600080fd5b80633ccfd60b116101f35780636352211e116101ac5780636352211e146104d85780636817c76c146104f85780636c0360eb1461050e5780636d41d4fb146105235780636ecd2306146105655780636f97e31c1461057857600080fd5b80633ccfd60b146104365780633f4ba83a1461044b57806342842e0e146104605780634f6ccce71461048057806355f804b3146104a05780635c975abb146104c057600080fd5b80631455b1e2116102455780631455b1e21461036257806318160ddd1461037a5780631c7a99a61461039d57806323b872dd146103c25780632f745c59146103e257806339a415af1461040257600080fd5b806301ffc9a71461028257806306fdde03146102d1578063081812fc146102f3578063095ea7b31461032b5780630c1c972a1461034d575b600080fd5b34801561028e57600080fd5b506102bc61029d366004612ea6565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b3480156102dd57600080fd5b506102e661088c565b6040516102c8919061309a565b3480156102ff57600080fd5b5061031361030e366004612f24565b61091e565b6040516001600160a01b0390911681526020016102c8565b34801561033757600080fd5b5061034b610346366004612da0565b6109ab565b005b34801561035957600080fd5b5061034b610ac1565b34801561036e57600080fd5b5060135460ff166102bc565b34801561038657600080fd5b5061038f610b90565b6040519081526020016102c8565b3480156103a957600080fd5b503360009081526012602052604090205460ff1661038f565b3480156103ce57600080fd5b5061034b6103dd366004612cc3565b610ba1565b3480156103ee57600080fd5b5061038f6103fd366004612da0565b610bd2565b34801561040e57600080fd5b5061038f7f000000000000000000000000000000000000000000000000000000000000000081565b34801561044257600080fd5b5061034b610bfd565b34801561045757600080fd5b5061034b610c52565b34801561046c57600080fd5b5061034b61047b366004612cc3565b610cfe565b34801561048c57600080fd5b5061038f61049b366004612f24565b610d19565b3480156104ac57600080fd5b5061034b6104bb366004612ede565b610d2f565b3480156104cc57600080fd5b50600b5460ff166102bc565b3480156104e457600080fd5b506103136104f3366004612f24565b610d68565b34801561050457600080fd5b5061038f600c5481565b34801561051a57600080fd5b506102e6610d90565b34801561052f57600080fd5b5061055361053e366004612c77565b60126020526000908152604090205460ff1681565b60405160ff90911681526020016102c8565b61034b610573366004612f3c565b610d9f565b34801561058457600080fd5b5061038f61121b565b34801561059957600080fd5b5061038f6105a8366004612c77565b61128c565b3480156105b957600080fd5b5061034b611318565b3480156105ce57600080fd5b5061034b6105dd366004612e32565b611354565b3480156105ee57600080fd5b5061034b6114de565b34801561060357600080fd5b50610617610612366004612c77565b611564565b6040516102c89190613056565b34801561063057600080fd5b5061038f7f000000000000000000000000000000000000000000000000000000000000000081565b34801561066457600080fd5b50600b5461010090046001600160a01b0316610313565b34801561068757600080fd5b506102e661163b565b34801561069c57600080fd5b5061034b6106ab366004612d77565b61164a565b3480156106bc57600080fd5b50601354610100900460ff166102bc565b3480156106d957600080fd5b50600c5461038f565b3480156106ee57600080fd5b5061034b6106fd366004612f3c565b61170f565b34801561070e57600080fd5b5061038f600d5481565b34801561072457600080fd5b5061034b610733366004612cfe565b6118a0565b34801561074457600080fd5b5061034b610753366004612dc9565b6118d8565b34801561076457600080fd5b506102e6610773366004612f24565b611a69565b34801561078457600080fd5b5061038f600e5481565b34801561079a57600080fd5b506102bc6107a9366004612c91565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156107e357600080fd5b503360009081526011602052604090205460ff1661038f565b34801561080857600080fd5b5061034b610817366004612f24565b611bdb565b34801561082857600080fd5b5061034b610837366004612c77565b611cf9565b34801561084857600080fd5b5061034b610857366004612f24565b611d97565b34801561086857600080fd5b50610553610877366004612c77565b60116020526000908152604090205460ff1681565b60606007805461089b90613285565b80601f01602080910402602001604051908101604052809291908181526020018280546108c790613285565b80156109145780601f106108e957610100808354040283529160200191610914565b820191906000526020600020905b8154815290600101906020018083116108f757829003601f168201915b5050505050905090565b600061092982611e12565b61098f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006109b682610d68565b9050806001600160a01b0316836001600160a01b03161415610a245760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610986565b336001600160a01b0382161480610a405750610a4081336107a9565b610ab25760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610986565b610abc8383611e1f565b505050565b600b546001600160a01b03610100909104163314610af15760405162461bcd60e51b815260040161098690613129565b601354610100900460ff1615610b415760405162461bcd60e51b81526020600482015260156024820152746578697374696e675f73616c655f72756e6e696e6760581b6044820152606401610986565b601380546000600f81905561ffff19909116610100179091556040519081527f7c88cd5705b17da0853ab081ee5a1690e33ea803e30bf9f4b8245924210fc0a8906020015b60405180910390a1565b6000610b9c6002611e8d565b905090565b610bab3382611e98565b610bc75760405162461bcd60e51b81526004016109869061315e565b610abc838383611f82565b6001600160a01b0382166000908152600160205260408120610bf49083612103565b90505b92915050565b600b546001600160a01b03610100909104163314610c2d5760405162461bcd60e51b815260040161098690613129565b47610c4f610c49600b546001600160a01b036101009091041690565b8261210f565b50565b600b546001600160a01b03610100909104163314610c825760405162461bcd60e51b815260040161098690613129565b600b5460ff16610ccb5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610986565b610cd3612228565b6040517f0e5e3b3fb504c22cf5c42fa07d521225937514c654007e1f12646f89768d6f9490600090a1565b610abc838383604051806020016040528060008152506118a0565b600080610d276002846122b6565b509392505050565b600b546001600160a01b03610100909104163314610d5f5760405162461bcd60e51b815260040161098690613129565b610c4f816122d4565b6000610bf78260405180606001604052806029815260200161337460299139600291906122eb565b6060600a805461089b90613285565b8060ff16610daf60135460ff1690565b80610dc15750601354610100900460ff165b610dfe5760405162461bcd60e51b815260206004820152600e60248201526d6e6f5f6163746976655f73616c6560901b6044820152606401610986565b60008111610e405760405162461bcd60e51b815260206004820152600f60248201526e616d6f756e745f6c65715f7a65726f60881b6044820152606401610986565b610e8a7f00000000000000000000000000000000000000000000000000000000000000007f000000000000000000000000000000000000000000000000000000000000000061321f565b81610e93610b90565b610e9d91906131af565b1115610ee25760405162461bcd60e51b8152602060048201526014602482015273657863656564735f746f74616c5f737570706c7960601b6044820152606401610986565b600e54811115610f2b5760405162461bcd60e51b81526020600482015260146024820152730caf0c6cacac8e6bedac2f09ad2dce8a0cae4a8f60631b6044820152606401610986565b600d5481610f383361128c565b610f4291906131af565b1115610f835760405162461bcd60e51b815260206004820152601060248201526f195e18d959591cd7db585e17db5a5b9d60821b6044820152606401610986565b60135460ff16156110455780600f541015610fe05760405162461bcd60e51b815260206004820152601960248201527f657863656564735f77686974656c6973745f72657365727665000000000000006044820152606401610986565b3360009081526011602052604090205460ff16808211156110435760405162461bcd60e51b815260206004820152601b60248201527f657863656564735f77686974656c6973745f616c6c6f77616e636500000000006044820152606401610986565b505b60135460ff16156110a1573360009081526011602052604090205460ff166110a15760405162461bcd60e51b815260206004820152600f60248201526e1b9bdd17ddda1a5d195b1a5cdd1959608a1b6044820152606401610986565b600b5460ff16156110c45760405162461bcd60e51b8152600401610986906130ff565b60008260ff16600c546110d79190613200565b9050348111156111205760405162461bcd60e51b81526020600482015260146024820152731a5b9d985b1a5917d95d1a195c97d85b5bdd5b9d60621b6044820152606401610986565b600061112e60135460ff1690565b9050600061113a610b90565b905060005b8560ff1681101561116f5761115d3361115883856131af565b612302565b80611167816132ba565b91505061113f565b5081156111cb57336000908152601160205260408120805487929061119890849060ff16613236565b92506101000a81548160ff021916908360ff1602179055508460ff16600f60008282546111c5919061321f565b90915550505b60408051831515815260ff871660208201526000918101919091527f643bb96fde88049b069cb02dcddcf99cdf502ff55a0af8a791dbb2da95b0785c906060015b60405180910390a15050505050565b60135460009060ff16611285577f0000000000000000000000000000000000000000000000000000000000000000611251610b90565b61127b907f000000000000000000000000000000000000000000000000000000000000000061321f565b610b9c919061321f565b50600f5490565b60006001600160a01b0382166112f75760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610986565b6001600160a01b0382166000908152600160205260409020610bf79061231c565b600b546001600160a01b036101009091041633146113485760405162461bcd60e51b815260040161098690613129565b6113526000612326565b565b600b546001600160a01b036101009091041633146113845760405162461bcd60e51b815260040161098690613129565b836113c55760405162461bcd60e51b815260206004820152601160248201527072656769737472616e74735f656d70747960781b6044820152606401610986565b60005b848110156114ac5760008686838181106113f257634e487b7160e01b600052603260045260246000fd5b90506020020160208101906114079190612c77565b6001600160a01b03811660009081526011602052604090205490915060ff16611499576001600160a01b0381166000908152601160205260409020805460ff191660ff87161790558315611499576001600160a01b0381166000908152601260205260408120805485929061148090849060ff166131c7565b92506101000a81548160ff021916908360ff1602179055505b50806114a4816132ba565b9150506113c8565b507fbe2fa669e471e1e296eff6f67767fc679509036c413e143c1c5c2d263e8ecfa2858560405161120c92919061300a565b600b546001600160a01b0361010090910416331461150e5760405162461bcd60e51b815260040161098690613129565b600b5460ff16156115315760405162461bcd60e51b8152600401610986906130ff565b611539612380565b6040517fab35696f06e428ebc5ceba8cd17f8fed287baf43440206d1943af1ee53e6d26790600090a1565b606060006115718361128c565b90508061158e576040805160008152602081019091529150611635565b8067ffffffffffffffff8111156115b557634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156115de578160200160208202803683370190505b50915060005b81811015611633576115f68482610bd2565b83828151811061161657634e487b7160e01b600052603260045260246000fd5b60209081029190910101528061162b816132ba565b9150506115e4565b505b50919050565b60606008805461089b90613285565b6001600160a01b0382163314156116a35760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610986565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b8060ff16600081116117515760405162461bcd60e51b815260206004820152600b60248201526a616d6f756e745f7a65726f60a81b6044820152606401610986565b3360009081526012602052604090205460ff168111156117b35760405162461bcd60e51b815260206004820152601960248201527f616d6f756e745f657863656564735f467265655f6d696e7473000000000000006044820152606401610986565b600b5460ff16156117d65760405162461bcd60e51b8152600401610986906130ff565b60006117e0610b90565b905060005b8360ff16811015611810576117fe3361115883856131af565b80611808816132ba565b9150506117e5565b50336000908152601260205260408120805485929061183390849060ff16613236565b92506101000a81548160ff021916908360ff1602179055507f643bb96fde88049b069cb02dcddcf99cdf502ff55a0af8a791dbb2da95b0785c61187860135460ff1690565b60408051911515825260ff8616602083015260019082015260600160405180910390a1505050565b6118aa3383611e98565b6118c65760405162461bcd60e51b81526004016109869061315e565b6118d2848484846123d8565b50505050565b600b546001600160a01b036101009091041633146119085760405162461bcd60e51b815260040161098690613129565b8281146119575760405162461bcd60e51b815260206004820152601760248201527f696e76616c69645f616464726573735f616d6f756e74730000000000000000006044820152606401610986565b60005b83811015611a295782828281811061198257634e487b7160e01b600052603260045260246000fd5b90506020020160208101906119979190612f3c565b601260008787858181106119bb57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906119d09190612c77565b6001600160a01b031681526020810191909152604001600090812080549091906119fe90849060ff166131c7565b92506101000a81548160ff021916908360ff1602179055508080611a21906132ba565b91505061195a565b5060408051848152602081018390527fd7ff80107f7e8636912d59f2120007e42539a3b8abdaeb5cc250a74ff5858758910160405180910390a150505050565b6060611a7482611e12565b611ad85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610986565b60008281526009602052604081208054611af190613285565b80601f0160208091040260200160405190810160405280929190818152602001828054611b1d90613285565b8015611b6a5780601f10611b3f57610100808354040283529160200191611b6a565b820191906000526020600020905b815481529060010190602001808311611b4d57829003601f168201915b505050505090506000611b7b610d90565b9050805160001415611b8e575092915050565b815115611bc0578082604051602001611ba8929190612f9e565b60405160208183030381529060405292505050919050565b80611bca8561240b565b604051602001611ba8929190612f9e565b600b546001600160a01b03610100909104163314611c0b5760405162461bcd60e51b815260040161098690613129565b60135460ff16158015611c265750601354610100900460ff16155b611c6a5760405162461bcd60e51b81526020600482015260156024820152746578697374696e675f73616c655f72756e6e696e6760581b6044820152606401610986565b60008111611cae5760405162461bcd60e51b815260206004820152601160248201527072657365727665436f756e745f7a65726f60781b6044820152606401610986565b600f8190556013805460ff191660019081179091556040519081527f7c88cd5705b17da0853ab081ee5a1690e33ea803e30bf9f4b8245924210fc0a89060200160405180910390a150565b600b546001600160a01b03610100909104163314611d295760405162461bcd60e51b815260040161098690613129565b6001600160a01b038116611d8e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610986565b610c4f81612326565b600b546001600160a01b03610100909104163314611dc75760405162461bcd60e51b815260040161098690613129565b600c54811415611e0d5760405162461bcd60e51b81526020600482015260116024820152701c1c9a58d957de995c9bd7dbdc97dcd95d607a1b6044820152606401610986565b600c55565b6000610bf7600283612525565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611e5482610d68565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610bf782612531565b6000611ea382611e12565b611f045760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610986565b6000611f0f83610d68565b9050806001600160a01b0316846001600160a01b03161480611f4a5750836001600160a01b0316611f3f8461091e565b6001600160a01b0316145b80611f7a57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611f9582610d68565b6001600160a01b031614611ffd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610986565b6001600160a01b03821661205f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610986565b61206a600082611e1f565b6001600160a01b038316600090815260016020526040902061208c908261253c565b506001600160a01b03821660009081526001602052604090206120af9082612548565b506120bc60028284612554565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000610bf4838361256a565b8047101561215f5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610986565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146121ac576040519150601f19603f3d011682016040523d82523d6000602084013e6121b1565b606091505b5050905080610abc5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610986565b600b5460ff166122715760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610986565b600b805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b039091168152602001610b86565b60008080806122c586866125a2565b909450925050505b9250929050565b80516122e790600a906020840190612ae8565b5050565b60006122f88484846125cd565b90505b9392505050565b6122e7828260405180602001604052806000815250612619565b6000610bf7825490565b600b80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600b5460ff16156123a35760405162461bcd60e51b8152600401610986906130ff565b600b805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861229e3390565b6123e3848484611f82565b6123ef8484848461264c565b6118d25760405162461bcd60e51b8152600401610986906130ad565b60608161242f5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156124595780612443816132ba565b91506124529050600a836131ec565b9150612433565b60008167ffffffffffffffff81111561248257634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156124ac576020820181803683370190505b5090505b8415611f7a576124c160018361321f565b91506124ce600a866132d5565b6124d99060306131af565b60f81b8183815181106124fc57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061251e600a866131ec565b94506124b0565b6000610bf4838361271d565b6000610bf78261231c565b6000610bf4838361273c565b6000610bf48383612859565b60006122f884846001600160a01b0385166128a8565b600082600001828154811061258f57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b600080806125b08585612103565b600081815260029690960160205260409095205494959350505050565b6000828152600284016020526040812054801515806125f157506125f1858561271d565b83906126105760405162461bcd60e51b8152600401610986919061309a565b50949350505050565b61262383836128c5565b612630600084848461264c565b610abc5760405162461bcd60e51b8152600401610986906130ad565b60006001600160a01b0384163b61266557506001611f7a565b60006126e6630a85bd0160e11b338887876040516024016126899493929190612fcd565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b038381831617835250505050604051806060016040528060328152602001613342603291396001600160a01b03881691906129dd565b90506000818060200190518101906126fe9190612ec2565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b6000610bf4838360008181526001830160205260408120541515610bf4565b6000818152600183016020526040812054801561284f57600061276060018361321f565b85549091506000906127749060019061321f565b90508181146127f55760008660000182815481106127a257634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050808760000184815481106127d357634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255918252600188019052604090208390555b855486908061281457634e487b7160e01b600052603160045260246000fd5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610bf7565b6000915050610bf7565b60008181526001830160205260408120546128a057508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610bf7565b506000610bf7565b600082815260028401602052604081208290556122f88484612548565b6001600160a01b03821661291b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610986565b61292481611e12565b156129715760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610986565b6001600160a01b03821660009081526001602052604090206129939082612548565b506129a060028284612554565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60606122f8848460008585843b612a365760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610986565b600080866001600160a01b03168587604051612a529190612f82565b60006040518083038185875af1925050503d8060008114612a8f576040519150601f19603f3d011682016040523d82523d6000602084013e612a94565b606091505b5091509150612aa4828286612aaf565b979650505050505050565b60608315612abe5750816122fb565b825115612ace5782518084602001fd5b8160405162461bcd60e51b8152600401610986919061309a565b828054612af490613285565b90600052602060002090601f016020900481019282612b165760008555612b5c565b82601f10612b2f57805160ff1916838001178555612b5c565b82800160010185558215612b5c579182015b82811115612b5c578251825591602001919060010190612b41565b50612b68929150612b6c565b5090565b5b80821115612b685760008155600101612b6d565b600067ffffffffffffffff80841115612b9c57612b9c613315565b604051601f8501601f19908116603f01168101908282118183101715612bc457612bc4613315565b81604052809350858152868686011115612bdd57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612c0e57600080fd5b919050565b60008083601f840112612c24578081fd5b50813567ffffffffffffffff811115612c3b578182fd5b6020830191508360208260051b85010111156122cd57600080fd5b80358015158114612c0e57600080fd5b803560ff81168114612c0e57600080fd5b600060208284031215612c88578081fd5b610bf482612bf7565b60008060408385031215612ca3578081fd5b612cac83612bf7565b9150612cba60208401612bf7565b90509250929050565b600080600060608486031215612cd7578081fd5b612ce084612bf7565b9250612cee60208501612bf7565b9150604084013590509250925092565b60008060008060808587031215612d13578081fd5b612d1c85612bf7565b9350612d2a60208601612bf7565b925060408501359150606085013567ffffffffffffffff811115612d4c578182fd5b8501601f81018713612d5c578182fd5b612d6b87823560208401612b81565b91505092959194509250565b60008060408385031215612d89578182fd5b612d9283612bf7565b9150612cba60208401612c56565b60008060408385031215612db2578182fd5b612dbb83612bf7565b946020939093013593505050565b60008060008060408587031215612dde578384fd5b843567ffffffffffffffff80821115612df5578586fd5b612e0188838901612c13565b90965094506020870135915080821115612e19578384fd5b50612e2687828801612c13565b95989497509550505050565b600080600080600060808688031215612e49578081fd5b853567ffffffffffffffff811115612e5f578182fd5b612e6b88828901612c13565b9096509450612e7e905060208701612c66565b9250612e8c60408701612c56565b9150612e9a60608701612c66565b90509295509295909350565b600060208284031215612eb7578081fd5b81356122fb8161332b565b600060208284031215612ed3578081fd5b81516122fb8161332b565b600060208284031215612eef578081fd5b813567ffffffffffffffff811115612f05578182fd5b8201601f81018413612f15578182fd5b611f7a84823560208401612b81565b600060208284031215612f35578081fd5b5035919050565b600060208284031215612f4d578081fd5b610bf482612c66565b60008151808452612f6e816020860160208601613259565b601f01601f19169290920160200192915050565b60008251612f94818460208701613259565b9190910192915050565b60008351612fb0818460208801613259565b835190830190612fc4818360208801613259565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061300090830184612f56565b9695505050505050565b60208082528181018390526000908460408401835b8681101561304b576001600160a01b0361303884612bf7565b168252918301919083019060010161301f565b509695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561308e57835183529284019291840191600101613072565b50909695505050505050565b602081526000610bf46020830184612f56565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156131c2576131c26132e9565b500190565b600060ff821660ff84168060ff038211156131e4576131e46132e9565b019392505050565b6000826131fb576131fb6132ff565b500490565b600081600019048311821515161561321a5761321a6132e9565b500290565b600082821015613231576132316132e9565b500390565b600060ff821660ff841680821015613250576132506132e9565b90039392505050565b60005b8381101561327457818101518382015260200161325c565b838111156118d25750506000910152565b600181811c9082168061329957607f821691505b6020821081141561163557634e487b7160e01b600052602260045260246000fd5b60006000198214156132ce576132ce6132e9565b5060010190565b6000826132e4576132e46132ff565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c4f57600080fdfe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220bf226362c6386dce8d7028aba7a03f979a8be67ce65e01a6f5ea5953f24b418164736f6c63430008040033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000010fecb9771bc000000000000000000000000000000000000000000000000000000000000000000b4d65636861676e6f6d657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054d45434841000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c68747470733a2f2f6d65636861676e6f6d65732e636f6d2f6170692f00000000
Deployed Bytecode
0x60806040526004361061027d5760003560e01c806370a082311161014f578063b0b3d12c116100c1578063e985e9c51161007a578063e985e9c51461078e578063ec89b371146107d7578063f1c9289d146107fc578063f2fde38b1461081c578063f4a0a5281461083c578063fbd910691461085c57600080fd5b8063b0b3d12c146106e2578063b228d92514610702578063b88d4fde14610718578063bbe0150c14610738578063c87b56dd14610758578063de7fcb1d1461077857600080fd5b806385e0832c1161011357806385e0832c146106245780638da5cb5b1461065857806395d89b411461067b578063a22cb46514610690578063a5a865dc146106b0578063a7f93ebd146106cd57600080fd5b806370a082311461058d578063715018a6146105ad57806375e64227146105c25780638456cb59146105e25780638462151c146105f757600080fd5b80633ccfd60b116101f35780636352211e116101ac5780636352211e146104d85780636817c76c146104f85780636c0360eb1461050e5780636d41d4fb146105235780636ecd2306146105655780636f97e31c1461057857600080fd5b80633ccfd60b146104365780633f4ba83a1461044b57806342842e0e146104605780634f6ccce71461048057806355f804b3146104a05780635c975abb146104c057600080fd5b80631455b1e2116102455780631455b1e21461036257806318160ddd1461037a5780631c7a99a61461039d57806323b872dd146103c25780632f745c59146103e257806339a415af1461040257600080fd5b806301ffc9a71461028257806306fdde03146102d1578063081812fc146102f3578063095ea7b31461032b5780630c1c972a1461034d575b600080fd5b34801561028e57600080fd5b506102bc61029d366004612ea6565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b3480156102dd57600080fd5b506102e661088c565b6040516102c8919061309a565b3480156102ff57600080fd5b5061031361030e366004612f24565b61091e565b6040516001600160a01b0390911681526020016102c8565b34801561033757600080fd5b5061034b610346366004612da0565b6109ab565b005b34801561035957600080fd5b5061034b610ac1565b34801561036e57600080fd5b5060135460ff166102bc565b34801561038657600080fd5b5061038f610b90565b6040519081526020016102c8565b3480156103a957600080fd5b503360009081526012602052604090205460ff1661038f565b3480156103ce57600080fd5b5061034b6103dd366004612cc3565b610ba1565b3480156103ee57600080fd5b5061038f6103fd366004612da0565b610bd2565b34801561040e57600080fd5b5061038f7f000000000000000000000000000000000000000000000000000000000000006481565b34801561044257600080fd5b5061034b610bfd565b34801561045757600080fd5b5061034b610c52565b34801561046c57600080fd5b5061034b61047b366004612cc3565b610cfe565b34801561048c57600080fd5b5061038f61049b366004612f24565b610d19565b3480156104ac57600080fd5b5061034b6104bb366004612ede565b610d2f565b3480156104cc57600080fd5b50600b5460ff166102bc565b3480156104e457600080fd5b506103136104f3366004612f24565b610d68565b34801561050457600080fd5b5061038f600c5481565b34801561051a57600080fd5b506102e6610d90565b34801561052f57600080fd5b5061055361053e366004612c77565b60126020526000908152604090205460ff1681565b60405160ff90911681526020016102c8565b61034b610573366004612f3c565b610d9f565b34801561058457600080fd5b5061038f61121b565b34801561059957600080fd5b5061038f6105a8366004612c77565b61128c565b3480156105b957600080fd5b5061034b611318565b3480156105ce57600080fd5b5061034b6105dd366004612e32565b611354565b3480156105ee57600080fd5b5061034b6114de565b34801561060357600080fd5b50610617610612366004612c77565b611564565b6040516102c89190613056565b34801561063057600080fd5b5061038f7f0000000000000000000000000000000000000000000000000000000000001de681565b34801561066457600080fd5b50600b5461010090046001600160a01b0316610313565b34801561068757600080fd5b506102e661163b565b34801561069c57600080fd5b5061034b6106ab366004612d77565b61164a565b3480156106bc57600080fd5b50601354610100900460ff166102bc565b3480156106d957600080fd5b50600c5461038f565b3480156106ee57600080fd5b5061034b6106fd366004612f3c565b61170f565b34801561070e57600080fd5b5061038f600d5481565b34801561072457600080fd5b5061034b610733366004612cfe565b6118a0565b34801561074457600080fd5b5061034b610753366004612dc9565b6118d8565b34801561076457600080fd5b506102e6610773366004612f24565b611a69565b34801561078457600080fd5b5061038f600e5481565b34801561079a57600080fd5b506102bc6107a9366004612c91565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156107e357600080fd5b503360009081526011602052604090205460ff1661038f565b34801561080857600080fd5b5061034b610817366004612f24565b611bdb565b34801561082857600080fd5b5061034b610837366004612c77565b611cf9565b34801561084857600080fd5b5061034b610857366004612f24565b611d97565b34801561086857600080fd5b50610553610877366004612c77565b60116020526000908152604090205460ff1681565b60606007805461089b90613285565b80601f01602080910402602001604051908101604052809291908181526020018280546108c790613285565b80156109145780601f106108e957610100808354040283529160200191610914565b820191906000526020600020905b8154815290600101906020018083116108f757829003601f168201915b5050505050905090565b600061092982611e12565b61098f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006109b682610d68565b9050806001600160a01b0316836001600160a01b03161415610a245760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610986565b336001600160a01b0382161480610a405750610a4081336107a9565b610ab25760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610986565b610abc8383611e1f565b505050565b600b546001600160a01b03610100909104163314610af15760405162461bcd60e51b815260040161098690613129565b601354610100900460ff1615610b415760405162461bcd60e51b81526020600482015260156024820152746578697374696e675f73616c655f72756e6e696e6760581b6044820152606401610986565b601380546000600f81905561ffff19909116610100179091556040519081527f7c88cd5705b17da0853ab081ee5a1690e33ea803e30bf9f4b8245924210fc0a8906020015b60405180910390a1565b6000610b9c6002611e8d565b905090565b610bab3382611e98565b610bc75760405162461bcd60e51b81526004016109869061315e565b610abc838383611f82565b6001600160a01b0382166000908152600160205260408120610bf49083612103565b90505b92915050565b600b546001600160a01b03610100909104163314610c2d5760405162461bcd60e51b815260040161098690613129565b47610c4f610c49600b546001600160a01b036101009091041690565b8261210f565b50565b600b546001600160a01b03610100909104163314610c825760405162461bcd60e51b815260040161098690613129565b600b5460ff16610ccb5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610986565b610cd3612228565b6040517f0e5e3b3fb504c22cf5c42fa07d521225937514c654007e1f12646f89768d6f9490600090a1565b610abc838383604051806020016040528060008152506118a0565b600080610d276002846122b6565b509392505050565b600b546001600160a01b03610100909104163314610d5f5760405162461bcd60e51b815260040161098690613129565b610c4f816122d4565b6000610bf78260405180606001604052806029815260200161337460299139600291906122eb565b6060600a805461089b90613285565b8060ff16610daf60135460ff1690565b80610dc15750601354610100900460ff165b610dfe5760405162461bcd60e51b815260206004820152600e60248201526d6e6f5f6163746976655f73616c6560901b6044820152606401610986565b60008111610e405760405162461bcd60e51b815260206004820152600f60248201526e616d6f756e745f6c65715f7a65726f60881b6044820152606401610986565b610e8a7f00000000000000000000000000000000000000000000000000000000000000647f0000000000000000000000000000000000000000000000000000000000001de661321f565b81610e93610b90565b610e9d91906131af565b1115610ee25760405162461bcd60e51b8152602060048201526014602482015273657863656564735f746f74616c5f737570706c7960601b6044820152606401610986565b600e54811115610f2b5760405162461bcd60e51b81526020600482015260146024820152730caf0c6cacac8e6bedac2f09ad2dce8a0cae4a8f60631b6044820152606401610986565b600d5481610f383361128c565b610f4291906131af565b1115610f835760405162461bcd60e51b815260206004820152601060248201526f195e18d959591cd7db585e17db5a5b9d60821b6044820152606401610986565b60135460ff16156110455780600f541015610fe05760405162461bcd60e51b815260206004820152601960248201527f657863656564735f77686974656c6973745f72657365727665000000000000006044820152606401610986565b3360009081526011602052604090205460ff16808211156110435760405162461bcd60e51b815260206004820152601b60248201527f657863656564735f77686974656c6973745f616c6c6f77616e636500000000006044820152606401610986565b505b60135460ff16156110a1573360009081526011602052604090205460ff166110a15760405162461bcd60e51b815260206004820152600f60248201526e1b9bdd17ddda1a5d195b1a5cdd1959608a1b6044820152606401610986565b600b5460ff16156110c45760405162461bcd60e51b8152600401610986906130ff565b60008260ff16600c546110d79190613200565b9050348111156111205760405162461bcd60e51b81526020600482015260146024820152731a5b9d985b1a5917d95d1a195c97d85b5bdd5b9d60621b6044820152606401610986565b600061112e60135460ff1690565b9050600061113a610b90565b905060005b8560ff1681101561116f5761115d3361115883856131af565b612302565b80611167816132ba565b91505061113f565b5081156111cb57336000908152601160205260408120805487929061119890849060ff16613236565b92506101000a81548160ff021916908360ff1602179055508460ff16600f60008282546111c5919061321f565b90915550505b60408051831515815260ff871660208201526000918101919091527f643bb96fde88049b069cb02dcddcf99cdf502ff55a0af8a791dbb2da95b0785c906060015b60405180910390a15050505050565b60135460009060ff16611285577f0000000000000000000000000000000000000000000000000000000000000064611251610b90565b61127b907f0000000000000000000000000000000000000000000000000000000000001de661321f565b610b9c919061321f565b50600f5490565b60006001600160a01b0382166112f75760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610986565b6001600160a01b0382166000908152600160205260409020610bf79061231c565b600b546001600160a01b036101009091041633146113485760405162461bcd60e51b815260040161098690613129565b6113526000612326565b565b600b546001600160a01b036101009091041633146113845760405162461bcd60e51b815260040161098690613129565b836113c55760405162461bcd60e51b815260206004820152601160248201527072656769737472616e74735f656d70747960781b6044820152606401610986565b60005b848110156114ac5760008686838181106113f257634e487b7160e01b600052603260045260246000fd5b90506020020160208101906114079190612c77565b6001600160a01b03811660009081526011602052604090205490915060ff16611499576001600160a01b0381166000908152601160205260409020805460ff191660ff87161790558315611499576001600160a01b0381166000908152601260205260408120805485929061148090849060ff166131c7565b92506101000a81548160ff021916908360ff1602179055505b50806114a4816132ba565b9150506113c8565b507fbe2fa669e471e1e296eff6f67767fc679509036c413e143c1c5c2d263e8ecfa2858560405161120c92919061300a565b600b546001600160a01b0361010090910416331461150e5760405162461bcd60e51b815260040161098690613129565b600b5460ff16156115315760405162461bcd60e51b8152600401610986906130ff565b611539612380565b6040517fab35696f06e428ebc5ceba8cd17f8fed287baf43440206d1943af1ee53e6d26790600090a1565b606060006115718361128c565b90508061158e576040805160008152602081019091529150611635565b8067ffffffffffffffff8111156115b557634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156115de578160200160208202803683370190505b50915060005b81811015611633576115f68482610bd2565b83828151811061161657634e487b7160e01b600052603260045260246000fd5b60209081029190910101528061162b816132ba565b9150506115e4565b505b50919050565b60606008805461089b90613285565b6001600160a01b0382163314156116a35760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610986565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b8060ff16600081116117515760405162461bcd60e51b815260206004820152600b60248201526a616d6f756e745f7a65726f60a81b6044820152606401610986565b3360009081526012602052604090205460ff168111156117b35760405162461bcd60e51b815260206004820152601960248201527f616d6f756e745f657863656564735f467265655f6d696e7473000000000000006044820152606401610986565b600b5460ff16156117d65760405162461bcd60e51b8152600401610986906130ff565b60006117e0610b90565b905060005b8360ff16811015611810576117fe3361115883856131af565b80611808816132ba565b9150506117e5565b50336000908152601260205260408120805485929061183390849060ff16613236565b92506101000a81548160ff021916908360ff1602179055507f643bb96fde88049b069cb02dcddcf99cdf502ff55a0af8a791dbb2da95b0785c61187860135460ff1690565b60408051911515825260ff8616602083015260019082015260600160405180910390a1505050565b6118aa3383611e98565b6118c65760405162461bcd60e51b81526004016109869061315e565b6118d2848484846123d8565b50505050565b600b546001600160a01b036101009091041633146119085760405162461bcd60e51b815260040161098690613129565b8281146119575760405162461bcd60e51b815260206004820152601760248201527f696e76616c69645f616464726573735f616d6f756e74730000000000000000006044820152606401610986565b60005b83811015611a295782828281811061198257634e487b7160e01b600052603260045260246000fd5b90506020020160208101906119979190612f3c565b601260008787858181106119bb57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906119d09190612c77565b6001600160a01b031681526020810191909152604001600090812080549091906119fe90849060ff166131c7565b92506101000a81548160ff021916908360ff1602179055508080611a21906132ba565b91505061195a565b5060408051848152602081018390527fd7ff80107f7e8636912d59f2120007e42539a3b8abdaeb5cc250a74ff5858758910160405180910390a150505050565b6060611a7482611e12565b611ad85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610986565b60008281526009602052604081208054611af190613285565b80601f0160208091040260200160405190810160405280929190818152602001828054611b1d90613285565b8015611b6a5780601f10611b3f57610100808354040283529160200191611b6a565b820191906000526020600020905b815481529060010190602001808311611b4d57829003601f168201915b505050505090506000611b7b610d90565b9050805160001415611b8e575092915050565b815115611bc0578082604051602001611ba8929190612f9e565b60405160208183030381529060405292505050919050565b80611bca8561240b565b604051602001611ba8929190612f9e565b600b546001600160a01b03610100909104163314611c0b5760405162461bcd60e51b815260040161098690613129565b60135460ff16158015611c265750601354610100900460ff16155b611c6a5760405162461bcd60e51b81526020600482015260156024820152746578697374696e675f73616c655f72756e6e696e6760581b6044820152606401610986565b60008111611cae5760405162461bcd60e51b815260206004820152601160248201527072657365727665436f756e745f7a65726f60781b6044820152606401610986565b600f8190556013805460ff191660019081179091556040519081527f7c88cd5705b17da0853ab081ee5a1690e33ea803e30bf9f4b8245924210fc0a89060200160405180910390a150565b600b546001600160a01b03610100909104163314611d295760405162461bcd60e51b815260040161098690613129565b6001600160a01b038116611d8e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610986565b610c4f81612326565b600b546001600160a01b03610100909104163314611dc75760405162461bcd60e51b815260040161098690613129565b600c54811415611e0d5760405162461bcd60e51b81526020600482015260116024820152701c1c9a58d957de995c9bd7dbdc97dcd95d607a1b6044820152606401610986565b600c55565b6000610bf7600283612525565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611e5482610d68565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610bf782612531565b6000611ea382611e12565b611f045760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610986565b6000611f0f83610d68565b9050806001600160a01b0316846001600160a01b03161480611f4a5750836001600160a01b0316611f3f8461091e565b6001600160a01b0316145b80611f7a57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611f9582610d68565b6001600160a01b031614611ffd5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610986565b6001600160a01b03821661205f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610986565b61206a600082611e1f565b6001600160a01b038316600090815260016020526040902061208c908261253c565b506001600160a01b03821660009081526001602052604090206120af9082612548565b506120bc60028284612554565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000610bf4838361256a565b8047101561215f5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610986565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146121ac576040519150601f19603f3d011682016040523d82523d6000602084013e6121b1565b606091505b5050905080610abc5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610986565b600b5460ff166122715760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610986565b600b805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b039091168152602001610b86565b60008080806122c586866125a2565b909450925050505b9250929050565b80516122e790600a906020840190612ae8565b5050565b60006122f88484846125cd565b90505b9392505050565b6122e7828260405180602001604052806000815250612619565b6000610bf7825490565b600b80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600b5460ff16156123a35760405162461bcd60e51b8152600401610986906130ff565b600b805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861229e3390565b6123e3848484611f82565b6123ef8484848461264c565b6118d25760405162461bcd60e51b8152600401610986906130ad565b60608161242f5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156124595780612443816132ba565b91506124529050600a836131ec565b9150612433565b60008167ffffffffffffffff81111561248257634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156124ac576020820181803683370190505b5090505b8415611f7a576124c160018361321f565b91506124ce600a866132d5565b6124d99060306131af565b60f81b8183815181106124fc57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061251e600a866131ec565b94506124b0565b6000610bf4838361271d565b6000610bf78261231c565b6000610bf4838361273c565b6000610bf48383612859565b60006122f884846001600160a01b0385166128a8565b600082600001828154811061258f57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b600080806125b08585612103565b600081815260029690960160205260409095205494959350505050565b6000828152600284016020526040812054801515806125f157506125f1858561271d565b83906126105760405162461bcd60e51b8152600401610986919061309a565b50949350505050565b61262383836128c5565b612630600084848461264c565b610abc5760405162461bcd60e51b8152600401610986906130ad565b60006001600160a01b0384163b61266557506001611f7a565b60006126e6630a85bd0160e11b338887876040516024016126899493929190612fcd565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b038381831617835250505050604051806060016040528060328152602001613342603291396001600160a01b03881691906129dd565b90506000818060200190518101906126fe9190612ec2565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b6000610bf4838360008181526001830160205260408120541515610bf4565b6000818152600183016020526040812054801561284f57600061276060018361321f565b85549091506000906127749060019061321f565b90508181146127f55760008660000182815481106127a257634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050808760000184815481106127d357634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255918252600188019052604090208390555b855486908061281457634e487b7160e01b600052603160045260246000fd5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610bf7565b6000915050610bf7565b60008181526001830160205260408120546128a057508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610bf7565b506000610bf7565b600082815260028401602052604081208290556122f88484612548565b6001600160a01b03821661291b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610986565b61292481611e12565b156129715760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610986565b6001600160a01b03821660009081526001602052604090206129939082612548565b506129a060028284612554565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60606122f8848460008585843b612a365760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610986565b600080866001600160a01b03168587604051612a529190612f82565b60006040518083038185875af1925050503d8060008114612a8f576040519150601f19603f3d011682016040523d82523d6000602084013e612a94565b606091505b5091509150612aa4828286612aaf565b979650505050505050565b60608315612abe5750816122fb565b825115612ace5782518084602001fd5b8160405162461bcd60e51b8152600401610986919061309a565b828054612af490613285565b90600052602060002090601f016020900481019282612b165760008555612b5c565b82601f10612b2f57805160ff1916838001178555612b5c565b82800160010185558215612b5c579182015b82811115612b5c578251825591602001919060010190612b41565b50612b68929150612b6c565b5090565b5b80821115612b685760008155600101612b6d565b600067ffffffffffffffff80841115612b9c57612b9c613315565b604051601f8501601f19908116603f01168101908282118183101715612bc457612bc4613315565b81604052809350858152868686011115612bdd57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114612c0e57600080fd5b919050565b60008083601f840112612c24578081fd5b50813567ffffffffffffffff811115612c3b578182fd5b6020830191508360208260051b85010111156122cd57600080fd5b80358015158114612c0e57600080fd5b803560ff81168114612c0e57600080fd5b600060208284031215612c88578081fd5b610bf482612bf7565b60008060408385031215612ca3578081fd5b612cac83612bf7565b9150612cba60208401612bf7565b90509250929050565b600080600060608486031215612cd7578081fd5b612ce084612bf7565b9250612cee60208501612bf7565b9150604084013590509250925092565b60008060008060808587031215612d13578081fd5b612d1c85612bf7565b9350612d2a60208601612bf7565b925060408501359150606085013567ffffffffffffffff811115612d4c578182fd5b8501601f81018713612d5c578182fd5b612d6b87823560208401612b81565b91505092959194509250565b60008060408385031215612d89578182fd5b612d9283612bf7565b9150612cba60208401612c56565b60008060408385031215612db2578182fd5b612dbb83612bf7565b946020939093013593505050565b60008060008060408587031215612dde578384fd5b843567ffffffffffffffff80821115612df5578586fd5b612e0188838901612c13565b90965094506020870135915080821115612e19578384fd5b50612e2687828801612c13565b95989497509550505050565b600080600080600060808688031215612e49578081fd5b853567ffffffffffffffff811115612e5f578182fd5b612e6b88828901612c13565b9096509450612e7e905060208701612c66565b9250612e8c60408701612c56565b9150612e9a60608701612c66565b90509295509295909350565b600060208284031215612eb7578081fd5b81356122fb8161332b565b600060208284031215612ed3578081fd5b81516122fb8161332b565b600060208284031215612eef578081fd5b813567ffffffffffffffff811115612f05578182fd5b8201601f81018413612f15578182fd5b611f7a84823560208401612b81565b600060208284031215612f35578081fd5b5035919050565b600060208284031215612f4d578081fd5b610bf482612c66565b60008151808452612f6e816020860160208601613259565b601f01601f19169290920160200192915050565b60008251612f94818460208701613259565b9190910192915050565b60008351612fb0818460208801613259565b835190830190612fc4818360208801613259565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061300090830184612f56565b9695505050505050565b60208082528181018390526000908460408401835b8681101561304b576001600160a01b0361303884612bf7565b168252918301919083019060010161301f565b509695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561308e57835183529284019291840191600101613072565b50909695505050505050565b602081526000610bf46020830184612f56565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156131c2576131c26132e9565b500190565b600060ff821660ff84168060ff038211156131e4576131e46132e9565b019392505050565b6000826131fb576131fb6132ff565b500490565b600081600019048311821515161561321a5761321a6132e9565b500290565b600082821015613231576132316132e9565b500390565b600060ff821660ff841680821015613250576132506132e9565b90039392505050565b60005b8381101561327457818101518382015260200161325c565b838111156118d25750506000910152565b600181811c9082168061329957607f821691505b6020821081141561163557634e487b7160e01b600052602260045260246000fd5b60006000198214156132ce576132ce6132e9565b5060010190565b6000826132e4576132e46132ff565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610c4f57600080fdfe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220bf226362c6386dce8d7028aba7a03f979a8be67ce65e01a6f5ea5953f24b418164736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000010fecb9771bc000000000000000000000000000000000000000000000000000000000000000000b4d65636861676e6f6d657300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054d45434841000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001c68747470733a2f2f6d65636861676e6f6d65732e636f6d2f6170692f00000000
-----Decoded View---------------
Arg [0] : name (string): Mechagnomes
Arg [1] : symbol (string): MECHA
Arg [2] : uri (string): https://mechagnomes.com/api/
Arg [3] : _mintPrice (uint256): 76540000000000000
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 000000000000000000000000000000000000000000000000010fecb9771bc000
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [5] : 4d65636861676e6f6d6573000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 4d45434841000000000000000000000000000000000000000000000000000000
Arg [8] : 000000000000000000000000000000000000000000000000000000000000001c
Arg [9] : 68747470733a2f2f6d65636861676e6f6d65732e636f6d2f6170692f00000000
Deployed Bytecode Sourcemap
332:6934:15:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1029:148:12;;;;;;;;;;-1:-1:-1;1029:148:12;;;;;:::i;:::-;-1:-1:-1;;;;;;1137:33:12;1114:4;1137:33;;;;;;;;;;;;;;1029:148;;;;9862:14:16;;9855:22;9837:41;;9825:2;9810:18;1029:148:12;;;;;;;;4986:98:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;7691:217::-;;;;;;;;;;-1:-1:-1;7691:217:13;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7876:32:16;;;7858:51;;7846:2;7831:18;7691:217:13;7813:102:16;7235:395:13;;;;;;;;;;-1:-1:-1;7235:395:13;;;;;:::i;:::-;;:::i;:::-;;4316:258:15;;;;;;;;;;;;;:::i;1458:99::-;;;;;;;;;;-1:-1:-1;1530:19:15;;;;1458:99;;6729:208:13;;;;;;;;;;;;;:::i;:::-;;;24746:25:16;;;24734:2;24719:18;6729:208:13;24701:76:16;5710:116:15;;;;;;;;;;-1:-1:-1;5807:10:15;5761:14;5797:21;;;:9;:21;;;;;;;;5710:116;;8555:300:13;;;;;;;;;;-1:-1:-1;8555:300:13;;;;;:::i;:::-;;:::i;6498:160::-;;;;;;;;;;-1:-1:-1;6498:160:13;;;;;:::i;:::-;;:::i;450:51:15:-;;;;;;;;;;;;;;;1936:152;;;;;;;;;;;;;:::i;5959:119::-;;;;;;;;;;;;;:::i;8921:149:13:-;;;;;;;;;;-1:-1:-1;8921:149:13;;;;;:::i;:::-;;:::i;7009:169::-;;;;;;;;;;-1:-1:-1;7009:169:13;;;;;:::i;:::-;;:::i;6086:93:15:-;;;;;;;;;;-1:-1:-1;6086:93:15;;;;;:::i;:::-;;:::i;1098:84:1:-;;;;;;;;;;-1:-1:-1;1168:7:1;;;;1098:84;;4749:175:13;;;;;;;;;;-1:-1:-1;4749:175:13;;;;;:::i;:::-;;:::i;510:24:15:-;;;;;;;;;;;;;;;;6324:95:13;;;;;;;;;;;;;:::i;776:42:15:-;;;;;;;;;;-1:-1:-1;776:42:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;25207:4:16;25195:17;;;25177:36;;25165:2;25150:18;776:42:15;25132:87:16;2096:620:15;;;;;;:::i;:::-;;:::i;5359:192::-;;;;;;;;;;;;;:::i;4474:218:13:-;;;;;;;;;;-1:-1:-1;4474:218:13;;;;;:::i;:::-;;:::i;1668:101:0:-;;;;;;;;;;;;;:::i;4582:769:15:-;;;;;;;;;;-1:-1:-1;4582:769:15;;;;;:::i;:::-;;:::i;5834:117::-;;;;;;;;;;;;;:::i;3454:503::-;;;;;;;;;;-1:-1:-1;3454:503:15;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;394:47::-;;;;;;;;;;;;;;;1036:85:0;;;;;;;;;;-1:-1:-1;1108:6:0;;;;;-1:-1:-1;;;;;1108:6:0;1036:85;;5148:102:13;;;;;;;;;;;;;:::i;7975:290::-;;;;;;;;;;-1:-1:-1;7975:290:13;;;;;:::i;:::-;;:::i;1565:93:15:-;;;;;;;;;;-1:-1:-1;1634:16:15;;;;;;;1565:93;;1666:89;;;;;;;;;;-1:-1:-1;1738:9:15;;1666:89;;2724:339;;;;;;;;;;-1:-1:-1;2724:339:15;;;;;:::i;:::-;;:::i;543:36::-;;;;;;;;;;;;;;;;9136:282:13;;;;;;;;;;-1:-1:-1;9136:282:13;;;;;:::i;:::-;;:::i;3071:375:15:-;;;;;;;;;;-1:-1:-1;3071:375:15;;;;;:::i;:::-;;:::i;5316:776:13:-;;;;;;;;;;-1:-1:-1;5316:776:13;;;;;:::i;:::-;;:::i;586:32:15:-;;;;;;;;;;;;;;;;8331:162:13;;;;;;;;;;-1:-1:-1;8331:162:13;;;;;:::i;:::-;-1:-1:-1;;;;;8451:25:13;;;8428:4;8451:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;8331:162;5559:143:15;;;;;;;;;;-1:-1:-1;5683:10:15;5624:14;5660:34;;;:22;:34;;;;;;;;5559:143;;3965:343;;;;;;;;;;-1:-1:-1;3965:343:15;;;;;:::i;:::-;;:::i;1918:198:0:-;;;;;;;;;;-1:-1:-1;1918:198:0;;;;;:::i;:::-;;:::i;1763:165:15:-;;;;;;;;;;-1:-1:-1;1763:165:15;;;;;:::i;:::-;;:::i;714:55::-;;;;;;;;;;-1:-1:-1;714:55:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;4986:98:13;5040:13;5072:5;5065:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4986:98;:::o;7691:217::-;7767:7;7794:16;7802:7;7794;:16::i;:::-;7786:73;;;;-1:-1:-1;;;7786:73:13;;19240:2:16;7786:73:13;;;19222:21:16;19279:2;19259:18;;;19252:30;19318:34;19298:18;;;19291:62;-1:-1:-1;;;19369:18:16;;;19362:42;19421:19;;7786:73:13;;;;;;;;;-1:-1:-1;7877:24:13;;;;:15;:24;;;;;;-1:-1:-1;;;;;7877:24:13;;7691:217::o;7235:395::-;7315:13;7331:23;7346:7;7331:14;:23::i;:::-;7315:39;;7378:5;-1:-1:-1;;;;;7372:11:13;:2;-1:-1:-1;;;;;7372:11:13;;;7364:57;;;;-1:-1:-1;;;7364:57:13;;22571:2:16;7364:57:13;;;22553:21:16;22610:2;22590:18;;;22583:30;22649:34;22629:18;;;22622:62;-1:-1:-1;;;22700:18:16;;;22693:31;22741:19;;7364:57:13;22543:223:16;7364:57:13;719:10:6;-1:-1:-1;;;;;7440:21:13;;;;:69;;-1:-1:-1;7465:44:13;7489:5;719:10:6;8331:162:13;:::i;7465:44::-;7432:159;;;;-1:-1:-1;;;7432:159:13;;17007:2:16;7432:159:13;;;16989:21:16;17046:2;17026:18;;;17019:30;17085:34;17065:18;;;17058:62;17156:26;17136:18;;;17129:54;17200:19;;7432:159:13;16979:246:16;7432:159:13;7602:21;7611:2;7615:7;7602:8;:21::i;:::-;7235:395;;;:::o;4316:258:15:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;;;;;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1634:16:15;;;;;;;4381:15:::1;4373:49;;;::::0;-1:-1:-1;;;4373:49:15;;24452:2:16;4373:49:15::1;::::0;::::1;24434:21:16::0;24491:2;24471:18;;;24464:30;-1:-1:-1;;;24510:18:16;;;24503:51;24571:18;;4373:49:15::1;24424:171:16::0;4373:49:15::1;4433:19;:27:::0;;4455:5:::1;4471:21;:25:::0;;;-1:-1:-1;;4507:23:15;;;4433:27:::1;4507:23;::::0;;;4548:18:::1;::::0;9837:41:16;;;4548:18:15::1;::::0;9825:2:16;9810:18;4548::15::1;;;;;;;;4316:258::o:0;6729:208:13:-;6790:7;6909:21;:12;:19;:21::i;:::-;6902:28;;6729:208;:::o;8555:300::-;8714:41;719:10:6;8747:7:13;8714:18;:41::i;:::-;8706:103;;;;-1:-1:-1;;;8706:103:13;;;;;;;:::i;:::-;8820:28;8830:4;8836:2;8840:7;8820:9;:28::i;6498:160::-;-1:-1:-1;;;;;6621:20:13;;6595:7;6621:20;;;:13;:20;;;;;:30;;6645:5;6621:23;:30::i;:::-;6614:37;;6498:160;;;;;:::o;1936:152:15:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;;;;;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;2004:21:15::1;2036:44;2062:7;1108:6:0::0;;-1:-1:-1;;;;;1108:6:0;;;;;;1036:85;2062:7:15::1;2072;2036:17;:44::i;:::-;1318:1:0;1936:152:15:o:0;5959:119::-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;;;;;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1168:7:1;;;;1669:41:::1;;;::::0;-1:-1:-1;;;1669:41:1;;10668:2:16;1669:41:1::1;::::0;::::1;10650:21:16::0;10707:2;10687:18;;;10680:30;-1:-1:-1;;;10726:18:16;;;10719:50;10786:18;;1669:41:1::1;10640:170:16::0;1669:41:1::1;6018:16:15::2;:14;:16::i;:::-;6052:18;::::0;::::2;::::0;;;::::2;5959:119::o:0;8921:149:13:-;9024:39;9041:4;9047:2;9051:7;9024:39;;;;;;;;;;;;:16;:39::i;7009:169::-;7084:7;;7125:22;:12;7141:5;7125:15;:22::i;:::-;-1:-1:-1;7103:44:13;7009:169;-1:-1:-1;;;7009:169:13:o;6086:93:15:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;;;;;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;6155:16:15::1;6167:3;6155:11;:16::i;4749:175:13:-:0;4821:7;4847:70;4864:7;4847:70;;;;;;;;;;;;;;;;;:12;;:70;:16;:70::i;6324:95::-;6372:13;6404:8;6397:15;;;;;:::i;2096:620:15:-;2149:6;6187:716;;6239:17;1530:19;;;;;1458:99;6239:17;:35;;;-1:-1:-1;1634:16:15;;;;;;;6260:14;6231:62;;;;-1:-1:-1;;;6231:62:15;;22228:2:16;6231:62:15;;;22210:21:16;22267:2;22247:18;;;22240:30;-1:-1:-1;;;22286:18:16;;;22279:44;22340:18;;6231:62:15;22200:164:16;6231:62:15;6321:1;6312:6;:10;6304:38;;;;-1:-1:-1;;;6304:38:15;;20712:2:16;6304:38:15;;;20694:21:16;20751:2;20731:18;;;20724:30;-1:-1:-1;;;20770:18:16;;;20763:45;20825:18;;6304:38:15;20684:165:16;6304:38:15;6387;6405:20;6387:15;:38;:::i;:::-;6377:6;6361:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:64;;6353:97;;;;-1:-1:-1;;;6353:97:15;;20002:2:16;6353:97:15;;;19984:21:16;20041:2;20021:18;;;20014:30;-1:-1:-1;;;20060:18:16;;;20053:50;20120:18;;6353:97:15;19974:170:16;6353:97:15;6479:12;;6469:6;:22;;6461:55;;;;-1:-1:-1;;;6461:55:15;;19653:2:16;6461:55:15;;;19635:21:16;19692:2;19672:18;;;19665:30;-1:-1:-1;;;19711:18:16;;;19704:50;19771:18;;6461:55:15;19625:170:16;6461:55:15;6569:16;;6559:6;6535:21;6545:10;6535:9;:21::i;:::-;:30;;;;:::i;:::-;:50;;6527:79;;;;-1:-1:-1;;;6527:79:15;;12200:2:16;6527:79:15;;;12182:21:16;12239:2;12219:18;;;12212:30;-1:-1:-1;;;12258:18:16;;;12251:46;12314:18;;6527:79:15;12172:166:16;6527:79:15;1530:19;;;;6617:267;;;6687:6;6662:21;;:31;;6654:69;;;;-1:-1:-1;;;6654:69:15;;16308:2:16;6654:69:15;;;16290:21:16;16347:2;16327:18;;;16320:30;16386:27;16366:18;;;16359:55;16431:18;;6654:69:15;16280:175:16;6654:69:15;6783:10;6738:19;6760:34;;;:22;:34;;;;;;;;6817:23;;;;6809:63;;;;-1:-1:-1;;;6809:63:15;;15601:2:16;6809:63:15;;;15583:21:16;15640:2;15620:18;;;15613:30;15679:29;15659:18;;;15652:57;15726:18;;6809:63:15;15573:177:16;6809:63:15;6617:267;;1530:19;;;;7129:115:::1;;;7197:10;7211:1;7174:34:::0;;;:22:::1;:34;::::0;;;;;::::1;;7166:66;;;::::0;-1:-1:-1;;;7166:66:15;;17432:2:16;7166:66:15::1;::::0;::::1;17414:21:16::0;17471:2;17451:18;;;17444:30;-1:-1:-1;;;17490:18:16;;;17483:45;17545:18;;7166:66:15::1;17404:165:16::0;7166:66:15::1;1168:7:1::0;;;;1411:9:::2;1403:38;;;;-1:-1:-1::0;;;1403:38:1::2;;;;;;;:::i;:::-;2191:17:15::3;2223:6;2211:18;;:9;;:18;;;;:::i;:::-;2191:38;;2261:9;2248;:22;;2240:55;;;::::0;-1:-1:-1;;;2240:55:15;;22973:2:16;2240:55:15::3;::::0;::::3;22955:21:16::0;23012:2;22992:18;;;22985:30;-1:-1:-1;;;23031:18:16;;;23024:50;23091:18;;2240:55:15::3;22945:170:16::0;2240:55:15::3;2308:18;2329:17;1530:19:::0;;;;;1458:99;2329:17:::3;2308:38;;2359:14;2376:13;:11;:13::i;:::-;2359:30;;2406:9;2402:96;2425:6;2421:10;;:1;:10;2402:96;;;2453:33;2463:10;2475;2484:1:::0;2475:6;:10:::3;:::i;:::-;2453:9;:33::i;:::-;2433:3:::0;::::3;::::0;::::3;:::i;:::-;;;;2402:96;;;;2513:13;2510:135;;;2566:10;2543:34;::::0;;;:22:::3;:34;::::0;;;;:44;;2581:6;;2543:34;:44:::3;::::0;2581:6;;2543:44:::3;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;2627:6;2602:31;;:21;;:31;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;2510:135:15::3;2662:46;::::0;;10102:14:16;;10095:22;10077:41;;10166:4;10154:17;;10149:2;10134:18;;10127:45;2702:5:15::3;10188:18:16::0;;;10181:50;;;;2662:46:15::3;::::0;10065:2:16;10050:18;2662:46:15::3;;;;;;;;1451:1:1;;;2096:620:15::0;;:::o;5359:192::-;5441:19;;5414:7;;5441:19;;:102;;5523:20;5506:13;:11;:13::i;:::-;5488:31;;:15;:31;:::i;:::-;5487:56;;;;:::i;5441:102::-;-1:-1:-1;5463:21:15;;;5359:192::o;4474:218:13:-;4546:7;-1:-1:-1;;;;;4573:19:13;;4565:74;;;;-1:-1:-1;;;4565:74:13;;17776:2:16;4565:74:13;;;17758:21:16;17815:2;17795:18;;;17788:30;17854:34;17834:18;;;17827:62;-1:-1:-1;;;17905:18:16;;;17898:40;17955:19;;4565:74:13;17748:232:16;4565:74:13;-1:-1:-1;;;;;4656:20:13;;;;;;:13;:20;;;;;:29;;:27;:29::i;1668:101:0:-;1108:6;;-1:-1:-1;;;;;1108:6:0;;;;;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1732:30:::1;1759:1;1732:18;:30::i;:::-;1668:101::o:0;4582:769:15:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;;;;;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;4741:22:15;4733:52:::1;;;::::0;-1:-1:-1;;;4733:52:15;;18533:2:16;4733:52:15::1;::::0;::::1;18515:21:16::0;18572:2;18552:18;;;18545:30;-1:-1:-1;;;18591:18:16;;;18584:47;18648:18;;4733:52:15::1;18505:167:16::0;4733:52:15::1;4866:9;4862:429;4881:22:::0;;::::1;4862:429;;;4925:18;4946:11;;4958:1;4946:14;;;;;-1:-1:-1::0;;;4946:14:15::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;5040:34:15;::::1;;::::0;;;:22:::1;:34;::::0;;;;;4925:35;;-1:-1:-1;5040:34:15::1;;5037:243;;-1:-1:-1::0;;;;;5100:34:15;::::1;;::::0;;;:22:::1;:34;::::0;;;;:52;;-1:-1:-1;;5100:52:15::1;;::::0;::::1;;::::0;;5171:94;::::1;;;-1:-1:-1::0;;;;;5207:21:15;::::1;;::::0;;;:9:::1;:21;::::0;;;;:38;;5232:13;;5207:21;:38:::1;::::0;5232:13;;5207:38:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;5171:94;-1:-1:-1::0;4905:3:15;::::1;::::0;::::1;:::i;:::-;;;;4862:429;;;;5308:35;5331:11;;5308:35;;;;;;;:::i;5834:117::-:0;1108:6:0;;-1:-1:-1;;;;;1108:6:0;;;;;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1168:7:1;;;;1411:9:::1;1403:38;;;;-1:-1:-1::0;;;1403:38:1::1;;;;;;;:::i;:::-;5895:14:15::2;:12;:14::i;:::-;5927:16;::::0;::::2;::::0;;;::::2;5834:117::o:0;3454:503::-;3515:23;3551:18;3572:17;3582:6;3572:9;:17::i;:::-;3551:38;-1:-1:-1;3604:15:15;3600:350;;3683:16;;;3697:1;3683:16;;;;;;;;;-1:-1:-1;3600:350:15;;;3755:10;3741:25;;;;;;-1:-1:-1;;;3741:25:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3741:25:15;;3732:34;;3781:13;3809:130;3833:10;3825:5;:18;3809:130;;;3889:34;3909:6;3917:5;3889:19;:34::i;:::-;3873:6;3880:5;3873:13;;;;;;-1:-1:-1;;;3873:13:15;;;;;;;;;;;;;;;;;;:50;3845:7;;;;:::i;:::-;;;;3809:130;;;3600:350;;3454:503;;;;:::o;5148:102:13:-;5204:13;5236:7;5229:14;;;;;:::i;7975:290::-;-1:-1:-1;;;;;8077:24:13;;719:10:6;8077:24:13;;8069:62;;;;-1:-1:-1;;;8069:62:13;;12950:2:16;8069:62:13;;;12932:21:16;12989:2;12969:18;;;12962:30;13028:27;13008:18;;;13001:55;13073:18;;8069:62:13;12922:175:16;8069:62:13;719:10:6;8142:32:13;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;8142:42:13;;;;;;;;;;;;:53;;-1:-1:-1;;8142:53:13;;;;;;;;;;8210:48;;9837:41:16;;;8142:42:13;;719:10:6;8210:48:13;;9810:18:16;8210:48:13;;;;;;;7975:290;;:::o;2724:339:15:-;2775:6;6911:179;;6973:1;6964:6;:10;6956:34;;;;-1:-1:-1;;;6956:34:15;;13304:2:16;6956:34:15;;;13286:21:16;13343:2;13323:18;;;13316:30;-1:-1:-1;;;13362:18:16;;;13355:41;13413:18;;6956:34:15;13276:161:16;6956:34:15;7019:10;7009:21;;;;:9;:21;;;;;;;;:31;-1:-1:-1;7009:31:15;7001:69;;;;-1:-1:-1;;;7001:69:15;;24098:2:16;7001:69:15;;;24080:21:16;24137:2;24117:18;;;24110:30;24176:27;24156:18;;;24149:55;24221:18;;7001:69:15;24070:175:16;7001:69:15;1168:7:1;;;;1411:9:::1;1403:38;;;;-1:-1:-1::0;;;1403:38:1::1;;;;;;;:::i;:::-;2808:14:15::2;2825:13;:11;:13::i;:::-;2808:30;;2853:9;2849:96;2872:6;2868:10;;:1;:10;2849:96;;;2900:33;2910:10;2922;2931:1:::0;2922:6;:10:::2;:::i;2900:33::-;2880:3:::0;::::2;::::0;::::2;:::i;:::-;;;;2849:96;;;-1:-1:-1::0;2967:10:15::2;2957:21;::::0;;;:9:::2;:21;::::0;;;;:31;;2982:6;;2957:21;:31:::2;::::0;2982:6;;2957:31:::2;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;3006:49;3023:17;1530:19:::0;;;;;1458:99;3023:17:::2;3006:49;::::0;;10102:14:16;;10095:22;10077:41;;10166:4;10154:17;;10149:2;10134:18;;10127:45;3050:4:15::2;10188:18:16::0;;;10181:50;10065:2;10050:18;3006:49:15::2;;;;;;;1451:1:1;2724:339:15::0;;:::o;9136:282:13:-;9267:41;719:10:6;9300:7:13;9267:18;:41::i;:::-;9259:103;;;;-1:-1:-1;;;9259:103:13;;;;;;;:::i;:::-;9372:39;9386:4;9392:2;9396:7;9405:5;9372:13;:39::i;:::-;9136:282;;;;:::o;3071:375:15:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;;;;;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;3184:34:15;;::::1;3176:70;;;::::0;-1:-1:-1;;;3176:70:15;;15249:2:16;3176:70:15::1;::::0;::::1;15231:21:16::0;15288:2;15268:18;;;15261:30;15327:25;15307:18;;;15300:53;15370:18;;3176:70:15::1;15221:173:16::0;3176:70:15::1;3261:9;3257:110;3276:20:::0;;::::1;3257:110;;;3345:7;;3353:1;3345:10;;;;;-1:-1:-1::0;;;3345:10:15::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3318:9;:23;3328:9;;3338:1;3328:12;;;;;-1:-1:-1::0;;;3328:12:15::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3318:23:15::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;3318:23:15;;;:37;;:23;;-1:-1:-1;3318:37:15::1;::::0;;;::::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;3298:3;;;;;:::i;:::-;;;;3257:110;;;-1:-1:-1::0;3384:54:15::1;::::0;;24956:25:16;;;25012:2;24997:18;;24990:34;;;3384:54:15::1;::::0;24929:18:16;3384:54:15::1;;;;;;;3071:375:::0;;;;:::o;5316:776:13:-;5389:13;5422:16;5430:7;5422;:16::i;:::-;5414:76;;;;-1:-1:-1;;;5414:76:13;;21812:2:16;5414:76:13;;;21794:21:16;21851:2;21831:18;;;21824:30;21890:34;21870:18;;;21863:62;-1:-1:-1;;;21941:18:16;;;21934:45;21996:19;;5414:76:13;21784:237:16;5414:76:13;5501:23;5527:19;;;:10;:19;;;;;5501:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5556:18;5577:9;:7;:9::i;:::-;5556:30;;5665:4;5659:18;5681:1;5659:23;5655:70;;;-1:-1:-1;5705:9:13;5316:776;-1:-1:-1;;5316:776:13:o;5655:70::-;5827:23;;:27;5823:106;;5901:4;5907:9;5884:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;5870:48;;;;5316:776;;;:::o;5823:106::-;6059:4;6065:18;:7;:16;:18::i;:::-;6042:42;;;;;;;;;:::i;3965:343:15:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;;;;;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1530:19:15;;;;4051:18:::1;:37;;;;-1:-1:-1::0;1634:16:15;;;;;;;4073:15:::1;4051:37;4043:71;;;::::0;-1:-1:-1;;;4043:71:15;;24452:2:16;4043:71:15::1;::::0;::::1;24434:21:16::0;24491:2;24471:18;;;24464:30;-1:-1:-1;;;24510:18:16;;;24503:51;24571:18;;4043:71:15::1;24424:171:16::0;4043:71:15::1;4153:1;4133:17;:21;4125:51;;;::::0;-1:-1:-1;;;4125:51:15;;21056:2:16;4125:51:15::1;::::0;::::1;21038:21:16::0;21095:2;21075:18;;;21068:30;-1:-1:-1;;;21114:18:16;;;21107:47;21171:18;;4125:51:15::1;21028:167:16::0;4125:51:15::1;4187:21;:41:::0;;;4239:19:::1;:26:::0;;-1:-1:-1;;4239:26:15::1;4261:4;4239:26:::0;;::::1;::::0;;;4283:17:::1;::::0;9837:41:16;;;4283:17:15::1;::::0;9825:2:16;9810:18;4283:17:15::1;;;;;;;3965:343:::0;:::o;1918:198:0:-;1108:6;;-1:-1:-1;;;;;1108:6:0;;;;;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2006:22:0;::::1;1998:73;;;::::0;-1:-1:-1;;;1998:73:0;;11436:2:16;1998:73:0::1;::::0;::::1;11418:21:16::0;11475:2;11455:18;;;11448:30;11514:34;11494:18;;;11487:62;-1:-1:-1;;;11565:18:16;;;11558:36;11611:19;;1998:73:0::1;11408:228:16::0;1998:73:0::1;2081:28;2100:8;2081:18;:28::i;1763:165:15:-:0;1108:6:0;;-1:-1:-1;;;;;1108:6:0;;;;;719:10:6;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1861:9:15::1;;1852:5;:18;;1830:62;;;::::0;-1:-1:-1;;;1830:62:15;;18187:2:16;1830:62:15::1;::::0;::::1;18169:21:16::0;18226:2;18206:18;;;18199:30;-1:-1:-1;;;18245:18:16;;;18238:47;18302:18;;1830:62:15::1;18159:167:16::0;1830:62:15::1;1903:9;:17:::0;1763:165::o;10852:125:13:-;10917:4;10940:30;:12;10962:7;10940:21;:30::i;16694:189::-;16768:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;16768:29:13;-1:-1:-1;;;;;16768:29:13;;;;;;;;:24;;16821:23;16768:24;16821:14;:23::i;:::-;-1:-1:-1;;;;;16812:46:13;;;;;;;;;;;16694:189;;:::o;5685:121:10:-;5754:7;5780:19;5788:3;5780:7;:19::i;11135:351:13:-;11228:4;11252:16;11260:7;11252;:16::i;:::-;11244:73;;;;-1:-1:-1;;;11244:73:13;;14836:2:16;11244:73:13;;;14818:21:16;14875:2;14855:18;;;14848:30;14914:34;14894:18;;;14887:62;-1:-1:-1;;;14965:18:16;;;14958:42;15017:19;;11244:73:13;14808:234:16;11244:73:13;11327:13;11343:23;11358:7;11343:14;:23::i;:::-;11327:39;;11395:5;-1:-1:-1;;;;;11384:16:13;:7;-1:-1:-1;;;;;11384:16:13;;:51;;;;11428:7;-1:-1:-1;;;;;11404:31:13;:20;11416:7;11404:11;:20::i;:::-;-1:-1:-1;;;;;11404:31:13;;11384:51;:94;;;-1:-1:-1;;;;;;8451:25:13;;;8428:4;8451:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;11439:39;11376:103;11135:351;-1:-1:-1;;;;11135:351:13:o;14176:584::-;14300:4;-1:-1:-1;;;;;14273:31:13;:23;14288:7;14273:14;:23::i;:::-;-1:-1:-1;;;;;14273:31:13;;14265:85;;;;-1:-1:-1;;;14265:85:13;;21402:2:16;14265:85:13;;;21384:21:16;21441:2;21421:18;;;21414:30;21480:34;21460:18;;;21453:62;-1:-1:-1;;;21531:18:16;;;21524:39;21580:19;;14265:85:13;21374:231:16;14265:85:13;-1:-1:-1;;;;;14386:16:13;;14378:65;;;;-1:-1:-1;;;14378:65:13;;12545:2:16;14378:65:13;;;12527:21:16;12584:2;12564:18;;;12557:30;12623:34;12603:18;;;12596:62;-1:-1:-1;;;12674:18:16;;;12667:34;12718:19;;14378:65:13;12517:226:16;14378:65:13;14555:29;14572:1;14576:7;14555:8;:29::i;:::-;-1:-1:-1;;;;;14595:19:13;;;;;;:13;:19;;;;;:35;;14622:7;14595:26;:35::i;:::-;-1:-1:-1;;;;;;14640:17:13;;;;;;:13;:17;;;;;:30;;14662:7;14640:21;:30::i;:::-;-1:-1:-1;14681:29:13;:12;14698:7;14707:2;14681:16;:29::i;:::-;;14745:7;14741:2;-1:-1:-1;;;;;14726:27:13;14735:4;-1:-1:-1;;;;;14726:27:13;;;;;;;;;;;14176:584;;;:::o;11249:135:11:-;11320:7;11354:22;11358:3;11370:5;11354:3;:22::i;2065:312:5:-;2179:6;2154:21;:31;;2146:73;;;;-1:-1:-1;;;2146:73:5;;14071:2:16;2146:73:5;;;14053:21:16;14110:2;14090:18;;;14083:30;14149:31;14129:18;;;14122:59;14198:18;;2146:73:5;14043:179:16;2146:73:5;2231:12;2249:9;-1:-1:-1;;;;;2249:14:5;2271:6;2249:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2230:52;;;2300:7;2292:78;;;;-1:-1:-1;;;2292:78:5;;13644:2:16;2292:78:5;;;13626:21:16;13683:2;13663:18;;;13656:30;13722:34;13702:18;;;13695:62;13793:28;13773:18;;;13766:56;13839:19;;2292:78:5;13616:248:16;2110:117:1;1168:7;;;;1669:41;;;;-1:-1:-1;;;1669:41:1;;10668:2:16;1669:41:1;;;10650:21:16;10707:2;10687:18;;;10680:30;-1:-1:-1;;;10726:18:16;;;10719:50;10786:18;;1669:41:1;10640:170:16;1669:41:1;2168:7:::1;:15:::0;;-1:-1:-1;;2168:15:1::1;::::0;;2198:22:::1;719:10:6::0;2207:12:1::1;2198:22;::::0;-1:-1:-1;;;;;7876:32:16;;;7858:51;;7846:2;7831:18;2198:22:1::1;7813:102:16::0;6143:233:10;6223:7;;;;6282:22;6286:3;6298:5;6282:3;:22::i;:::-;6251:53;;-1:-1:-1;6251:53:10;-1:-1:-1;;;6143:233:10;;;;;;:::o;15342:98:13:-;15414:19;;;;:8;;:19;;;;;:::i;:::-;;15342:98;:::o;7396:241:10:-;7533:7;7583:44;7588:3;7608;7614:12;7583:4;:44::i;:::-;7575:53;-1:-1:-1;7396:241:10;;;;;;:::o;11817:108:13:-;11892:26;11902:2;11906:7;11892:26;;;;;;;;;;;;:9;:26::i;10795:112:11:-;10855:7;10881:19;10889:3;4028:18;;3946:107;2270:187:0;2362:6;;;-1:-1:-1;;;;;2378:17:0;;;2362:6;2378:17;;;-1:-1:-1;;;;;;2378:17:0;;;;;;2410:40;;2362:6;;;;;;;;2410:40;;2343:16;;2410:40;2270:187;;:::o;1863:115:1:-;1168:7;;;;1411:9;1403:38;;;;-1:-1:-1;;;1403:38:1;;;;;;;:::i;:::-;1922:7:::1;:14:::0;;-1:-1:-1;;1922:14:1::1;1932:4;1922:14;::::0;;1951:20:::1;1958:12;719:10:6::0;;640:96;10280:269:13;10393:28;10403:4;10409:2;10413:7;10393:9;:28::i;:::-;10439:48;10462:4;10468:2;10472:7;10481:5;10439:22;:48::i;:::-;10431:111;;;;-1:-1:-1;;;10431:111:13;;;;;;;:::i;328:703:7:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:7;;;;;;;;;;;;-1:-1:-1;;;627:10:7;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:7;;-1:-1:-1;773:2:7;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;-1:-1:-1;;;817:17:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:7;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:7;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;-1:-1:-1;;;902:14:7;;;;;;;;;;;;:56;-1:-1:-1;;;;;902:56:7;;;;;;;;-1:-1:-1;972:11:7;981:2;972:11;;:::i;:::-;;;844:150;;5453:149:10;5537:4;5560:35;5570:3;5590;5560:9;:35::i;2557:107::-;2613:7;2639:18;:3;:16;:18::i;10354:135:11:-;10424:4;10447:35;10455:3;10475:5;10447:7;:35::i;10057:129::-;10124:4;10147:32;10152:3;10172:5;10147:4;:32::i;4862:213:10:-;4981:4;5004:64;5009:3;5029;-1:-1:-1;;;;;5043:23:10;;5004:4;:64::i;4395:118:11:-;4462:7;4488:3;:11;;4500:5;4488:18;;;;;;-1:-1:-1;;;4488:18:11;;;;;;;;;;;;;;;;;4481:25;;4395:118;;;;:::o;3017:175:10:-;3084:7;;;3126:19;:3;3139:5;3126:12;:19::i;:::-;3168:16;;;;:11;;;;;:16;;;;;;;;;3017:175;-1:-1:-1;;;;3017:175:10:o;4283:270::-;4407:7;4442:16;;;:11;;;:16;;;;;;4476:10;;;;:33;;;4490:19;4500:3;4505;4490:9;:19::i;:::-;4511:12;4468:56;;;;;-1:-1:-1;;;4468:56:10;;;;;;;;:::i;:::-;-1:-1:-1;4541:5:10;4283:270;-1:-1:-1;;;;4283:270:10:o;12146:247:13:-;12241:18;12247:2;12251:7;12241:5;:18::i;:::-;12277:54;12308:1;12312:2;12316:7;12325:5;12277:22;:54::i;:::-;12269:117;;;;-1:-1:-1;;;12269:117:13;;;;;;;:::i;15993:589::-;16113:4;-1:-1:-1;;;;;16138:13:13;;1087:20:5;16133:58:13;;-1:-1:-1;16176:4:13;16169:11;;16133:58;16200:23;16226:246;-1:-1:-1;;;719:10:6;16363:4:13;16381:7;16402:5;16242:175;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;-1:-1:-1;;;;;16242:175:13;;;;;;;-1:-1:-1;;;;;16242:175:13;;;;;;;;;;;16226:246;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16226:15:13;;;:246;:15;:246::i;:::-;16200:272;;16482:13;16509:10;16498:32;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;16548:26:13;-1:-1:-1;;;16548:26:13;;-1:-1:-1;;;15993:589:13;;;;;;:::o;2343:124:10:-;2414:4;2437:23;:3;2456;5983:4:11;3834:19;;;:12;;;:19;;;;;;:24;;6006:28;3738:127;2269:1388;2335:4;2472:19;;;:12;;;:19;;;;;;2506:15;;2502:1149;;2875:21;2899:14;2912:1;2899:10;:14;:::i;:::-;2947:18;;2875:38;;-1:-1:-1;2927:17:11;;2947:22;;2968:1;;2947:22;:::i;:::-;2927:42;;3001:13;2988:9;:26;2984:398;;3034:17;3054:3;:11;;3066:9;3054:22;;;;;;-1:-1:-1;;;3054:22:11;;;;;;;;;;;;;;;;;3034:42;;3205:9;3176:3;:11;;3188:13;3176:26;;;;;;-1:-1:-1;;;3176:26:11;;;;;;;;;;;;;;;;;;;;:38;;;;3288:23;;;:12;;;:23;;;;;:36;;;2984:398;3460:17;;:3;;:17;;;-1:-1:-1;;;3460:17:11;;;;;;;;;;;;;;;;;;;;;;;;;;3552:3;:12;;:19;3565:5;3552:19;;;;;;;;;;;3545:26;;;3593:4;3586:11;;;;;;;2502:1149;3635:5;3628:12;;;;;1697:404;1760:4;3834:19;;;:12;;;:19;;;;;;1776:319;;-1:-1:-1;1818:23:11;;;;;;;;:11;:23;;;;;;;;;;;;;1998:18;;1976:19;;;:12;;;:19;;;;;;:40;;;;2030:11;;1776:319;-1:-1:-1;2079:5:11;2072:12;;1760:188:10;1866:4;1882:16;;;:11;;;:16;;;;;:24;;;1923:18;1882:3;1894;1923:13;:18::i;12715:393:13:-;-1:-1:-1;;;;;12794:16:13;;12786:61;;;;-1:-1:-1;;;12786:61:13;;18879:2:16;12786:61:13;;;18861:21:16;;;18898:18;;;18891:30;18957:34;18937:18;;;18930:62;19009:18;;12786:61:13;18851:182:16;12786:61:13;12866:16;12874:7;12866;:16::i;:::-;12865:17;12857:58;;;;-1:-1:-1;;;12857:58:13;;11843:2:16;12857:58:13;;;11825:21:16;11882:2;11862:18;;;11855:30;11921;11901:18;;;11894:58;11969:18;;12857:58:13;11815:178:16;12857:58:13;-1:-1:-1;;;;;12982:17:13;;;;;;:13;:17;;;;;:30;;13004:7;12982:21;:30::i;:::-;-1:-1:-1;13023:29:13;:12;13040:7;13049:2;13023:16;:29::i;:::-;-1:-1:-1;13068:33:13;;13093:7;;-1:-1:-1;;;;;13068:33:13;;;13085:1;;13068:33;;13085:1;;13068:33;12715:393;;:::o;3514:223:5:-;3647:12;3678:52;3700:6;3708:4;3714:1;3717:12;3647;1087:20;;4881:60;;;;-1:-1:-1;;;4881:60:5;;23740:2:16;4881:60:5;;;23722:21:16;23779:2;23759:18;;;23752:30;23818:31;23798:18;;;23791:59;23867:18;;4881:60:5;23712:179:16;4881:60:5;4953:12;4967:23;4994:6;-1:-1:-1;;;;;4994:11:5;5013:5;5020:4;4994:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4952:73;;;;5042:51;5059:7;5068:10;5080:12;5042:16;:51::i;:::-;5035:58;4601:499;-1:-1:-1;;;;;;;4601:499:5:o;7214:692::-;7360:12;7388:7;7384:516;;;-1:-1:-1;7418:10:5;7411:17;;7384:516;7529:17;;:21;7525:365;;7723:10;7717:17;7783:15;7770:10;7766:2;7762:19;7755:44;7672:145;7862:12;7855:20;;-1:-1:-1;;;7855:20:5;;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:16;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:16;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:16;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:391::-;891:8;901:6;955:3;948:4;940:6;936:17;932:27;922:2;;978:6;970;963:22;922:2;-1:-1:-1;1006:20:16;;1049:18;1038:30;;1035:2;;;1088:8;1078;1071:26;1035:2;1132:4;1124:6;1120:17;1108:29;;1192:3;1185:4;1175:6;1172:1;1168:14;1160:6;1156:27;1152:38;1149:47;1146:2;;;1209:1;1206;1199:12;1224:160;1289:20;;1345:13;;1338:21;1328:32;;1318:2;;1374:1;1371;1364:12;1389:156;1455:20;;1515:4;1504:16;;1494:27;;1484:2;;1535:1;1532;1525:12;1550:196;1609:6;1662:2;1650:9;1641:7;1637:23;1633:32;1630:2;;;1683:6;1675;1668:22;1630:2;1711:29;1730:9;1711:29;:::i;1751:270::-;1819:6;1827;1880:2;1868:9;1859:7;1855:23;1851:32;1848:2;;;1901:6;1893;1886:22;1848:2;1929:29;1948:9;1929:29;:::i;:::-;1919:39;;1977:38;2011:2;2000:9;1996:18;1977:38;:::i;:::-;1967:48;;1838:183;;;;;:::o;2026:338::-;2103:6;2111;2119;2172:2;2160:9;2151:7;2147:23;2143:32;2140:2;;;2193:6;2185;2178:22;2140:2;2221:29;2240:9;2221:29;:::i;:::-;2211:39;;2269:38;2303:2;2292:9;2288:18;2269:38;:::i;:::-;2259:48;;2354:2;2343:9;2339:18;2326:32;2316:42;;2130:234;;;;;:::o;2369:696::-;2464:6;2472;2480;2488;2541:3;2529:9;2520:7;2516:23;2512:33;2509:2;;;2563:6;2555;2548:22;2509:2;2591:29;2610:9;2591:29;:::i;:::-;2581:39;;2639:38;2673:2;2662:9;2658:18;2639:38;:::i;:::-;2629:48;;2724:2;2713:9;2709:18;2696:32;2686:42;;2779:2;2768:9;2764:18;2751:32;2806:18;2798:6;2795:30;2792:2;;;2843:6;2835;2828:22;2792:2;2871:22;;2924:4;2916:13;;2912:27;-1:-1:-1;2902:2:16;;2958:6;2950;2943:22;2902:2;2986:73;3051:7;3046:2;3033:16;3028:2;3024;3020:11;2986:73;:::i;:::-;2976:83;;;2499:566;;;;;;;:::o;3070:264::-;3135:6;3143;3196:2;3184:9;3175:7;3171:23;3167:32;3164:2;;;3217:6;3209;3202:22;3164:2;3245:29;3264:9;3245:29;:::i;:::-;3235:39;;3293:35;3324:2;3313:9;3309:18;3293:35;:::i;3339:264::-;3407:6;3415;3468:2;3456:9;3447:7;3443:23;3439:32;3436:2;;;3489:6;3481;3474:22;3436:2;3517:29;3536:9;3517:29;:::i;:::-;3507:39;3593:2;3578:18;;;;3565:32;;-1:-1:-1;;;3426:177:16:o;3608:801::-;3728:6;3736;3744;3752;3805:2;3793:9;3784:7;3780:23;3776:32;3773:2;;;3826:6;3818;3811:22;3773:2;3871:9;3858:23;3900:18;3941:2;3933:6;3930:14;3927:2;;;3962:6;3954;3947:22;3927:2;4006:70;4068:7;4059:6;4048:9;4044:22;4006:70;:::i;:::-;4095:8;;-1:-1:-1;3980:96:16;-1:-1:-1;4183:2:16;4168:18;;4155:32;;-1:-1:-1;4199:16:16;;;4196:2;;;4233:6;4225;4218:22;4196:2;;4277:72;4341:7;4330:8;4319:9;4315:24;4277:72;:::i;:::-;3763:646;;;;-1:-1:-1;4368:8:16;-1:-1:-1;;;;3763:646:16:o;4414:666::-;4520:6;4528;4536;4544;4552;4605:3;4593:9;4584:7;4580:23;4576:33;4573:2;;;4627:6;4619;4612:22;4573:2;4672:9;4659:23;4705:18;4697:6;4694:30;4691:2;;;4742:6;4734;4727:22;4691:2;4786:70;4848:7;4839:6;4828:9;4824:22;4786:70;:::i;:::-;4875:8;;-1:-1:-1;4760:96:16;-1:-1:-1;4929:36:16;;-1:-1:-1;4961:2:16;4946:18;;4929:36;:::i;:::-;4919:46;;4984:35;5015:2;5004:9;5000:18;4984:35;:::i;:::-;4974:45;;5038:36;5070:2;5059:9;5055:18;5038:36;:::i;:::-;5028:46;;4563:517;;;;;;;;:::o;5085:255::-;5143:6;5196:2;5184:9;5175:7;5171:23;5167:32;5164:2;;;5217:6;5209;5202:22;5164:2;5261:9;5248:23;5280:30;5304:5;5280:30;:::i;5345:259::-;5414:6;5467:2;5455:9;5446:7;5442:23;5438:32;5435:2;;;5488:6;5480;5473:22;5435:2;5525:9;5519:16;5544:30;5568:5;5544:30;:::i;5609:480::-;5678:6;5731:2;5719:9;5710:7;5706:23;5702:32;5699:2;;;5752:6;5744;5737:22;5699:2;5797:9;5784:23;5830:18;5822:6;5819:30;5816:2;;;5867:6;5859;5852:22;5816:2;5895:22;;5948:4;5940:13;;5936:27;-1:-1:-1;5926:2:16;;5982:6;5974;5967:22;5926:2;6010:73;6075:7;6070:2;6057:16;6052:2;6048;6044:11;6010:73;:::i;6094:190::-;6153:6;6206:2;6194:9;6185:7;6181:23;6177:32;6174:2;;;6227:6;6219;6212:22;6174:2;-1:-1:-1;6255:23:16;;6164:120;-1:-1:-1;6164:120:16:o;6289:192::-;6346:6;6399:2;6387:9;6378:7;6374:23;6370:32;6367:2;;;6420:6;6412;6405:22;6367:2;6448:27;6465:9;6448:27;:::i;6486:257::-;6527:3;6565:5;6559:12;6592:6;6587:3;6580:19;6608:63;6664:6;6657:4;6652:3;6648:14;6641:4;6634:5;6630:16;6608:63;:::i;:::-;6725:2;6704:15;-1:-1:-1;;6700:29:16;6691:39;;;;6732:4;6687:50;;6535:208;-1:-1:-1;;6535:208:16:o;6748:274::-;6877:3;6915:6;6909:13;6931:53;6977:6;6972:3;6965:4;6957:6;6953:17;6931:53;:::i;:::-;7000:16;;;;;6885:137;-1:-1:-1;;6885:137:16:o;7027:470::-;7206:3;7244:6;7238:13;7260:53;7306:6;7301:3;7294:4;7286:6;7282:17;7260:53;:::i;:::-;7376:13;;7335:16;;;;7398:57;7376:13;7335:16;7432:4;7420:17;;7398:57;:::i;:::-;7471:20;;7214:283;-1:-1:-1;;;;7214:283:16:o;7920:488::-;-1:-1:-1;;;;;8189:15:16;;;8171:34;;8241:15;;8236:2;8221:18;;8214:43;8288:2;8273:18;;8266:34;;;8336:3;8331:2;8316:18;;8309:31;;;8114:4;;8357:45;;8382:19;;8374:6;8357:45;:::i;:::-;8349:53;8123:285;-1:-1:-1;;;;;;8123:285:16:o;8413:639::-;8594:2;8646:21;;;8619:18;;;8702:22;;;8565:4;;8781:6;8755:2;8740:18;;8565:4;8818:208;8832:6;8829:1;8826:13;8818:208;;;-1:-1:-1;;;;;8897:26:16;8916:6;8897:26;:::i;:::-;8893:52;8881:65;;9001:15;;;;8966:12;;;;8854:1;8847:9;8818:208;;;-1:-1:-1;9043:3:16;8574:478;-1:-1:-1;;;;;;8574:478:16:o;9057:635::-;9228:2;9280:21;;;9350:13;;9253:18;;;9372:22;;;9199:4;;9228:2;9451:15;;;;9425:2;9410:18;;;9199:4;9497:169;9511:6;9508:1;9505:13;9497:169;;;9572:13;;9560:26;;9641:15;;;;9606:12;;;;9533:1;9526:9;9497:169;;;-1:-1:-1;9683:3:16;;9208:484;-1:-1:-1;;;;;;9208:484:16:o;10242:219::-;10391:2;10380:9;10373:21;10354:4;10411:44;10451:2;10440:9;10436:18;10428:6;10411:44;:::i;10815:414::-;11017:2;10999:21;;;11056:2;11036:18;;;11029:30;11095:34;11090:2;11075:18;;11068:62;-1:-1:-1;;;11161:2:16;11146:18;;11139:48;11219:3;11204:19;;10989:240::o;16460:340::-;16662:2;16644:21;;;16701:2;16681:18;;;16674:30;-1:-1:-1;;;16735:2:16;16720:18;;16713:46;16791:2;16776:18;;16634:166::o;20149:356::-;20351:2;20333:21;;;20370:18;;;20363:30;20429:34;20424:2;20409:18;;20402:62;20496:2;20481:18;;20323:182::o;23120:413::-;23322:2;23304:21;;;23361:2;23341:18;;;23334:30;23400:34;23395:2;23380:18;;23373:62;-1:-1:-1;;;23466:2:16;23451:18;;23444:47;23523:3;23508:19;;23294:239::o;25224:128::-;25264:3;25295:1;25291:6;25288:1;25285:13;25282:2;;;25301:18;;:::i;:::-;-1:-1:-1;25337:9:16;;25272:80::o;25357:204::-;25395:3;25431:4;25428:1;25424:12;25463:4;25460:1;25456:12;25498:3;25492:4;25488:14;25483:3;25480:23;25477:2;;;25506:18;;:::i;:::-;25542:13;;25403:158;-1:-1:-1;;;25403:158:16:o;25566:120::-;25606:1;25632;25622:2;;25637:18;;:::i;:::-;-1:-1:-1;25671:9:16;;25612:74::o;25691:168::-;25731:7;25797:1;25793;25789:6;25785:14;25782:1;25779:21;25774:1;25767:9;25760:17;25756:45;25753:2;;;25804:18;;:::i;:::-;-1:-1:-1;25844:9:16;;25743:116::o;25864:125::-;25904:4;25932:1;25929;25926:8;25923:2;;;25937:18;;:::i;:::-;-1:-1:-1;25974:9:16;;25913:76::o;25994:195::-;26032:4;26069;26066:1;26062:12;26101:4;26098:1;26094:12;26126:3;26121;26118:12;26115:2;;;26133:18;;:::i;:::-;26170:13;;;26041:148;-1:-1:-1;;;26041:148:16:o;26194:258::-;26266:1;26276:113;26290:6;26287:1;26284:13;26276:113;;;26366:11;;;26360:18;26347:11;;;26340:39;26312:2;26305:10;26276:113;;;26407:6;26404:1;26401:13;26398:2;;;-1:-1:-1;;26442:1:16;26424:16;;26417:27;26247:205::o;26457:380::-;26536:1;26532:12;;;;26579;;;26600:2;;26654:4;26646:6;26642:17;26632:27;;26600:2;26707;26699:6;26696:14;26676:18;26673:38;26670:2;;;26753:10;26748:3;26744:20;26741:1;26734:31;26788:4;26785:1;26778:15;26816:4;26813:1;26806:15;26842:135;26881:3;-1:-1:-1;;26902:17:16;;26899:2;;;26922:18;;:::i;:::-;-1:-1:-1;26969:1:16;26958:13;;26889:88::o;26982:112::-;27014:1;27040;27030:2;;27045:18;;:::i;:::-;-1:-1:-1;27079:9:16;;27020:74::o;27099:127::-;27160:10;27155:3;27151:20;27148:1;27141:31;27191:4;27188:1;27181:15;27215:4;27212:1;27205:15;27231:127;27292:10;27287:3;27283:20;27280:1;27273:31;27323:4;27320:1;27313:15;27347:4;27344:1;27337:15;27363:127;27424:10;27419:3;27415:20;27412:1;27405:31;27455:4;27452:1;27445:15;27479:4;27476:1;27469:15;27495:131;-1:-1:-1;;;;;;27569:32:16;;27559:43;;27549:2;;27616:1;27613;27606:12
Swarm Source
ipfs://bf226362c6386dce8d7028aba7a03f979a8be67ce65e01a6f5ea5953f24b4181
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.