ERC-721
Overview
Max Total Supply
107 MINTPASS
Holders
61
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 MINTPASSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MintPass
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721Tradable.sol"; contract MintPass is ERC721Tradable { struct Pass { // Amount of discount when using the pass uint256 discount; // Base URIs used for generating the token URIs based on the passId string baseTokenURI; // Used for checking if the pass is valid/active bool active; } // URI for the contract-level metadata string private _contractURI; mapping (address => bool) public minters; mapping (address => bool) public burners; // Map between the passId to the pass data mapping (uint256 => Pass) private _passDetails; // Map between the tokenId to the passId mapping (uint256 => uint256) private _passes; // Tracks the total number of minted and burnt passes for each type in circulation mapping (uint256 => uint256) public mintedCounts; mapping (uint256 => uint256) public burntCounts; // Add this modifier to all functions which are only accessible by the minters modifier onlyMinter() { require(minters[msg.sender], "Unauthorized Access"); _; } // Add this modifier to all functions which are only accessible by the burners modifier onlyBurner() { require(burners[msg.sender], "Unauthorized Access"); _; } // Add this modifier to all functions which require valid passId modifier isValidPass(uint256 _passId) { require(_passDetails[_passId].active, "Invalid Pass Specified"); _; } constructor ( string memory _name, string memory _symbol, string memory _cURI, address _proxyRegistryAddress ) ERC721Tradable(_name, _symbol, _proxyRegistryAddress) { _contractURI = _cURI; } // Add/remove the specified address to the minter groups function setMinter(address _address, bool _state) external onlyOwner { require(_address != address(0), "Invalid Address"); if (minters[_address] != _state) { minters[_address] = _state; } } // Add/remove the specified address to the burner groups function setBurner(address _address, bool _state) external onlyOwner { require(_address != address(0), "Invalid Address"); if (burners[_address] != _state) { burners[_address] = _state; } } function baseTokenURI(uint256 _passId) public view isValidPass(_passId) returns (string memory) { return _passDetails[_passId].baseTokenURI; } function setBaseTokenURI(uint256 _passId, string memory _uri) external isValidPass(_passId) onlyOwner { _passDetails[_passId].baseTokenURI = _uri; } function discount(uint256 _passId) external view isValidPass(_passId) returns (uint256) { return _passDetails[_passId].discount; } function setDiscount(uint256 _passId, uint256 _discount) external isValidPass(_passId) onlyOwner { _passDetails[_passId].discount = _discount; } function passExists(uint256 _passId) external view returns (bool) { return _passDetails[_passId].active; } function passDetail(uint256 _tokenId) external view returns (address, uint256, uint256) { require(_passDetails[_passes[_tokenId]].active, "Invalid TokenId Specified"); address owner = ownerOf(_tokenId); uint256 passId = _passes[_tokenId]; uint256 passDiscount = _passDetails[passId].discount; return (owner, passId, passDiscount); } function tokenURI(uint256 _tokenId) override public view returns (string memory) { uint256 passId = _passes[_tokenId]; require(_passDetails[passId].active, "Invalid TokenID Specified"); return string(baseTokenURI(passId)); } function contractURI() public view returns (string memory) { return _contractURI; } // Should only be changed when there's a critical change to the contract metadata function setContractURI(string memory _cURI) external onlyOwner { _contractURI = _cURI; } function registerPass( uint256 _passId, uint256 _discount, string memory _baseTokenURI ) external onlyOwner { require(_passId >= 1, "Invalid Pass ID"); require(!_passDetails[_passId].active, "Pass Has Been Registered"); require(_discount <= 100, "Invalid Discount"); _passDetails[_passId] = Pass(_discount, _baseTokenURI, true); } function tokenIdsByOwner(address _address) external view returns (uint256[] memory) { uint256 owned = balanceOf(_address); uint256[] memory tokenIds = new uint256[](owned); for (uint256 i = 0; i < owned; i++) { tokenIds[i] = tokenOfOwnerByIndex(_address, i); } return tokenIds; } // Mint a new pass token to the specified address function mintToken( address _account, uint256 _passId, uint256 _count ) external onlyMinter { require(_account != address(0), "Invalid Address"); require(_count > 0, "Invalid Mint Count"); require(_passDetails[_passId].active, "Invalid Pass Specified"); mintedCounts[_passId] += _count; for (uint256 i = 0; i < _count; i++) { uint256 tokenId = _getNextTokenId(); _incrementTokenId(); _passes[tokenId] = _passId; _mint(_account, tokenId); } } // Burn the specified pass tokenId function burnToken(uint256 _tokenId) external onlyBurner { uint256 passId = _passes[_tokenId]; require(_passDetails[passId].active, "Invalid Pass Specified"); burntCounts[passId]++; _burn(_tokenId); } }
// SPDX-License-Identifier: MIT 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 pragma solidity ^0.8.0; abstract contract ContextMixin { function msgSender() internal view returns (address payable sender) { if (msg.sender == address(this)) { bytes memory array = msg.data; uint256 index = msg.data.length; assembly { // Load the 32 bytes word from memory with the address on the lower 20 bytes, and mask those. sender := and( mload(add(array, index)), 0xffffffffffffffffffffffffffffffffffffffff ) } } else { sender = payable(msg.sender); } return sender; } }
// SPDX-License-Identifier: MIT 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 pragma solidity ^0.8.0; import {Initializable} from "./Initializable.sol"; contract EIP712Base is Initializable { struct EIP712Domain { string name; string version; address verifyingContract; bytes32 salt; } string constant public ERC712_VERSION = "1"; bytes32 internal constant EIP712_DOMAIN_TYPEHASH = keccak256( bytes( "EIP712Domain(string name,string version,address verifyingContract,bytes32 salt)" ) ); bytes32 internal domainSeperator; // supposed to be called once while initializing. // one of the contracts that inherits this contract follows proxy pattern // so it is not possible to do this in a constructor function _initializeEIP712( string memory name ) internal initializer { _setDomainSeperator(name); } function _setDomainSeperator(string memory name) internal { domainSeperator = keccak256( abi.encode( EIP712_DOMAIN_TYPEHASH, keccak256(bytes(name)), keccak256(bytes(ERC712_VERSION)), address(this), bytes32(getChainId()) ) ); } function getDomainSeperator() public view returns (bytes32) { return domainSeperator; } function getChainId() public view returns (uint256) { uint256 id; assembly { id := chainid() } return id; } /** * Accept message hash and returns hash message in EIP712 compatible form * So that it can be used to recover signer from signature signed using EIP712 formatted data * https://eips.ethereum.org/EIPS/eip-712 * "\\x19" makes the encoding deterministic * "\\x01" is the version byte to make it compatible to EIP-191 */ function toTypedMessageHash(bytes32 messageHash) internal view returns (bytes32) { return keccak256( abi.encodePacked("\x19\x01", getDomainSeperator(), messageHash) ); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./IERC721Metadata.sol"; import "./Address.sol"; import "./Context.sol"; import "./Strings.sol"; import "./ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { 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 _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @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 override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./ERC721.sol"; import "./ERC721Enumerable.sol"; import "./Ownable.sol"; import "./SafeMath.sol"; import "./Strings.sol"; import "./ContentMixin.sol"; import "./NativeMetaTransaction.sol"; contract OwnableDelegateProxy {} contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; } /** * @title ERC721Tradable * ERC721Tradable - ERC721 contract that whitelists a trading address, and has minting functionality. */ abstract contract ERC721Tradable is ContextMixin, ERC721Enumerable, NativeMetaTransaction, Ownable { using SafeMath for uint256; address public proxyRegistryAddress; uint256 private _currentTokenId = 0; constructor ( string memory _name, string memory _symbol, address _proxyRegistryAddress ) ERC721(_name, _symbol) { proxyRegistryAddress = _proxyRegistryAddress; _initializeEIP712(_name); } /** * @dev calculates the next token ID based on value of _currentTokenId * @return uint256 for the next token ID */ function _getNextTokenId() internal view returns (uint256) { return _currentTokenId.add(1); } /** * @dev increments the value of _currentTokenId */ function _incrementTokenId() internal { _currentTokenId++; } /** * Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings. */ function isApprovedForAll(address owner, address operator) override public view returns (bool) { // Whitelist OpenSea proxy contract for easy trading. ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress); if (address(proxyRegistry.proxies(owner)) == operator) { return true; } return super.isApprovedForAll(owner, operator); } /** * This is used instead of msg.sender as transactions won't be sent by the original token owner, but by OpenSea. */ function _msgSender() internal override view returns (address sender) { return ContextMixin.msgSender(); } }
// SPDX-License-Identifier: MIT 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: MIT pragma solidity ^0.8.0; import "./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 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 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 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 pragma solidity ^0.8.0; contract Initializable { bool inited = false; modifier initializer() { require(!inited, "already inited"); _; inited = true; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import {SafeMath} from "./SafeMath.sol"; import {EIP712Base} from "./EIP712Base.sol"; contract NativeMetaTransaction is EIP712Base { using SafeMath for uint256; bytes32 private constant META_TRANSACTION_TYPEHASH = keccak256( bytes( "MetaTransaction(uint256 nonce,address from,bytes functionSignature)" ) ); event MetaTransactionExecuted( address userAddress, address payable relayerAddress, bytes functionSignature ); mapping(address => uint256) nonces; /* * Meta transaction structure. * No point of including value field here as if user is doing value transfer then he has the funds to pay for gas * He should call the desired function directly in that case. */ struct MetaTransaction { uint256 nonce; address from; bytes functionSignature; } function executeMetaTransaction( address userAddress, bytes memory functionSignature, bytes32 sigR, bytes32 sigS, uint8 sigV ) public payable returns (bytes memory) { MetaTransaction memory metaTx = MetaTransaction({ nonce: nonces[userAddress], from: userAddress, functionSignature: functionSignature }); require( verify(userAddress, metaTx, sigR, sigS, sigV), "Signer and signature do not match" ); // increase nonce for user (to avoid re-use) nonces[userAddress] = nonces[userAddress].add(1); emit MetaTransactionExecuted( userAddress, payable(msg.sender), functionSignature ); // Append userAddress and relayer address at the end to extract it from calling context (bool success, bytes memory returnData) = address(this).call( abi.encodePacked(functionSignature, userAddress) ); require(success, "Function call not successful"); return returnData; } function hashMetaTransaction(MetaTransaction memory metaTx) internal pure returns (bytes32) { return keccak256( abi.encode( META_TRANSACTION_TYPEHASH, metaTx.nonce, metaTx.from, keccak256(metaTx.functionSignature) ) ); } function getNonce(address user) public view returns (uint256 nonce) { nonce = nonces[user]; } function verify( address signer, MetaTransaction memory metaTx, bytes32 sigR, bytes32 sigS, uint8 sigV ) internal view returns (bool) { require(signer != address(0), "NativeMetaTransaction: INVALID_SIGNER"); return signer == ecrecover( toTypedMessageHash(hashMetaTransaction(metaTx)), sigV, sigR, sigS ); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT 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 no longer needed starting with Solidity 0.8. 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 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); } }
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":"_cURI","type":"string"},{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"userAddress","type":"address"},{"indexed":false,"internalType":"address payable","name":"relayerAddress","type":"address"},{"indexed":false,"internalType":"bytes","name":"functionSignature","type":"bytes"}],"name":"MetaTransactionExecuted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"ERC712_VERSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_passId","type":"uint256"}],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"burnToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"burners","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"burntCounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_passId","type":"uint256"}],"name":"discount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"userAddress","type":"address"},{"internalType":"bytes","name":"functionSignature","type":"bytes"},{"internalType":"bytes32","name":"sigR","type":"bytes32"},{"internalType":"bytes32","name":"sigS","type":"bytes32"},{"internalType":"uint8","name":"sigV","type":"uint8"}],"name":"executeMetaTransaction","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getChainId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getDomainSeperator","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNonce","outputs":[{"internalType":"uint256","name":"nonce","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_passId","type":"uint256"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"mintedCounts","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minters","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"passDetail","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_passId","type":"uint256"}],"name":"passExists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_passId","type":"uint256"},{"internalType":"uint256","name":"_discount","type":"uint256"},{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"registerPass","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":"uint256","name":"_passId","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_state","type":"bool"}],"name":"setBurner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_cURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_passId","type":"uint256"},{"internalType":"uint256","name":"_discount","type":"uint256"}],"name":"setDiscount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_state","type":"bool"}],"name":"setMinter","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":"_address","type":"address"}],"name":"tokenIdsByOwner","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":[],"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"}]
Contract Creation Code
6080604052600a805460ff191690556000600f553480156200002057600080fd5b5060405162003afe38038062003afe833981016040819052620000439162000422565b8383828282816000908051906020019062000060929190620002af565b50805162000076906001906020840190620002af565b505050620000936200008d620000dc60201b60201c565b620000f8565b600e80546001600160a01b0319166001600160a01b038316179055620000b9836200014a565b50508251620000d191506010906020850190620002af565b505050505062000512565b6000620000f3620001ae60201b6200214b1760201c565b905090565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a5460ff1615620001935760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481a5b9a5d195960921b604482015260640160405180910390fd5b6200019e816200020d565b50600a805460ff19166001179055565b6000333014156200020757600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506200020a9050565b50335b90565b6040518060800160405280604f815260200162003aaf604f9139805160209182012082519282019290922060408051808201825260018152603160f81b90840152805180840194909452838101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608401523060808401524660a0808501919091528151808503909101815260c090930190528151910120600b55565b828054620002bd90620004d5565b90600052602060002090601f016020900481019282620002e157600085556200032c565b82601f10620002fc57805160ff19168380011785556200032c565b828001600101855582156200032c579182015b828111156200032c5782518255916020019190600101906200030f565b506200033a9291506200033e565b5090565b5b808211156200033a57600081556001016200033f565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200037d57600080fd5b81516001600160401b03808211156200039a576200039a62000355565b604051601f8301601f19908116603f01168101908282118183101715620003c557620003c562000355565b81604052838152602092508683858801011115620003e257600080fd5b600091505b83821015620004065785820183015181830184015290820190620003e7565b83821115620004185760008385830101525b9695505050505050565b600080600080608085870312156200043957600080fd5b84516001600160401b03808211156200045157600080fd5b6200045f888389016200036b565b955060208701519150808211156200047657600080fd5b62000484888389016200036b565b945060408701519150808211156200049b57600080fd5b50620004aa878288016200036b565b606087015190935090506001600160a01b0381168114620004ca57600080fd5b939692955090935050565b600181811c90821680620004ea57607f821691505b602082108114156200050c57634e487b7160e01b600052602260045260246000fd5b50919050565b61358d80620005226000396000f3fe6080604052600436106102dc5760003560e01c80636352211e11610184578063b88d4fde116100d6578063cf456ae71161008a578063e985e9c511610064578063e985e9c51461087b578063f2fde38b1461089b578063f46eccc4146108bb57600080fd5b8063cf456ae714610819578063d8b2eb9914610839578063e8a3d4851461086657600080fd5b8063c5c20df2116100bb578063c5c20df2146107b9578063c87b56dd146107d9578063cd7c0326146107f957600080fd5b8063b88d4fde14610779578063b9334a1b1461079957600080fd5b80638da5cb5b1161013857806395d89b411161011257806395d89b4114610724578063a22cb46514610739578063a689a9141461075957600080fd5b80638da5cb5b146106b95780638f85fa94146106d7578063938e3d7b1461070457600080fd5b8063715018a611610169578063715018a61461065157806378c7d6ae146106665780637b47ec1a1461069957600080fd5b80636352211e1461061157806370a082311461063157600080fd5b806320379ee51161023d5780632f745c59116101f15780634d714275116101cb5780634d714275146105a45780634f6ccce7146105c45780635633dad0146105e457600080fd5b80632f745c59146105515780633408e4701461057157806342842e0e1461058457600080fd5b806323b872dd1161022257806323b872dd146104b657806329f5faf7146104d65780632d0335ab1461051b57600080fd5b806320379ee51461048157806323a36d2b1461049657600080fd5b80630b1d07de116102945780630d895ee1116102795780630d895ee1146104035780630f7e59701461042357806318160ddd1461046c57600080fd5b80630b1d07de146103c25780630c53c51c146103f057600080fd5b806306fdde03116102c557806306fdde0314610346578063081812fc14610368578063095ea7b3146103a057600080fd5b806301ffc9a7146102e157806303d41e0e14610316575b600080fd5b3480156102ed57600080fd5b506103016102fc366004612eb5565b6108eb565b60405190151581526020015b60405180910390f35b34801561032257600080fd5b50610301610331366004612ee7565b60126020526000908152604090205460ff1681565b34801561035257600080fd5b5061035b61092f565b60405161030d9190612f5c565b34801561037457600080fd5b50610388610383366004612f6f565b6109c1565b6040516001600160a01b03909116815260200161030d565b3480156103ac57600080fd5b506103c06103bb366004612f88565b610a5b565b005b3480156103ce57600080fd5b506103e26103dd366004612f6f565b610b9f565b60405190815260200161030d565b61035b6103fe366004613057565b610c13565b34801561040f57600080fd5b506103c061041e3660046130d5565b610e19565b34801561042f57600080fd5b5061035b6040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081565b34801561047857600080fd5b506008546103e2565b34801561048d57600080fd5b50600b546103e2565b3480156104a257600080fd5b506103c06104b1366004613113565b610f29565b3480156104c257600080fd5b506103c06104d1366004613148565b6110f1565b3480156104e257600080fd5b506104f66104f1366004612f6f565b61117f565b604080516001600160a01b03909416845260208401929092529082015260600161030d565b34801561052757600080fd5b506103e2610536366004612ee7565b6001600160a01b03166000908152600c602052604090205490565b34801561055d57600080fd5b506103e261056c366004612f88565b611225565b34801561057d57600080fd5b50466103e2565b34801561059057600080fd5b506103c061059f366004613148565b6112cd565b3480156105b057600080fd5b506103c06105bf366004613189565b6112e8565b3480156105d057600080fd5b506103e26105df366004612f6f565b6114ce565b3480156105f057600080fd5b506103e26105ff366004612f6f565b60166020526000908152604090205481565b34801561061d57600080fd5b5061038861062c366004612f6f565b611572565b34801561063d57600080fd5b506103e261064c366004612ee7565b6115fd565b34801561065d57600080fd5b506103c0611697565b34801561067257600080fd5b50610301610681366004612f6f565b60009081526013602052604090206002015460ff1690565b3480156106a557600080fd5b506103c06106b4366004612f6f565b61171c565b3480156106c557600080fd5b50600d546001600160a01b0316610388565b3480156106e357600080fd5b506106f76106f2366004612ee7565b61180c565b60405161030d91906131d9565b34801561071057600080fd5b506103c061071f36600461321d565b6118ae565b34801561073057600080fd5b5061035b61193a565b34801561074557600080fd5b506103c06107543660046130d5565b611949565b34801561076557600080fd5b5061035b610774366004612f6f565b611a4b565b34801561078557600080fd5b506103c0610794366004613252565b611b4c565b3480156107a557600080fd5b506103c06107b43660046132be565b611bdb565b3480156107c557600080fd5b506103c06107d43660046132e0565b611cc3565b3480156107e557600080fd5b5061035b6107f4366004612f6f565b611dbd565b34801561080557600080fd5b50600e54610388906001600160a01b031681565b34801561082557600080fd5b506103c06108343660046130d5565b611e41565b34801561084557600080fd5b506103e2610854366004612f6f565b60156020526000908152604090205481565b34801561087257600080fd5b5061035b611f52565b34801561088757600080fd5b50610301610896366004613327565b611f61565b3480156108a757600080fd5b506103c06108b6366004612ee7565b61204a565b3480156108c757600080fd5b506103016108d6366004612ee7565b60116020526000908152604090205460ff1681565b60006001600160e01b031982167f780e9d630000000000000000000000000000000000000000000000000000000014806109295750610929826121a8565b92915050565b60606000805461093e90613355565b80601f016020809104026020016040519081016040528092919081815260200182805461096a90613355565b80156109b75780601f1061098c576101008083540402835291602001916109b7565b820191906000526020600020905b81548152906001019060200180831161099a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a3f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610a6682611572565b9050806001600160a01b0316836001600160a01b03161415610af05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610a36565b806001600160a01b0316610b02612243565b6001600160a01b03161480610b1e5750610b1e81610896612243565b610b905760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a36565b610b9a8383612252565b505050565b600081815260136020526040812060020154829060ff16610bfb5760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a590814185cdcc814dc1958da599a595960521b6044820152606401610a36565b60008381526013602052604090205491505b50919050565b60408051606081810183526001600160a01b0388166000818152600c602090815290859020548452830152918101869052610c5187828787876122c0565b610cc35760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d61746360448201527f68000000000000000000000000000000000000000000000000000000000000006064820152608401610a36565b6001600160a01b0387166000908152600c6020526040902054610ce79060016123c8565b6001600160a01b0388166000908152600c60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b90610d3790899033908a9061338a565b60405180910390a1600080306001600160a01b0316888a604051602001610d5f9291906133bf565b60408051601f1981840301815290829052610d79916133f6565b6000604051808303816000865af19150503d8060008114610db6576040519150601f19603f3d011682016040523d82523d6000602084013e610dbb565b606091505b509150915081610e0d5760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c000000006044820152606401610a36565b98975050505050505050565b610e21612243565b6001600160a01b0316610e3c600d546001600160a01b031690565b6001600160a01b031614610e925760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a36565b6001600160a01b038216610eda5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964204164647265737360881b6044820152606401610a36565b6001600160a01b03821660009081526012602052604090205460ff16151581151514610f25576001600160a01b0382166000908152601260205260409020805460ff19168215151790555b5050565b3360009081526011602052604090205460ff16610f885760405162461bcd60e51b815260206004820152601360248201527f556e617574686f72697a656420416363657373000000000000000000000000006044820152606401610a36565b6001600160a01b038316610fd05760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964204164647265737360881b6044820152606401610a36565b600081116110205760405162461bcd60e51b815260206004820152601260248201527f496e76616c6964204d696e7420436f756e7400000000000000000000000000006044820152606401610a36565b60008281526013602052604090206002015460ff1661107a5760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a590814185cdcc814dc1958da599a595960521b6044820152606401610a36565b60008281526015602052604081208054839290611098908490613428565b90915550600090505b818110156110eb5760006110b36123d4565b90506110bd6123e5565b60008181526014602052604090208490556110d885826123fc565b50806110e381613440565b9150506110a1565b50505050565b6111026110fc612243565b8261254a565b6111745760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a36565b610b9a838383612619565b600081815260146020908152604080832054835260139091528120600201548190819060ff166111f15760405162461bcd60e51b815260206004820152601960248201527f496e76616c696420546f6b656e496420537065636966696564000000000000006044820152606401610a36565b60006111fc85611572565b600095865260146020908152604080882054808952601390925290962054909690945092505050565b6000611230836115fd565b82106112a45760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610a36565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610b9a83838360405180602001604052806000815250611b4c565b6112f0612243565b6001600160a01b031661130b600d546001600160a01b031690565b6001600160a01b0316146113615760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a36565b60018310156113b25760405162461bcd60e51b815260206004820152600f60248201527f496e76616c6964205061737320494400000000000000000000000000000000006044820152606401610a36565b60008381526013602052604090206002015460ff16156114145760405162461bcd60e51b815260206004820152601860248201527f5061737320486173204265656e205265676973746572656400000000000000006044820152606401610a36565b60648211156114655760405162461bcd60e51b815260206004820152601060248201527f496e76616c696420446973636f756e74000000000000000000000000000000006044820152606401610a36565b6040805160608101825283815260208082018481526001838501819052600088815260138452949094208351815590518051939491936114ad93928501929190910190612e06565b50604091909101516002909101805460ff1916911515919091179055505050565b60006114d960085490565b821061154d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610a36565b600882815481106115605761156061345b565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806109295760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610a36565b60006001600160a01b03821661167b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610a36565b506001600160a01b031660009081526003602052604090205490565b61169f612243565b6001600160a01b03166116ba600d546001600160a01b031690565b6001600160a01b0316146117105760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a36565b61171a60006127f1565b565b3360009081526012602052604090205460ff1661177b5760405162461bcd60e51b815260206004820152601360248201527f556e617574686f72697a656420416363657373000000000000000000000000006044820152606401610a36565b60008181526014602090815260408083205480845260139092529091206002015460ff166117e45760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a590814185cdcc814dc1958da599a595960521b6044820152606401610a36565b60008181526016602052604081208054916117fe83613440565b9190505550610f2582612843565b60606000611819836115fd565b905060008167ffffffffffffffff81111561183657611836612fb4565b60405190808252806020026020018201604052801561185f578160200160208202803683370190505b50905060005b828110156118a6576118778582611225565b8282815181106118895761188961345b565b60209081029190910101528061189e81613440565b915050611865565b509392505050565b6118b6612243565b6001600160a01b03166118d1600d546001600160a01b031690565b6001600160a01b0316146119275760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a36565b8051610f25906010906020840190612e06565b60606001805461093e90613355565b611951612243565b6001600160a01b0316826001600160a01b031614156119b25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a36565b80600560006119bf612243565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611a03612243565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a3f911515815260200190565b60405180910390a35050565b600081815260136020526040902060020154606090829060ff16611aaa5760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a590814185cdcc814dc1958da599a595960521b6044820152606401610a36565b60008381526013602052604090206001018054611ac690613355565b80601f0160208091040260200160405190810160405280929190818152602001828054611af290613355565b8015611b3f5780601f10611b1457610100808354040283529160200191611b3f565b820191906000526020600020905b815481529060010190602001808311611b2257829003601f168201915b5050505050915050919050565b611b5d611b57612243565b8361254a565b611bcf5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a36565b6110eb848484846128ea565b600082815260136020526040902060020154829060ff16611c375760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a590814185cdcc814dc1958da599a595960521b6044820152606401610a36565b611c3f612243565b6001600160a01b0316611c5a600d546001600160a01b031690565b6001600160a01b031614611cb05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a36565b5060009182526013602052604090912055565b600082815260136020526040902060020154829060ff16611d1f5760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a590814185cdcc814dc1958da599a595960521b6044820152606401610a36565b611d27612243565b6001600160a01b0316611d42600d546001600160a01b031690565b6001600160a01b031614611d985760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a36565b600083815260136020908152604090912083516110eb92600190920191850190612e06565b6000818152601460209081526040808320548084526013909252909120600201546060919060ff16611e315760405162461bcd60e51b815260206004820152601960248201527f496e76616c696420546f6b656e494420537065636966696564000000000000006044820152606401610a36565b611e3a81611a4b565b9392505050565b611e49612243565b6001600160a01b0316611e64600d546001600160a01b031690565b6001600160a01b031614611eba5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a36565b6001600160a01b038216611f025760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964204164647265737360881b6044820152606401610a36565b6001600160a01b03821660009081526011602052604090205460ff16151581151514610f25576001600160a01b0382166000908152601160205260409020805482151560ff199091161790555050565b60606010805461093e90613355565b600e546040517fc45527910000000000000000000000000000000000000000000000000000000081526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b158015611fc757600080fd5b505afa158015611fdb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fff9190613471565b6001600160a01b03161415612018576001915050610929565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b612052612243565b6001600160a01b031661206d600d546001600160a01b031690565b6001600160a01b0316146120c35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a36565b6001600160a01b03811661213f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a36565b612148816127f1565b50565b6000333014156121a257600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506121a59050565b50335b90565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061220b57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061092957507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614610929565b600061224d61214b565b905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061228782611572565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b03861661233e5760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201527f49474e45520000000000000000000000000000000000000000000000000000006064820152608401610a36565b600161235161234c87612973565b6129f0565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa15801561239f573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b6000611e3a8284613428565b600f5460009061224d9060016123c8565b600f80549060006123f583613440565b9190505550565b6001600160a01b0382166124525760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a36565b6000818152600260205260409020546001600160a01b0316156124b75760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a36565b6124c360008383612a3b565b6001600160a01b03821660009081526003602052604081208054600192906124ec908490613428565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000818152600260205260408120546001600160a01b03166125c35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a36565b60006125ce83611572565b9050806001600160a01b0316846001600160a01b031614806126095750836001600160a01b03166125fe846109c1565b6001600160a01b0316145b8061204257506120428185611f61565b826001600160a01b031661262c82611572565b6001600160a01b0316146126a85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610a36565b6001600160a01b0382166127235760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610a36565b61272e838383612a3b565b612739600082612252565b6001600160a01b038316600090815260036020526040812080546001929061276290849061348e565b90915550506001600160a01b0382166000908152600360205260408120805460019290612790908490613428565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061284e82611572565b905061285c81600084612a3b565b612867600083612252565b6001600160a01b038116600090815260036020526040812080546001929061289090849061348e565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6128f5848484612619565b61290184848484612af3565b6110eb5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a36565b600060405180608001604052806043815260200161351560439139805160209182012083518483015160408087015180519086012090516129d3950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b60006129fb600b5490565b6040517f190100000000000000000000000000000000000000000000000000000000000060208201526022810191909152604281018390526062016129d3565b6001600160a01b038316612a9657612a9181600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612ab9565b816001600160a01b0316836001600160a01b031614612ab957612ab98382612c76565b6001600160a01b038216612ad057610b9a81612d13565b826001600160a01b0316826001600160a01b031614610b9a57610b9a8282612dc2565b60006001600160a01b0384163b15612c6b57836001600160a01b031663150b7a02612b1c612243565b8786866040518563ffffffff1660e01b8152600401612b3e94939291906134a5565b602060405180830381600087803b158015612b5857600080fd5b505af1925050508015612b88575060408051601f3d908101601f19168201909252612b85918101906134e1565b60015b612c38573d808015612bb6576040519150601f19603f3d011682016040523d82523d6000602084013e612bbb565b606091505b508051612c305760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a36565b805181602001fd5b6001600160e01b0319167f150b7a0200000000000000000000000000000000000000000000000000000000149050612042565b506001949350505050565b60006001612c83846115fd565b612c8d919061348e565b600083815260076020526040902054909150808214612ce0576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612d259060019061348e565b60008381526009602052604081205460088054939450909284908110612d4d57612d4d61345b565b906000526020600020015490508060088381548110612d6e57612d6e61345b565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612da657612da66134fe565b6001900381819060005260206000200160009055905550505050565b6000612dcd836115fd565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612e1290613355565b90600052602060002090601f016020900481019282612e345760008555612e7a565b82601f10612e4d57805160ff1916838001178555612e7a565b82800160010185558215612e7a579182015b82811115612e7a578251825591602001919060010190612e5f565b50612e86929150612e8a565b5090565b5b80821115612e865760008155600101612e8b565b6001600160e01b03198116811461214857600080fd5b600060208284031215612ec757600080fd5b8135611e3a81612e9f565b6001600160a01b038116811461214857600080fd5b600060208284031215612ef957600080fd5b8135611e3a81612ed2565b60005b83811015612f1f578181015183820152602001612f07565b838111156110eb5750506000910152565b60008151808452612f48816020860160208601612f04565b601f01601f19169290920160200192915050565b602081526000611e3a6020830184612f30565b600060208284031215612f8157600080fd5b5035919050565b60008060408385031215612f9b57600080fd5b8235612fa681612ed2565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600082601f830112612fdb57600080fd5b813567ffffffffffffffff80821115612ff657612ff6612fb4565b604051601f8301601f19908116603f0116810190828211818310171561301e5761301e612fb4565b8160405283815286602085880101111561303757600080fd5b836020870160208301376000602085830101528094505050505092915050565b600080600080600060a0868803121561306f57600080fd5b853561307a81612ed2565b9450602086013567ffffffffffffffff81111561309657600080fd5b6130a288828901612fca565b9450506040860135925060608601359150608086013560ff811681146130c757600080fd5b809150509295509295909350565b600080604083850312156130e857600080fd5b82356130f381612ed2565b91506020830135801515811461310857600080fd5b809150509250929050565b60008060006060848603121561312857600080fd5b833561313381612ed2565b95602085013595506040909401359392505050565b60008060006060848603121561315d57600080fd5b833561316881612ed2565b9250602084013561317881612ed2565b929592945050506040919091013590565b60008060006060848603121561319e57600080fd5b8335925060208401359150604084013567ffffffffffffffff8111156131c357600080fd5b6131cf86828701612fca565b9150509250925092565b6020808252825182820181905260009190848201906040850190845b81811015613211578351835292840192918401916001016131f5565b50909695505050505050565b60006020828403121561322f57600080fd5b813567ffffffffffffffff81111561324657600080fd5b61204284828501612fca565b6000806000806080858703121561326857600080fd5b843561327381612ed2565b9350602085013561328381612ed2565b925060408501359150606085013567ffffffffffffffff8111156132a657600080fd5b6132b287828801612fca565b91505092959194509250565b600080604083850312156132d157600080fd5b50508035926020909101359150565b600080604083850312156132f357600080fd5b82359150602083013567ffffffffffffffff81111561331157600080fd5b61331d85828601612fca565b9150509250929050565b6000806040838503121561333a57600080fd5b823561334581612ed2565b9150602083013561310881612ed2565b600181811c9082168061336957607f821691505b60208210811415610c0d57634e487b7160e01b600052602260045260246000fd5b60006001600160a01b038086168352808516602084015250606060408301526133b66060830184612f30565b95945050505050565b600083516133d1818460208801612f04565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b60008251613408818460208701612f04565b9190910192915050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561343b5761343b613412565b500190565b600060001982141561345457613454613412565b5060010190565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561348357600080fd5b8151611e3a81612ed2565b6000828210156134a0576134a0613412565b500390565b60006001600160a01b038087168352808616602084015250836040830152608060608301526134d76080830184612f30565b9695505050505050565b6000602082840312156134f357600080fd5b8151611e3a81612e9f565b634e487b7160e01b600052603160045260246000fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a2646970667358221220992fabd63d782089503d8c302992eda9f909444f3149ab7b1dadbaf9fa075abc64736f6c63430008090033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c7429000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c100000000000000000000000000000000000000000000000000000000000000094d696e742050617373000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084d494e5450415353000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005268747470733a2f2f6c616e6464616f2e6d7970696e6174612e636c6f75642f697066732f516d56376d684a76393536357763754357766e596a357956587833436e3148596a63684b54414d595232507578750000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102dc5760003560e01c80636352211e11610184578063b88d4fde116100d6578063cf456ae71161008a578063e985e9c511610064578063e985e9c51461087b578063f2fde38b1461089b578063f46eccc4146108bb57600080fd5b8063cf456ae714610819578063d8b2eb9914610839578063e8a3d4851461086657600080fd5b8063c5c20df2116100bb578063c5c20df2146107b9578063c87b56dd146107d9578063cd7c0326146107f957600080fd5b8063b88d4fde14610779578063b9334a1b1461079957600080fd5b80638da5cb5b1161013857806395d89b411161011257806395d89b4114610724578063a22cb46514610739578063a689a9141461075957600080fd5b80638da5cb5b146106b95780638f85fa94146106d7578063938e3d7b1461070457600080fd5b8063715018a611610169578063715018a61461065157806378c7d6ae146106665780637b47ec1a1461069957600080fd5b80636352211e1461061157806370a082311461063157600080fd5b806320379ee51161023d5780632f745c59116101f15780634d714275116101cb5780634d714275146105a45780634f6ccce7146105c45780635633dad0146105e457600080fd5b80632f745c59146105515780633408e4701461057157806342842e0e1461058457600080fd5b806323b872dd1161022257806323b872dd146104b657806329f5faf7146104d65780632d0335ab1461051b57600080fd5b806320379ee51461048157806323a36d2b1461049657600080fd5b80630b1d07de116102945780630d895ee1116102795780630d895ee1146104035780630f7e59701461042357806318160ddd1461046c57600080fd5b80630b1d07de146103c25780630c53c51c146103f057600080fd5b806306fdde03116102c557806306fdde0314610346578063081812fc14610368578063095ea7b3146103a057600080fd5b806301ffc9a7146102e157806303d41e0e14610316575b600080fd5b3480156102ed57600080fd5b506103016102fc366004612eb5565b6108eb565b60405190151581526020015b60405180910390f35b34801561032257600080fd5b50610301610331366004612ee7565b60126020526000908152604090205460ff1681565b34801561035257600080fd5b5061035b61092f565b60405161030d9190612f5c565b34801561037457600080fd5b50610388610383366004612f6f565b6109c1565b6040516001600160a01b03909116815260200161030d565b3480156103ac57600080fd5b506103c06103bb366004612f88565b610a5b565b005b3480156103ce57600080fd5b506103e26103dd366004612f6f565b610b9f565b60405190815260200161030d565b61035b6103fe366004613057565b610c13565b34801561040f57600080fd5b506103c061041e3660046130d5565b610e19565b34801561042f57600080fd5b5061035b6040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081565b34801561047857600080fd5b506008546103e2565b34801561048d57600080fd5b50600b546103e2565b3480156104a257600080fd5b506103c06104b1366004613113565b610f29565b3480156104c257600080fd5b506103c06104d1366004613148565b6110f1565b3480156104e257600080fd5b506104f66104f1366004612f6f565b61117f565b604080516001600160a01b03909416845260208401929092529082015260600161030d565b34801561052757600080fd5b506103e2610536366004612ee7565b6001600160a01b03166000908152600c602052604090205490565b34801561055d57600080fd5b506103e261056c366004612f88565b611225565b34801561057d57600080fd5b50466103e2565b34801561059057600080fd5b506103c061059f366004613148565b6112cd565b3480156105b057600080fd5b506103c06105bf366004613189565b6112e8565b3480156105d057600080fd5b506103e26105df366004612f6f565b6114ce565b3480156105f057600080fd5b506103e26105ff366004612f6f565b60166020526000908152604090205481565b34801561061d57600080fd5b5061038861062c366004612f6f565b611572565b34801561063d57600080fd5b506103e261064c366004612ee7565b6115fd565b34801561065d57600080fd5b506103c0611697565b34801561067257600080fd5b50610301610681366004612f6f565b60009081526013602052604090206002015460ff1690565b3480156106a557600080fd5b506103c06106b4366004612f6f565b61171c565b3480156106c557600080fd5b50600d546001600160a01b0316610388565b3480156106e357600080fd5b506106f76106f2366004612ee7565b61180c565b60405161030d91906131d9565b34801561071057600080fd5b506103c061071f36600461321d565b6118ae565b34801561073057600080fd5b5061035b61193a565b34801561074557600080fd5b506103c06107543660046130d5565b611949565b34801561076557600080fd5b5061035b610774366004612f6f565b611a4b565b34801561078557600080fd5b506103c0610794366004613252565b611b4c565b3480156107a557600080fd5b506103c06107b43660046132be565b611bdb565b3480156107c557600080fd5b506103c06107d43660046132e0565b611cc3565b3480156107e557600080fd5b5061035b6107f4366004612f6f565b611dbd565b34801561080557600080fd5b50600e54610388906001600160a01b031681565b34801561082557600080fd5b506103c06108343660046130d5565b611e41565b34801561084557600080fd5b506103e2610854366004612f6f565b60156020526000908152604090205481565b34801561087257600080fd5b5061035b611f52565b34801561088757600080fd5b50610301610896366004613327565b611f61565b3480156108a757600080fd5b506103c06108b6366004612ee7565b61204a565b3480156108c757600080fd5b506103016108d6366004612ee7565b60116020526000908152604090205460ff1681565b60006001600160e01b031982167f780e9d630000000000000000000000000000000000000000000000000000000014806109295750610929826121a8565b92915050565b60606000805461093e90613355565b80601f016020809104026020016040519081016040528092919081815260200182805461096a90613355565b80156109b75780601f1061098c576101008083540402835291602001916109b7565b820191906000526020600020905b81548152906001019060200180831161099a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a3f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610a6682611572565b9050806001600160a01b0316836001600160a01b03161415610af05760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610a36565b806001600160a01b0316610b02612243565b6001600160a01b03161480610b1e5750610b1e81610896612243565b610b905760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a36565b610b9a8383612252565b505050565b600081815260136020526040812060020154829060ff16610bfb5760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a590814185cdcc814dc1958da599a595960521b6044820152606401610a36565b60008381526013602052604090205491505b50919050565b60408051606081810183526001600160a01b0388166000818152600c602090815290859020548452830152918101869052610c5187828787876122c0565b610cc35760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d61746360448201527f68000000000000000000000000000000000000000000000000000000000000006064820152608401610a36565b6001600160a01b0387166000908152600c6020526040902054610ce79060016123c8565b6001600160a01b0388166000908152600c60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b90610d3790899033908a9061338a565b60405180910390a1600080306001600160a01b0316888a604051602001610d5f9291906133bf565b60408051601f1981840301815290829052610d79916133f6565b6000604051808303816000865af19150503d8060008114610db6576040519150601f19603f3d011682016040523d82523d6000602084013e610dbb565b606091505b509150915081610e0d5760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c000000006044820152606401610a36565b98975050505050505050565b610e21612243565b6001600160a01b0316610e3c600d546001600160a01b031690565b6001600160a01b031614610e925760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a36565b6001600160a01b038216610eda5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964204164647265737360881b6044820152606401610a36565b6001600160a01b03821660009081526012602052604090205460ff16151581151514610f25576001600160a01b0382166000908152601260205260409020805460ff19168215151790555b5050565b3360009081526011602052604090205460ff16610f885760405162461bcd60e51b815260206004820152601360248201527f556e617574686f72697a656420416363657373000000000000000000000000006044820152606401610a36565b6001600160a01b038316610fd05760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964204164647265737360881b6044820152606401610a36565b600081116110205760405162461bcd60e51b815260206004820152601260248201527f496e76616c6964204d696e7420436f756e7400000000000000000000000000006044820152606401610a36565b60008281526013602052604090206002015460ff1661107a5760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a590814185cdcc814dc1958da599a595960521b6044820152606401610a36565b60008281526015602052604081208054839290611098908490613428565b90915550600090505b818110156110eb5760006110b36123d4565b90506110bd6123e5565b60008181526014602052604090208490556110d885826123fc565b50806110e381613440565b9150506110a1565b50505050565b6111026110fc612243565b8261254a565b6111745760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a36565b610b9a838383612619565b600081815260146020908152604080832054835260139091528120600201548190819060ff166111f15760405162461bcd60e51b815260206004820152601960248201527f496e76616c696420546f6b656e496420537065636966696564000000000000006044820152606401610a36565b60006111fc85611572565b600095865260146020908152604080882054808952601390925290962054909690945092505050565b6000611230836115fd565b82106112a45760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e64730000000000000000000000000000000000000000006064820152608401610a36565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610b9a83838360405180602001604052806000815250611b4c565b6112f0612243565b6001600160a01b031661130b600d546001600160a01b031690565b6001600160a01b0316146113615760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a36565b60018310156113b25760405162461bcd60e51b815260206004820152600f60248201527f496e76616c6964205061737320494400000000000000000000000000000000006044820152606401610a36565b60008381526013602052604090206002015460ff16156114145760405162461bcd60e51b815260206004820152601860248201527f5061737320486173204265656e205265676973746572656400000000000000006044820152606401610a36565b60648211156114655760405162461bcd60e51b815260206004820152601060248201527f496e76616c696420446973636f756e74000000000000000000000000000000006044820152606401610a36565b6040805160608101825283815260208082018481526001838501819052600088815260138452949094208351815590518051939491936114ad93928501929190910190612e06565b50604091909101516002909101805460ff1916911515919091179055505050565b60006114d960085490565b821061154d5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e647300000000000000000000000000000000000000006064820152608401610a36565b600882815481106115605761156061345b565b90600052602060002001549050919050565b6000818152600260205260408120546001600160a01b0316806109295760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610a36565b60006001600160a01b03821661167b5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610a36565b506001600160a01b031660009081526003602052604090205490565b61169f612243565b6001600160a01b03166116ba600d546001600160a01b031690565b6001600160a01b0316146117105760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a36565b61171a60006127f1565b565b3360009081526012602052604090205460ff1661177b5760405162461bcd60e51b815260206004820152601360248201527f556e617574686f72697a656420416363657373000000000000000000000000006044820152606401610a36565b60008181526014602090815260408083205480845260139092529091206002015460ff166117e45760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a590814185cdcc814dc1958da599a595960521b6044820152606401610a36565b60008181526016602052604081208054916117fe83613440565b9190505550610f2582612843565b60606000611819836115fd565b905060008167ffffffffffffffff81111561183657611836612fb4565b60405190808252806020026020018201604052801561185f578160200160208202803683370190505b50905060005b828110156118a6576118778582611225565b8282815181106118895761188961345b565b60209081029190910101528061189e81613440565b915050611865565b509392505050565b6118b6612243565b6001600160a01b03166118d1600d546001600160a01b031690565b6001600160a01b0316146119275760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a36565b8051610f25906010906020840190612e06565b60606001805461093e90613355565b611951612243565b6001600160a01b0316826001600160a01b031614156119b25760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a36565b80600560006119bf612243565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611a03612243565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a3f911515815260200190565b60405180910390a35050565b600081815260136020526040902060020154606090829060ff16611aaa5760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a590814185cdcc814dc1958da599a595960521b6044820152606401610a36565b60008381526013602052604090206001018054611ac690613355565b80601f0160208091040260200160405190810160405280929190818152602001828054611af290613355565b8015611b3f5780601f10611b1457610100808354040283529160200191611b3f565b820191906000526020600020905b815481529060010190602001808311611b2257829003601f168201915b5050505050915050919050565b611b5d611b57612243565b8361254a565b611bcf5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610a36565b6110eb848484846128ea565b600082815260136020526040902060020154829060ff16611c375760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a590814185cdcc814dc1958da599a595960521b6044820152606401610a36565b611c3f612243565b6001600160a01b0316611c5a600d546001600160a01b031690565b6001600160a01b031614611cb05760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a36565b5060009182526013602052604090912055565b600082815260136020526040902060020154829060ff16611d1f5760405162461bcd60e51b8152602060048201526016602482015275125b9d985b1a590814185cdcc814dc1958da599a595960521b6044820152606401610a36565b611d27612243565b6001600160a01b0316611d42600d546001600160a01b031690565b6001600160a01b031614611d985760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a36565b600083815260136020908152604090912083516110eb92600190920191850190612e06565b6000818152601460209081526040808320548084526013909252909120600201546060919060ff16611e315760405162461bcd60e51b815260206004820152601960248201527f496e76616c696420546f6b656e494420537065636966696564000000000000006044820152606401610a36565b611e3a81611a4b565b9392505050565b611e49612243565b6001600160a01b0316611e64600d546001600160a01b031690565b6001600160a01b031614611eba5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a36565b6001600160a01b038216611f025760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964204164647265737360881b6044820152606401610a36565b6001600160a01b03821660009081526011602052604090205460ff16151581151514610f25576001600160a01b0382166000908152601160205260409020805482151560ff199091161790555050565b60606010805461093e90613355565b600e546040517fc45527910000000000000000000000000000000000000000000000000000000081526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b158015611fc757600080fd5b505afa158015611fdb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fff9190613471565b6001600160a01b03161415612018576001915050610929565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b612052612243565b6001600160a01b031661206d600d546001600160a01b031690565b6001600160a01b0316146120c35760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a36565b6001600160a01b03811661213f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610a36565b612148816127f1565b50565b6000333014156121a257600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506121a59050565b50335b90565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061220b57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061092957507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b0319831614610929565b600061224d61214b565b905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061228782611572565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b03861661233e5760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201527f49474e45520000000000000000000000000000000000000000000000000000006064820152608401610a36565b600161235161234c87612973565b6129f0565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa15801561239f573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b6000611e3a8284613428565b600f5460009061224d9060016123c8565b600f80549060006123f583613440565b9190505550565b6001600160a01b0382166124525760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a36565b6000818152600260205260409020546001600160a01b0316156124b75760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a36565b6124c360008383612a3b565b6001600160a01b03821660009081526003602052604081208054600192906124ec908490613428565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000818152600260205260408120546001600160a01b03166125c35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a36565b60006125ce83611572565b9050806001600160a01b0316846001600160a01b031614806126095750836001600160a01b03166125fe846109c1565b6001600160a01b0316145b8061204257506120428185611f61565b826001600160a01b031661262c82611572565b6001600160a01b0316146126a85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610a36565b6001600160a01b0382166127235760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610a36565b61272e838383612a3b565b612739600082612252565b6001600160a01b038316600090815260036020526040812080546001929061276290849061348e565b90915550506001600160a01b0382166000908152600360205260408120805460019290612790908490613428565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061284e82611572565b905061285c81600084612a3b565b612867600083612252565b6001600160a01b038116600090815260036020526040812080546001929061289090849061348e565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6128f5848484612619565b61290184848484612af3565b6110eb5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a36565b600060405180608001604052806043815260200161351560439139805160209182012083518483015160408087015180519086012090516129d3950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b60006129fb600b5490565b6040517f190100000000000000000000000000000000000000000000000000000000000060208201526022810191909152604281018390526062016129d3565b6001600160a01b038316612a9657612a9181600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612ab9565b816001600160a01b0316836001600160a01b031614612ab957612ab98382612c76565b6001600160a01b038216612ad057610b9a81612d13565b826001600160a01b0316826001600160a01b031614610b9a57610b9a8282612dc2565b60006001600160a01b0384163b15612c6b57836001600160a01b031663150b7a02612b1c612243565b8786866040518563ffffffff1660e01b8152600401612b3e94939291906134a5565b602060405180830381600087803b158015612b5857600080fd5b505af1925050508015612b88575060408051601f3d908101601f19168201909252612b85918101906134e1565b60015b612c38573d808015612bb6576040519150601f19603f3d011682016040523d82523d6000602084013e612bbb565b606091505b508051612c305760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610a36565b805181602001fd5b6001600160e01b0319167f150b7a0200000000000000000000000000000000000000000000000000000000149050612042565b506001949350505050565b60006001612c83846115fd565b612c8d919061348e565b600083815260076020526040902054909150808214612ce0576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612d259060019061348e565b60008381526009602052604081205460088054939450909284908110612d4d57612d4d61345b565b906000526020600020015490508060088381548110612d6e57612d6e61345b565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612da657612da66134fe565b6001900381819060005260206000200160009055905550505050565b6000612dcd836115fd565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612e1290613355565b90600052602060002090601f016020900481019282612e345760008555612e7a565b82601f10612e4d57805160ff1916838001178555612e7a565b82800160010185558215612e7a579182015b82811115612e7a578251825591602001919060010190612e5f565b50612e86929150612e8a565b5090565b5b80821115612e865760008155600101612e8b565b6001600160e01b03198116811461214857600080fd5b600060208284031215612ec757600080fd5b8135611e3a81612e9f565b6001600160a01b038116811461214857600080fd5b600060208284031215612ef957600080fd5b8135611e3a81612ed2565b60005b83811015612f1f578181015183820152602001612f07565b838111156110eb5750506000910152565b60008151808452612f48816020860160208601612f04565b601f01601f19169290920160200192915050565b602081526000611e3a6020830184612f30565b600060208284031215612f8157600080fd5b5035919050565b60008060408385031215612f9b57600080fd5b8235612fa681612ed2565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600082601f830112612fdb57600080fd5b813567ffffffffffffffff80821115612ff657612ff6612fb4565b604051601f8301601f19908116603f0116810190828211818310171561301e5761301e612fb4565b8160405283815286602085880101111561303757600080fd5b836020870160208301376000602085830101528094505050505092915050565b600080600080600060a0868803121561306f57600080fd5b853561307a81612ed2565b9450602086013567ffffffffffffffff81111561309657600080fd5b6130a288828901612fca565b9450506040860135925060608601359150608086013560ff811681146130c757600080fd5b809150509295509295909350565b600080604083850312156130e857600080fd5b82356130f381612ed2565b91506020830135801515811461310857600080fd5b809150509250929050565b60008060006060848603121561312857600080fd5b833561313381612ed2565b95602085013595506040909401359392505050565b60008060006060848603121561315d57600080fd5b833561316881612ed2565b9250602084013561317881612ed2565b929592945050506040919091013590565b60008060006060848603121561319e57600080fd5b8335925060208401359150604084013567ffffffffffffffff8111156131c357600080fd5b6131cf86828701612fca565b9150509250925092565b6020808252825182820181905260009190848201906040850190845b81811015613211578351835292840192918401916001016131f5565b50909695505050505050565b60006020828403121561322f57600080fd5b813567ffffffffffffffff81111561324657600080fd5b61204284828501612fca565b6000806000806080858703121561326857600080fd5b843561327381612ed2565b9350602085013561328381612ed2565b925060408501359150606085013567ffffffffffffffff8111156132a657600080fd5b6132b287828801612fca565b91505092959194509250565b600080604083850312156132d157600080fd5b50508035926020909101359150565b600080604083850312156132f357600080fd5b82359150602083013567ffffffffffffffff81111561331157600080fd5b61331d85828601612fca565b9150509250929050565b6000806040838503121561333a57600080fd5b823561334581612ed2565b9150602083013561310881612ed2565b600181811c9082168061336957607f821691505b60208210811415610c0d57634e487b7160e01b600052602260045260246000fd5b60006001600160a01b038086168352808516602084015250606060408301526133b66060830184612f30565b95945050505050565b600083516133d1818460208801612f04565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b60008251613408818460208701612f04565b9190910192915050565b634e487b7160e01b600052601160045260246000fd5b6000821982111561343b5761343b613412565b500190565b600060001982141561345457613454613412565b5060010190565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561348357600080fd5b8151611e3a81612ed2565b6000828210156134a0576134a0613412565b500390565b60006001600160a01b038087168352808616602084015250836040830152608060608301526134d76080830184612f30565b9695505050505050565b6000602082840312156134f357600080fd5b8151611e3a81612e9f565b634e487b7160e01b600052603160045260246000fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a2646970667358221220992fabd63d782089503d8c302992eda9f909444f3149ab7b1dadbaf9fa075abc64736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c100000000000000000000000000000000000000000000000000000000000000094d696e742050617373000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084d494e5450415353000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005268747470733a2f2f6c616e6464616f2e6d7970696e6174612e636c6f75642f697066732f516d56376d684a76393536357763754357766e596a357956587833436e3148596a63684b54414d595232507578750000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Mint Pass
Arg [1] : _symbol (string): MINTPASS
Arg [2] : _cURI (string): https://landdao.mypinata.cloud/ipfs/QmV7mhJv9565wcuCWvnYj5yVXx3Cn1HYjchKTAMYR2Puxu
Arg [3] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1
-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [5] : 4d696e7420506173730000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [7] : 4d494e5450415353000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000052
Arg [9] : 68747470733a2f2f6c616e6464616f2e6d7970696e6174612e636c6f75642f69
Arg [10] : 7066732f516d56376d684a76393536357763754357766e596a35795658783343
Arg [11] : 6e3148596a63684b54414d595232507578750000000000000000000000000000
Deployed Bytecode Sourcemap
90:5275:14:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;909:222:6;;;;;;;;;;-1:-1:-1;909:222:6;;;;;:::i;:::-;;:::i;:::-;;;611:14:19;;604:22;586:41;;574:2;559:18;909:222:6;;;;;;;;503:40:14;;;;;;;;;;-1:-1:-1;503:40:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;2349:98:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3860:217::-;;;;;;;;;;-1:-1:-1;3860:217:5;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2149:55:19;;;2131:74;;2119:2;2104:18;3860:217:5;1985:226:19;3398:401:5;;;;;;;;;;-1:-1:-1;3398:401:5;;;;;:::i;:::-;;:::i;:::-;;2556:146:14;;;;;;;;;;-1:-1:-1;2556:146:14;;;;;:::i;:::-;;:::i;:::-;;;2682:25:19;;;2670:2;2655:18;2556:146:14;2536:177:19;880:987:15;;;;;;:::i;:::-;;:::i;2016:210:14:-;;;;;;;;;;-1:-1:-1;2016:210:14;;;;;:::i;:::-;;:::i;266:43:3:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1534:111:6;;;;;;;;;;-1:-1:-1;1621:10:6;:17;1534:111;;1126:93:3;;;;;;;;;;-1:-1:-1;1199:15:3;;1126:93;;4594:508:14;;;;;;;;;;-1:-1:-1;4594:508:14;;;;;:::i;:::-;;:::i;4724:330:5:-;;;;;;;;;;-1:-1:-1;4724:330:5;;;;;:::i;:::-;;:::i;2982:356:14:-;;;;;;;;;;-1:-1:-1;2982:356:14;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;6288:55:19;;;6270:74;;6375:2;6360:18;;6353:34;;;;6403:18;;;6396:34;6258:2;6243:18;2982:356:14;6068:368:19;2183:99:15;;;;;;;;;;-1:-1:-1;2183:99:15;;;;;:::i;:::-;-1:-1:-1;;;;;2265:12:15;2236:13;2265:12;;;:6;:12;;;;;;;2183:99;1210:253:6;;;;;;;;;;-1:-1:-1;1210:253:6;;;;;:::i;:::-;;:::i;1223:131:3:-;;;;;;;;;;-1:-1:-1;1320:9:3;1223:131;;5120:179:5;;;;;;;;;;-1:-1:-1;5120:179:5;;;;;:::i;:::-;;:::i;3860:363:14:-;;;;;;;;;;-1:-1:-1;3860:363:14;;;;;:::i;:::-;;:::i;1717:230:6:-;;;;;;;;;;-1:-1:-1;1717:230:6;;;;;:::i;:::-;;:::i;872:47:14:-;;;;;;;;;;-1:-1:-1;872:47:14;;;;;:::i;:::-;;;;;;;;;;;;;;2052:235:5;;;;;;;;;;-1:-1:-1;2052:235:5;;;;;:::i;:::-;;:::i;1790:205::-;;;;;;;;;;-1:-1:-1;1790:205:5;;;;;:::i;:::-;;:::i;1598:92:16:-;;;;;;;;;;;;;:::i;2866:112:14:-;;;;;;;;;;-1:-1:-1;2866:112:14;;;;;:::i;:::-;2926:4;2945:21;;;:12;:21;;;;;:28;;;;;;2866:112;5143:220;;;;;;;;;;-1:-1:-1;5143:220:14;;;;;:::i;:::-;;:::i;966:85:16:-;;;;;;;;;;-1:-1:-1;1038:6:16;;-1:-1:-1;;;;;1038:6:16;966:85;;4227:309:14;;;;;;;;;;-1:-1:-1;4227:309:14;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;3761:95::-;;;;;;;;;;-1:-1:-1;3761:95:14;;;;;:::i;:::-;;:::i;2511:102:5:-;;;;;;;;;;;;;:::i;4144:290::-;;;;;;;;;;-1:-1:-1;4144:290:5;;;;;:::i;:::-;;:::i;2230:158:14:-;;;;;;;;;;-1:-1:-1;2230:158:14;;;;;:::i;:::-;;:::i;5365:320:5:-;;;;;;;;;;-1:-1:-1;5365:320:5;;;;;:::i;:::-;;:::i;2706:156:14:-;;;;;;;;;;-1:-1:-1;2706:156:14;;;;;:::i;:::-;;:::i;2392:160::-;;;;;;;;;;-1:-1:-1;2392:160:14;;;;;:::i;:::-;;:::i;3342:238::-;;;;;;;;;;-1:-1:-1;3342:238:14;;;;;:::i;:::-;;:::i;646:35:7:-;;;;;;;;;;-1:-1:-1;646:35:7;;;;-1:-1:-1;;;;;646:35:7;;;1743:210:14;;;;;;;;;;-1:-1:-1;1743:210:14;;;;;:::i;:::-;;:::i;820:48::-;;;;;;;;;;-1:-1:-1;820:48:14;;;;;:::i;:::-;;;;;;;;;;;;;;3584:89;;;;;;;;;;;;;:::i;1426:386:7:-;;;;;;;;;;-1:-1:-1;1426:386:7;;;;;:::i;:::-;;:::i;1839:189:16:-;;;;;;;;;;-1:-1:-1;1839:189:16;;;;;:::i;:::-;;:::i;459:40:14:-;;;;;;;;;;-1:-1:-1;459:40:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;909:222:6;1011:4;-1:-1:-1;;;;;;1034:50:6;;1049:35;1034:50;;:90;;;1088:36;1112:11;1088:23;:36::i;:::-;1027:97;909:222;-1:-1:-1;;909:222:6:o;2349:98:5:-;2403:13;2435:5;2428:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2349:98;:::o;3860:217::-;3936:7;7245:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7245:16:5;3955:73;;;;-1:-1:-1;;;3955:73:5;;10220:2:19;3955:73:5;;;10202:21:19;10259:2;10239:18;;;10232:30;10298:34;10278:18;;;10271:62;-1:-1:-1;;;10349:18:19;;;10342:42;10401:19;;3955:73:5;;;;;;;;;-1:-1:-1;4046:24:5;;;;:15;:24;;;;;;-1:-1:-1;;;;;4046:24:5;;3860:217::o;3398:401::-;3478:13;3494:23;3509:7;3494:14;:23::i;:::-;3478:39;;3541:5;-1:-1:-1;;;;;3535:11:5;:2;-1:-1:-1;;;;;3535:11:5;;;3527:57;;;;-1:-1:-1;;;3527:57:5;;10633:2:19;3527:57:5;;;10615:21:19;10672:2;10652:18;;;10645:30;10711:34;10691:18;;;10684:62;10782:3;10762:18;;;10755:31;10803:19;;3527:57:5;10431:397:19;3527:57:5;3632:5;-1:-1:-1;;;;;3616:21:5;:12;:10;:12::i;:::-;-1:-1:-1;;;;;3616:21:5;;:62;;;;3641:37;3658:5;3665:12;:10;:12::i;3641:37::-;3595:165;;;;-1:-1:-1;;;3595:165:5;;11035:2:19;3595:165:5;;;11017:21:19;11074:2;11054:18;;;11047:30;11113:34;11093:18;;;11086:62;11184:26;11164:18;;;11157:54;11228:19;;3595:165:5;10833:420:19;3595:165:5;3771:21;3780:2;3784:7;3771:8;:21::i;:::-;3468:331;3398:401;;:::o;2556:146:14:-;2643:7;1395:21;;;:12;:21;;;;;:28;;;2621:7;;1395:28;;1387:63;;;;-1:-1:-1;;;1387:63:14;;11460:2:19;1387:63:14;;;11442:21:19;11499:2;11479:18;;;11472:30;-1:-1:-1;;;11518:18:19;;;11511:52;11580:18;;1387:63:14;11258:346:19;1387:63:14;2667:21:::1;::::0;;;:12:::1;:21;::::0;;;;:30;;-1:-1:-1;1456:1:14::1;2556:146:::0;;;;:::o;880:987:15:-;1105:126;;;1053:12;1105:126;;;;;-1:-1:-1;;;;;1136:19:15;;1073:29;1136:19;;;:6;:19;;;;;;;;;1105:126;;;;;;;;;;;1253:45;1143:11;1105:126;1281:4;1287;1293;1253:6;:45::i;:::-;1238:109;;;;-1:-1:-1;;;1238:109:15;;11811:2:19;1238:109:15;;;11793:21:19;11850:2;11830:18;;;11823:30;11889:34;11869:18;;;11862:62;11960:3;11940:18;;;11933:31;11981:19;;1238:109:15;11609:397:19;1238:109:15;-1:-1:-1;;;;;1425:19:15;;;;;;:6;:19;;;;;;:26;;1449:1;1425:23;:26::i;:::-;-1:-1:-1;;;;;1403:19:15;;;;;;:6;:19;;;;;;;:48;;;;1463:100;;;;;1410:11;;1521:10;;1540:17;;1463:100;:::i;:::-;;;;;;;;1663:12;1677:23;1712:4;-1:-1:-1;;;;;1704:18:15;1747:17;1766:11;1730:48;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;1730:48:15;;;;;;;;;;1704:80;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1662:122;;;;1798:7;1790:48;;;;-1:-1:-1;;;1790:48:15;;13372:2:19;1790:48:15;;;13354:21:19;13411:2;13391:18;;;13384:30;13450;13430:18;;;13423:58;13498:18;;1790:48:15;13170:352:19;1790:48:15;1852:10;880:987;-1:-1:-1;;;;;;;;880:987:15:o;2016:210:14:-;1189:12:16;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:16;:7;1038:6;;-1:-1:-1;;;;;1038:6:16;;966:85;1178:7;-1:-1:-1;;;;;1178:23:16;;1170:68;;;;-1:-1:-1;;;1170:68:16;;13729:2:19;1170:68:16;;;13711:21:19;;;13748:18;;;13741:30;13807:34;13787:18;;;13780:62;13859:18;;1170:68:16;13527:356:19;1170:68:16;-1:-1:-1;;;;;2099:22:14;::::1;2091:50;;;::::0;-1:-1:-1;;;2091:50:14;;14090:2:19;2091:50:14::1;::::0;::::1;14072:21:19::0;14129:2;14109:18;;;14102:30;-1:-1:-1;;;14148:18:19;;;14141:45;14203:18;;2091:50:14::1;13888:339:19::0;2091:50:14::1;-1:-1:-1::0;;;;;2152:17:14;::::1;;::::0;;;:7:::1;:17;::::0;;;;;::::1;;:27;;::::0;::::1;;;2148:74;;-1:-1:-1::0;;;;;2189:17:14;::::1;;::::0;;;:7:::1;:17;::::0;;;;:26;;-1:-1:-1;;2189:26:14::1;::::0;::::1;;;::::0;;2148:74:::1;2016:210:::0;;:::o;4594:508::-;1049:10;1041:19;;;;:7;:19;;;;;;;;1033:51;;;;-1:-1:-1;;;1033:51:14;;14434:2:19;1033:51:14;;;14416:21:19;14473:2;14453:18;;;14446:30;14512:21;14492:18;;;14485:49;14551:18;;1033:51:14;14232:343:19;1033:51:14;-1:-1:-1;;;;;4714:22:14;::::1;4706:50;;;::::0;-1:-1:-1;;;4706:50:14;;14090:2:19;4706:50:14::1;::::0;::::1;14072:21:19::0;14129:2;14109:18;;;14102:30;-1:-1:-1;;;14148:18:19;;;14141:45;14203:18;;4706:50:14::1;13888:339:19::0;4706:50:14::1;4779:1;4770:6;:10;4762:41;;;::::0;-1:-1:-1;;;4762:41:14;;14782:2:19;4762:41:14::1;::::0;::::1;14764:21:19::0;14821:2;14801:18;;;14794:30;14860:20;14840:18;;;14833:48;14898:18;;4762:41:14::1;14580:342:19::0;4762:41:14::1;4817:21;::::0;;;:12:::1;:21;::::0;;;;:28:::1;;::::0;::::1;;4809:63;;;::::0;-1:-1:-1;;;4809:63:14;;11460:2:19;4809:63:14::1;::::0;::::1;11442:21:19::0;11499:2;11479:18;;;11472:30;-1:-1:-1;;;11518:18:19;;;11511:52;11580:18;;4809:63:14::1;11258:346:19::0;4809:63:14::1;4879:21;::::0;;;:12:::1;:21;::::0;;;;:31;;4904:6;;4879:21;:31:::1;::::0;4904:6;;4879:31:::1;:::i;:::-;::::0;;;-1:-1:-1;4922:9:14::1;::::0;-1:-1:-1;4917:181:14::1;4941:6;4937:1;:10;4917:181;;;4962:15;4980:17;:15;:17::i;:::-;4962:35;;5005:19;:17;:19::i;:::-;5033:16;::::0;;;:7:::1;:16;::::0;;;;:26;;;5067:24:::1;5073:8:::0;5041:7;5067:5:::1;:24::i;:::-;-1:-1:-1::0;4949:3:14;::::1;::::0;::::1;:::i;:::-;;;;4917:181;;;;4594:508:::0;;;:::o;4724:330:5:-;4913:41;4932:12;:10;:12::i;:::-;4946:7;4913:18;:41::i;:::-;4905:103;;;;-1:-1:-1;;;4905:103:5;;15591:2:19;4905:103:5;;;15573:21:19;15630:2;15610:18;;;15603:30;15669:34;15649:18;;;15642:62;15740:19;15720:18;;;15713:47;15777:19;;4905:103:5;15389:413:19;4905:103:5;5019:28;5029:4;5035:2;5039:7;5019:9;:28::i;2982:356:14:-;3043:7;3097:17;;;:7;:17;;;;;;;;;3084:31;;:12;:31;;;;;:38;;;3043:7;;;;3084:38;;3076:76;;;;-1:-1:-1;;;3076:76:14;;16009:2:19;3076:76:14;;;15991:21:19;16048:2;16028:18;;;16021:30;16087:27;16067:18;;;16060:55;16132:18;;3076:76:14;15807:349:19;3076:76:14;3159:13;3175:17;3183:8;3175:7;:17::i;:::-;3198:14;3215:17;;;:7;:17;;;;;;;;;3261:20;;;:12;:20;;;;;;:29;3159:33;;3261:29;;-1:-1:-1;2982:356:14;-1:-1:-1;;;2982:356:14:o;1210:253:6:-;1307:7;1342:23;1359:5;1342:16;:23::i;:::-;1334:5;:31;1326:87;;;;-1:-1:-1;;;1326:87:6;;16363:2:19;1326:87:6;;;16345:21:19;16402:2;16382:18;;;16375:30;16441:34;16421:18;;;16414:62;16512:13;16492:18;;;16485:41;16543:19;;1326:87:6;16161:407:19;1326:87:6;-1:-1:-1;;;;;;1430:19:6;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1210:253::o;5120:179:5:-;5253:39;5270:4;5276:2;5280:7;5253:39;;;;;;;;;;;;:16;:39::i;3860:363:14:-;1189:12:16;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:16;:7;1038:6;;-1:-1:-1;;;;;1038:6:16;;966:85;1178:7;-1:-1:-1;;;;;1178:23:16;;1170:68;;;;-1:-1:-1;;;1170:68:16;;13729:2:19;1170:68:16;;;13711:21:19;;;13748:18;;;13741:30;13807:34;13787:18;;;13780:62;13859:18;;1170:68:16;13527:356:19;1170:68:16;4007:1:14::1;3996:7;:12;;3988:40;;;::::0;-1:-1:-1;;;3988:40:14;;16775:2:19;3988:40:14::1;::::0;::::1;16757:21:19::0;16814:2;16794:18;;;16787:30;16853:17;16833:18;;;16826:45;16888:18;;3988:40:14::1;16573:339:19::0;3988:40:14::1;4043:21;::::0;;;:12:::1;:21;::::0;;;;:28:::1;;::::0;::::1;;4042:29;4034:66;;;::::0;-1:-1:-1;;;4034:66:14;;17119:2:19;4034:66:14::1;::::0;::::1;17101:21:19::0;17158:2;17138:18;;;17131:30;17197:26;17177:18;;;17170:54;17241:18;;4034:66:14::1;16917:348:19::0;4034:66:14::1;4127:3;4114:9;:16;;4106:45;;;::::0;-1:-1:-1;;;4106:45:14;;17472:2:19;4106:45:14::1;::::0;::::1;17454:21:19::0;17511:2;17491:18;;;17484:30;17550:18;17530;;;17523:46;17586:18;;4106:45:14::1;17270:340:19::0;4106:45:14::1;4182:36;::::0;;::::1;::::0;::::1;::::0;;;;;::::1;::::0;;::::1;::::0;;;4213:4:::1;4182:36:::0;;;;;;-1:-1:-1;4158:21:14;;;:12:::1;:21:::0;;;;;;:60;;;;;;;;4182:36;;4158:21;;:60:::1;::::0;;;::::1;::::0;;;;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;4158:60:14::1;::::0;;;::::1;::::0;::::1;::::0;;::::1;::::0;;-1:-1:-1;;4158:60:14::1;::::0;::::1;;::::0;;;::::1;::::0;;-1:-1:-1;;;3860:363:14:o;1717:230:6:-;1792:7;1827:30;1621:10;:17;;1534:111;1827:30;1819:5;:38;1811:95;;;;-1:-1:-1;;;1811:95:6;;17817:2:19;1811:95:6;;;17799:21:19;17856:2;17836:18;;;17829:30;17895:34;17875:18;;;17868:62;17966:14;17946:18;;;17939:42;17998:19;;1811:95:6;17615:408:19;1811:95:6;1923:10;1934:5;1923:17;;;;;;;;:::i;:::-;;;;;;;;;1916:24;;1717:230;;;:::o;2052:235:5:-;2124:7;2159:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2159:16:5;2193:19;2185:73;;;;-1:-1:-1;;;2185:73:5;;18419:2:19;2185:73:5;;;18401:21:19;18458:2;18438:18;;;18431:30;18497:34;18477:18;;;18470:62;18568:11;18548:18;;;18541:39;18597:19;;2185:73:5;18217:405:19;1790:205:5;1862:7;-1:-1:-1;;;;;1889:19:5;;1881:74;;;;-1:-1:-1;;;1881:74:5;;18829:2:19;1881:74:5;;;18811:21:19;18868:2;18848:18;;;18841:30;18907:34;18887:18;;;18880:62;18978:12;18958:18;;;18951:40;19008:19;;1881:74:5;18627:406:19;1881:74:5;-1:-1:-1;;;;;;1972:16:5;;;;;:9;:16;;;;;;;1790:205::o;1598:92:16:-;1189:12;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:16;:7;1038:6;;-1:-1:-1;;;;;1038:6:16;;966:85;1178:7;-1:-1:-1;;;;;1178:23:16;;1170:68;;;;-1:-1:-1;;;1170:68:16;;13729:2:19;1170:68:16;;;13711:21:19;;;13748:18;;;13741:30;13807:34;13787:18;;;13780:62;13859:18;;1170:68:16;13527:356:19;1170:68:16;1662:21:::1;1680:1;1662:9;:21::i;:::-;1598:92::o:0;5143:220:14:-;1225:10;1217:19;;;;:7;:19;;;;;;;;1209:51;;;;-1:-1:-1;;;1209:51:14;;14434:2:19;1209:51:14;;;14416:21:19;14473:2;14453:18;;;14446:30;14512:21;14492:18;;;14485:49;14551:18;;1209:51:14;14232:343:19;1209:51:14;5206:14:::1;5223:17:::0;;;:7:::1;:17;::::0;;;;;;;;5254:20;;;:12:::1;:20:::0;;;;;;:27:::1;;::::0;::::1;;5246:62;;;::::0;-1:-1:-1;;;5246:62:14;;11460:2:19;5246:62:14::1;::::0;::::1;11442:21:19::0;11499:2;11479:18;;;11472:30;-1:-1:-1;;;11518:18:19;;;11511:52;11580:18;;5246:62:14::1;11258:346:19::0;5246:62:14::1;5315:19;::::0;;;:11:::1;:19;::::0;;;;:21;;;::::1;::::0;::::1;:::i;:::-;;;;;;5343:15;5349:8;5343:5;:15::i;4227:309::-:0;4293:16;4317:13;4333:19;4343:8;4333:9;:19::i;:::-;4317:35;;4358:25;4400:5;4386:20;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4386:20:14;;4358:48;;4418:9;4413:97;4437:5;4433:1;:9;4413:97;;;4471:32;4491:8;4501:1;4471:19;:32::i;:::-;4457:8;4466:1;4457:11;;;;;;;;:::i;:::-;;;;;;;;;;:46;4444:3;;;;:::i;:::-;;;;4413:97;;;-1:-1:-1;4523:8:14;4227:309;-1:-1:-1;;;4227:309:14:o;3761:95::-;1189:12:16;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:16;:7;1038:6;;-1:-1:-1;;;;;1038:6:16;;966:85;1178:7;-1:-1:-1;;;;;1178:23:16;;1170:68;;;;-1:-1:-1;;;1170:68:16;;13729:2:19;1170:68:16;;;13711:21:19;;;13748:18;;;13741:30;13807:34;13787:18;;;13780:62;13859:18;;1170:68:16;13527:356:19;1170:68:16;3831:20:14;;::::1;::::0;:12:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;2511:102:5:-:0;2567:13;2599:7;2592:14;;;;;:::i;4144:290::-;4258:12;:10;:12::i;:::-;-1:-1:-1;;;;;4246:24:5;:8;-1:-1:-1;;;;;4246:24:5;;;4238:62;;;;-1:-1:-1;;;4238:62:5;;19240:2:19;4238:62:5;;;19222:21:19;19279:2;19259:18;;;19252:30;19318:27;19298:18;;;19291:55;19363:18;;4238:62:5;19038:349:19;4238:62:5;4356:8;4311:18;:32;4330:12;:10;:12::i;:::-;-1:-1:-1;;;;;4311:32:5;;;;;;;;;;;;;;;;;-1:-1:-1;4311:32:5;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;4311:53:5;;;;;;;;;;;4394:12;:10;:12::i;:::-;-1:-1:-1;;;;;4379:48:5;;4418:8;4379:48;;;;611:14:19;604:22;586:41;;574:2;559:18;;446:187;4379:48:5;;;;;;;;4144:290;;:::o;2230:158:14:-;1395:21;;;;:12;:21;;;;;:28;;;2319:13;;2297:7;;1395:28;;1387:63;;;;-1:-1:-1;;;1387:63:14;;11460:2:19;1387:63:14;;;11442:21:19;11499:2;11479:18;;;11472:30;-1:-1:-1;;;11518:18:19;;;11511:52;11580:18;;1387:63:14;11258:346:19;1387:63:14;2349:21:::1;::::0;;;:12:::1;:21;::::0;;;;:34:::1;;2342:41:::0;;::::1;::::0;::::1;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2230:158:::0;;;;:::o;5365:320:5:-;5534:41;5553:12;:10;:12::i;:::-;5567:7;5534:18;:41::i;:::-;5526:103;;;;-1:-1:-1;;;5526:103:5;;15591:2:19;5526:103:5;;;15573:21:19;15630:2;15610:18;;;15603:30;15669:34;15649:18;;;15642:62;15740:19;15720:18;;;15713:47;15777:19;;5526:103:5;15389:413:19;5526:103:5;5639:39;5653:4;5659:2;5663:7;5672:5;5639:13;:39::i;2706:156:14:-;1395:21;;;;:12;:21;;;;;:28;;;2788:7;;1395:28;;1387:63;;;;-1:-1:-1;;;1387:63:14;;11460:2:19;1387:63:14;;;11442:21:19;11499:2;11479:18;;;11472:30;-1:-1:-1;;;11518:18:19;;;11511:52;11580:18;;1387:63:14;11258:346:19;1387:63:14;1189:12:16::1;:10;:12::i;:::-;-1:-1:-1::0;;;;;1178:23:16::1;:7;1038:6:::0;;-1:-1:-1;;;;;1038:6:16;;966:85;1178:7:::1;-1:-1:-1::0;;;;;1178:23:16::1;;1170:68;;;::::0;-1:-1:-1;;;1170:68:16;;13729:2:19;1170:68:16::1;::::0;::::1;13711:21:19::0;;;13748:18;;;13741:30;13807:34;13787:18;;;13780:62;13859:18;;1170:68:16::1;13527:356:19::0;1170:68:16::1;-1:-1:-1::0;2815:21:14::2;::::0;;;:12:::2;:21;::::0;;;;;:42;2706:156::o;2392:160::-;1395:21;;;;:12;:21;;;;;:28;;;2479:7;;1395:28;;1387:63;;;;-1:-1:-1;;;1387:63:14;;11460:2:19;1387:63:14;;;11442:21:19;11499:2;11479:18;;;11472:30;-1:-1:-1;;;11518:18:19;;;11511:52;11580:18;;1387:63:14;11258:346:19;1387:63:14;1189:12:16::1;:10;:12::i;:::-;-1:-1:-1::0;;;;;1178:23:16::1;:7;1038:6:::0;;-1:-1:-1;;;;;1038:6:16;;966:85;1178:7:::1;-1:-1:-1::0;;;;;1178:23:16::1;;1170:68;;;::::0;-1:-1:-1;;;1170:68:16;;13729:2:19;1170:68:16::1;::::0;::::1;13711:21:19::0;;;13748:18;;;13741:30;13807:34;13787:18;;;13780:62;13859:18;;1170:68:16::1;13527:356:19::0;1170:68:16::1;2506:21:14::2;::::0;;;:12:::2;:21;::::0;;;;;;;:41;;::::2;::::0;:34:::2;::::0;;::::2;::::0;:41;::::2;::::0;::::2;:::i;3342:238::-:0;3429:14;3446:17;;;:7;:17;;;;;;;;;3477:20;;;:12;:20;;;;;;:27;;;3408:13;;3446:17;3477:27;;3469:65;;;;-1:-1:-1;;;3469:65:14;;19594:2:19;3469:65:14;;;19576:21:19;19633:2;19613:18;;;19606:30;19672:27;19652:18;;;19645:55;19717:18;;3469:65:14;19392:349:19;3469:65:14;3554:20;3567:6;3554:12;:20::i;:::-;3540:35;3342:238;-1:-1:-1;;;3342:238:14:o;1743:210::-;1189:12:16;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:16;:7;1038:6;;-1:-1:-1;;;;;1038:6:16;;966:85;1178:7;-1:-1:-1;;;;;1178:23:16;;1170:68;;;;-1:-1:-1;;;1170:68:16;;13729:2:19;1170:68:16;;;13711:21:19;;;13748:18;;;13741:30;13807:34;13787:18;;;13780:62;13859:18;;1170:68:16;13527:356:19;1170:68:16;-1:-1:-1;;;;;1826:22:14;::::1;1818:50;;;::::0;-1:-1:-1;;;1818:50:14;;14090:2:19;1818:50:14::1;::::0;::::1;14072:21:19::0;14129:2;14109:18;;;14102:30;-1:-1:-1;;;14148:18:19;;;14141:45;14203:18;;1818:50:14::1;13888:339:19::0;1818:50:14::1;-1:-1:-1::0;;;;;1879:17:14;::::1;;::::0;;;:7:::1;:17;::::0;;;;;::::1;;:27;;::::0;::::1;;;1875:74;;-1:-1:-1::0;;;;;1916:17:14;::::1;;::::0;;;:7:::1;:17;::::0;;;;:26;;;::::1;;-1:-1:-1::0;;1916:26:14;;::::1;;::::0;;1743:210;;:::o;3584:89::-;3628:13;3656:12;3649:19;;;;;:::i;1426:386:7:-;1647:20;;1686:28;;;;;-1:-1:-1;;;;;2149:55:19;;;1686:28:7;;;2131:74:19;1531:4:7;;1647:20;;;1678:49;;;;1647:20;;1686:21;;2104:18:19;;1686:28:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;1678:49:7;;1674:81;;;1744:4;1737:11;;;;;1674:81;-1:-1:-1;;;;;4620:25:5;;;4597:4;4620:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;1768:39:7;1761:46;1426:386;-1:-1:-1;;;;1426:386:7:o;1839:189:16:-;1189:12;:10;:12::i;:::-;-1:-1:-1;;;;;1178:23:16;:7;1038:6;;-1:-1:-1;;;;;1038:6:16;;966:85;1178:7;-1:-1:-1;;;;;1178:23:16;;1170:68;;;;-1:-1:-1;;;1170:68:16;;13729:2:19;1170:68:16;;;13711:21:19;;;13748:18;;;13741:30;13807:34;13787:18;;;13780:62;13859:18;;1170:68:16;13527:356:19;1170:68:16;-1:-1:-1;;;;;1927:22:16;::::1;1919:73;;;::::0;-1:-1:-1;;;1919:73:16;;20233:2:19;1919:73:16::1;::::0;::::1;20215:21:19::0;20272:2;20252:18;;;20245:30;20311:34;20291:18;;;20284:62;20382:8;20362:18;;;20355:36;20408:19;;1919:73:16::1;20031:402:19::0;1919:73:16::1;2002:19;2012:8;2002:9;:19::i;:::-;1839:189:::0;:::o;93:529:1:-;149:22;185:10;207:4;185:27;181:418;;;222:18;243:8;;222:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;275:8:1;452:17;446:24;-1:-1:-1;;;;;429:107:1;;-1:-1:-1;181:418:1;;-1:-1:-1;181:418:1;;-1:-1:-1;581:10:1;181:418;93:529;:::o;1431:300:5:-;1533:4;-1:-1:-1;;;;;;1568:40:5;;1583:25;1568:40;;:104;;-1:-1:-1;;;;;;;1624:48:5;;1639:33;1624:48;1568:104;:156;;;-1:-1:-1;886:25:4;-1:-1:-1;;;;;;871:40:4;;;1688:36:5;763:155:4;1945:130:7;2015:14;2046:24;:22;:24::i;:::-;2039:31;;1945:130;:::o;11008:171:5:-;11082:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11082:29:5;-1:-1:-1;;;;;11082:29:5;;;;;;;;:24;;11135:23;11082:24;11135:14;:23::i;:::-;-1:-1:-1;;;;;11126:46:5;;;;;;;;;;;11008:171;;:::o;2286:388:15:-;2436:4;-1:-1:-1;;;;;2456:20:15;;2448:70;;;;-1:-1:-1;;;2448:70:15;;20640:2:19;2448:70:15;;;20622:21:19;20679:2;20659:18;;;20652:30;20718:34;20698:18;;;20691:62;20789:7;20769:18;;;20762:35;20814:19;;2448:70:15;20438:401:19;2448:70:15;2553:116;2572:47;2591:27;2611:6;2591:19;:27::i;:::-;2572:18;:47::i;:::-;2553:116;;;;;;;;;;;;21071:25:19;;;;21144:4;21132:17;;21112:18;;;21105:45;21166:18;;;21159:34;;;21209:18;;;21202:34;;;21043:19;;2553:116:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;2537:132:15;:6;-1:-1:-1;;;;;2537:132:15;;2524:145;;2286:388;;;;;;;:::o;2672:96:17:-;2730:7;2756:5;2760:1;2756;:5;:::i;1072:99:7:-;1144:15;;1122:7;;1144:22;;1164:1;1144:19;:22::i;1239:66::-;1283:15;:17;;;:15;:17;;;:::i;:::-;;;;;;1239:66::o;9076:372:5:-;-1:-1:-1;;;;;9155:16:5;;9147:61;;;;-1:-1:-1;;;9147:61:5;;21449:2:19;9147:61:5;;;21431:21:19;;;21468:18;;;21461:30;21527:34;21507:18;;;21500:62;21579:18;;9147:61:5;21247:356:19;9147:61:5;7222:4;7245:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7245:16:5;:30;9218:58;;;;-1:-1:-1;;;9218:58:5;;21810:2:19;9218:58:5;;;21792:21:19;21849:2;21829:18;;;21822:30;21888;21868:18;;;21861:58;21936:18;;9218:58:5;21608:352:19;9218:58:5;9287:45;9316:1;9320:2;9324:7;9287:20;:45::i;:::-;-1:-1:-1;;;;;9343:13:5;;;;;;:9;:13;;;;;:18;;9360:1;;9343:13;:18;;9360:1;;9343:18;:::i;:::-;;;;-1:-1:-1;;9371:16:5;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9371:21:5;-1:-1:-1;;;;;9371:21:5;;;;;;;;9408:33;;9371:16;;;9408:33;;9371:16;;9408:33;9076:372;;:::o;7440:344::-;7533:4;7245:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7245:16:5;7549:73;;;;-1:-1:-1;;;7549:73:5;;22167:2:19;7549:73:5;;;22149:21:19;22206:2;22186:18;;;22179:30;22245:34;22225:18;;;22218:62;-1:-1:-1;;;22296:18:19;;;22289:42;22348:19;;7549:73:5;21965:408:19;7549:73:5;7632:13;7648:23;7663:7;7648:14;:23::i;:::-;7632:39;;7700:5;-1:-1:-1;;;;;7689:16:5;:7;-1:-1:-1;;;;;7689:16:5;;:51;;;;7733:7;-1:-1:-1;;;;;7709:31:5;:20;7721:7;7709:11;:20::i;:::-;-1:-1:-1;;;;;7709:31:5;;7689:51;:87;;;;7744:32;7761:5;7768:7;7744:16;:32::i;10337:560::-;10491:4;-1:-1:-1;;;;;10464:31:5;:23;10479:7;10464:14;:23::i;:::-;-1:-1:-1;;;;;10464:31:5;;10456:85;;;;-1:-1:-1;;;10456:85:5;;22580:2:19;10456:85:5;;;22562:21:19;22619:2;22599:18;;;22592:30;22658:34;22638:18;;;22631:62;22729:11;22709:18;;;22702:39;22758:19;;10456:85:5;22378:405:19;10456:85:5;-1:-1:-1;;;;;10559:16:5;;10551:65;;;;-1:-1:-1;;;10551:65:5;;22990:2:19;10551:65:5;;;22972:21:19;23029:2;23009:18;;;23002:30;23068:34;23048:18;;;23041:62;23139:6;23119:18;;;23112:34;23163:19;;10551:65:5;22788:400:19;10551:65:5;10627:39;10648:4;10654:2;10658:7;10627:20;:39::i;:::-;10728:29;10745:1;10749:7;10728:8;:29::i;:::-;-1:-1:-1;;;;;10768:15:5;;;;;;:9;:15;;;;;:20;;10787:1;;10768:15;:20;;10787:1;;10768:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10798:13:5;;;;;;:9;:13;;;;;:18;;10815:1;;10798:13;:18;;10815:1;;10798:18;:::i;:::-;;;;-1:-1:-1;;10826:16:5;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10826:21:5;-1:-1:-1;;;;;10826:21:5;;;;;;;;;10863:27;;10826:16;;10863:27;;;;;;;10337:560;;;:::o;2034:169:16:-;2108:6;;;-1:-1:-1;;;;;2124:17:16;;;-1:-1:-1;;;;;;2124:17:16;;;;;;;2156:40;;2108:6;;;2124:17;2108:6;;2156:40;;2089:16;;2156:40;2079:124;2034:169;:::o;9665:348:5:-;9724:13;9740:23;9755:7;9740:14;:23::i;:::-;9724:39;;9774:48;9795:5;9810:1;9814:7;9774:20;:48::i;:::-;9860:29;9877:1;9881:7;9860:8;:29::i;:::-;-1:-1:-1;;;;;9900:16:5;;;;;;:9;:16;;;;;:21;;9920:1;;9900:16;:21;;9920:1;;9900:21;:::i;:::-;;;;-1:-1:-1;;9938:16:5;;;;:7;:16;;;;;;9931:23;;-1:-1:-1;;;;;;9931:23:5;;;9970:36;9946:7;;9938:16;-1:-1:-1;;;;;9970:36:5;;;;;9938:16;;9970:36;9714:299;9665:348;:::o;6547:307::-;6698:28;6708:4;6714:2;6718:7;6698:9;:28::i;:::-;6744:48;6767:4;6773:2;6777:7;6786:5;6744:22;:48::i;:::-;6736:111;;;;-1:-1:-1;;;6736:111:5;;23525:2:19;6736:111:5;;;23507:21:19;23564:2;23544:18;;;23537:30;23603:34;23583:18;;;23576:62;23674:20;23654:18;;;23647:48;23712:19;;6736:111:5;23323:414:19;1871:308:15;1966:7;292:88;;;;;;;;;;;;;;;;;277:107;;;;;;;2074:12;;2098:11;;;;2131:24;;;;;2121:35;;;;;;2015:151;;;;;23973:25:19;;;24029:2;24014:18;;24007:34;;;;-1:-1:-1;;;;;24077:55:19;24072:2;24057:18;;24050:83;24164:2;24149:18;;24142:34;23960:3;23945:19;;23742:440;2015:151:15;;;;;;;;;;;;;1996:178;;;;;;1983:191;;1871:308;;;:::o;1704:209:3:-;1788:7;1866:20;1199:15;;;1126:93;1866:20;1837:63;;24457:66:19;1837:63:3;;;24445:79:19;24540:11;;;24533:27;;;;24576:12;;;24569:28;;;24613:12;;1837:63:3;24187:444:19;2543:572:6;-1:-1:-1;;;;;2742:18:6;;2738:183;;2776:40;2808:7;3924:10;:17;;3897:24;;;;:15;:24;;;;;:44;;;3951:24;;;;;;;;;;;;3821:161;2776:40;2738:183;;;2845:2;-1:-1:-1;;;;;2837:10:6;:4;-1:-1:-1;;;;;2837:10:6;;2833:88;;2863:47;2896:4;2902:7;2863:32;:47::i;:::-;-1:-1:-1;;;;;2934:16:6;;2930:179;;2966:45;3003:7;2966:36;:45::i;2930:179::-;3038:4;-1:-1:-1;;;;;3032:10:6;:2;-1:-1:-1;;;;;3032:10:6;;3028:81;;3058:40;3086:2;3090:7;3058:27;:40::i;11732:778:5:-;11882:4;-1:-1:-1;;;;;11902:13:5;;1034:20:0;1080:8;11898:606:5;;11953:2;-1:-1:-1;;;;;11937:36:5;;11974:12;:10;:12::i;:::-;11988:4;11994:7;12003:5;11937:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11937:72:5;;;;;;;;-1:-1:-1;;11937:72:5;;;;;;;;;;;;:::i;:::-;;;11933:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12176:13:5;;12172:266;;12218:60;;-1:-1:-1;;;12218:60:5;;23525:2:19;12218:60:5;;;23507:21:19;23564:2;23544:18;;;23537:30;23603:34;23583:18;;;23576:62;23674:20;23654:18;;;23647:48;23712:19;;12218:60:5;23323:414:19;12172:266:5;12390:6;12384:13;12375:6;12371:2;12367:15;12360:38;11933:519;-1:-1:-1;;;;;;12059:51:5;12069:41;12059:51;;-1:-1:-1;12052:58:5;;11898:606;-1:-1:-1;12489:4:5;11732:778;;;;;;:::o;4599:970:6:-;4861:22;4911:1;4886:22;4903:4;4886:16;:22::i;:::-;:26;;;;:::i;:::-;4922:18;4943:26;;;:17;:26;;;;;;4861:51;;-1:-1:-1;5073:28:6;;;5069:323;;-1:-1:-1;;;;;5139:18:6;;5117:19;5139:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5188:30;;;;;;:44;;;5304:30;;:17;:30;;;;;:43;;;5069:323;-1:-1:-1;5485:26:6;;;;:17;:26;;;;;;;;5478:33;;;-1:-1:-1;;;;;5528:18:6;;;;;:12;:18;;;;;:34;;;;;;;5521:41;4599:970::o;5857:1061::-;6131:10;:17;6106:22;;6131:21;;6151:1;;6131:21;:::i;:::-;6162:18;6183:24;;;:15;:24;;;;;;6551:10;:26;;6106:46;;-1:-1:-1;6183:24:6;;6106:46;;6551:26;;;;;;:::i;:::-;;;;;;;;;6529:48;;6613:11;6588:10;6599;6588:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;6692:28;;;:15;:28;;;;;;;:41;;;6861:24;;;;;6854:31;6895:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;5928:990;;;5857:1061;:::o;3409:217::-;3493:14;3510:20;3527:2;3510:16;:20::i;:::-;-1:-1:-1;;;;;3540:16:6;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3584:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3409:217:6:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:177:19;-1:-1:-1;;;;;;92:5:19;88:78;81:5;78:89;68:117;;181:1;178;171:12;196:245;254:6;307:2;295:9;286:7;282:23;278:32;275:52;;;323:1;320;313:12;275:52;362:9;349:23;381:30;405:5;381:30;:::i;638:154::-;-1:-1:-1;;;;;717:5:19;713:54;706:5;703:65;693:93;;782:1;779;772:12;797:247;856:6;909:2;897:9;888:7;884:23;880:32;877:52;;;925:1;922;915:12;877:52;964:9;951:23;983:31;1008:5;983:31;:::i;1049:258::-;1121:1;1131:113;1145:6;1142:1;1139:13;1131:113;;;1221:11;;;1215:18;1202:11;;;1195:39;1167:2;1160:10;1131:113;;;1262:6;1259:1;1256:13;1253:48;;;-1:-1:-1;;1297:1:19;1279:16;;1272:27;1049:258::o;1312:::-;1354:3;1392:5;1386:12;1419:6;1414:3;1407:19;1435:63;1491:6;1484:4;1479:3;1475:14;1468:4;1461:5;1457:16;1435:63;:::i;:::-;1552:2;1531:15;-1:-1:-1;;1527:29:19;1518:39;;;;1559:4;1514:50;;1312:258;-1:-1:-1;;1312:258:19:o;1575:220::-;1724:2;1713:9;1706:21;1687:4;1744:45;1785:2;1774:9;1770:18;1762:6;1744:45;:::i;1800:180::-;1859:6;1912:2;1900:9;1891:7;1887:23;1883:32;1880:52;;;1928:1;1925;1918:12;1880:52;-1:-1:-1;1951:23:19;;1800:180;-1:-1:-1;1800:180:19:o;2216:315::-;2284:6;2292;2345:2;2333:9;2324:7;2320:23;2316:32;2313:52;;;2361:1;2358;2351:12;2313:52;2400:9;2387:23;2419:31;2444:5;2419:31;:::i;:::-;2469:5;2521:2;2506:18;;;;2493:32;;-1:-1:-1;;;2216:315:19:o;2718:184::-;-1:-1:-1;;;2767:1:19;2760:88;2867:4;2864:1;2857:15;2891:4;2888:1;2881:15;2907:718;2949:5;3002:3;2995:4;2987:6;2983:17;2979:27;2969:55;;3020:1;3017;3010:12;2969:55;3056:6;3043:20;3082:18;3119:2;3115;3112:10;3109:36;;;3125:18;;:::i;:::-;3200:2;3194:9;3168:2;3254:13;;-1:-1:-1;;3250:22:19;;;3274:2;3246:31;3242:40;3230:53;;;3298:18;;;3318:22;;;3295:46;3292:72;;;3344:18;;:::i;:::-;3384:10;3380:2;3373:22;3419:2;3411:6;3404:18;3465:3;3458:4;3453:2;3445:6;3441:15;3437:26;3434:35;3431:55;;;3482:1;3479;3472:12;3431:55;3546:2;3539:4;3531:6;3527:17;3520:4;3512:6;3508:17;3495:54;3593:1;3586:4;3581:2;3573:6;3569:15;3565:26;3558:37;3613:6;3604:15;;;;;;2907:718;;;;:::o;3630:758::-;3732:6;3740;3748;3756;3764;3817:3;3805:9;3796:7;3792:23;3788:33;3785:53;;;3834:1;3831;3824:12;3785:53;3873:9;3860:23;3892:31;3917:5;3892:31;:::i;:::-;3942:5;-1:-1:-1;3998:2:19;3983:18;;3970:32;4025:18;4014:30;;4011:50;;;4057:1;4054;4047:12;4011:50;4080:49;4121:7;4112:6;4101:9;4097:22;4080:49;:::i;:::-;4070:59;;;4176:2;4165:9;4161:18;4148:32;4138:42;;4227:2;4216:9;4212:18;4199:32;4189:42;;4283:3;4272:9;4268:19;4255:33;4332:4;4323:7;4319:18;4310:7;4307:31;4297:59;;4352:1;4349;4342:12;4297:59;4375:7;4365:17;;;3630:758;;;;;;;;:::o;4616:416::-;4681:6;4689;4742:2;4730:9;4721:7;4717:23;4713:32;4710:52;;;4758:1;4755;4748:12;4710:52;4797:9;4784:23;4816:31;4841:5;4816:31;:::i;:::-;4866:5;-1:-1:-1;4923:2:19;4908:18;;4895:32;4965:15;;4958:23;4946:36;;4936:64;;4996:1;4993;4986:12;4936:64;5019:7;5009:17;;;4616:416;;;;;:::o;5219:383::-;5296:6;5304;5312;5365:2;5353:9;5344:7;5340:23;5336:32;5333:52;;;5381:1;5378;5371:12;5333:52;5420:9;5407:23;5439:31;5464:5;5439:31;:::i;:::-;5489:5;5541:2;5526:18;;5513:32;;-1:-1:-1;5592:2:19;5577:18;;;5564:32;;5219:383;-1:-1:-1;;;5219:383:19:o;5607:456::-;5684:6;5692;5700;5753:2;5741:9;5732:7;5728:23;5724:32;5721:52;;;5769:1;5766;5759:12;5721:52;5808:9;5795:23;5827:31;5852:5;5827:31;:::i;:::-;5877:5;-1:-1:-1;5934:2:19;5919:18;;5906:32;5947:33;5906:32;5947:33;:::i;:::-;5607:456;;5999:7;;-1:-1:-1;;;6053:2:19;6038:18;;;;6025:32;;5607:456::o;6441:457::-;6528:6;6536;6544;6597:2;6585:9;6576:7;6572:23;6568:32;6565:52;;;6613:1;6610;6603:12;6565:52;6649:9;6636:23;6626:33;;6706:2;6695:9;6691:18;6678:32;6668:42;;6761:2;6750:9;6746:18;6733:32;6788:18;6780:6;6777:30;6774:50;;;6820:1;6817;6810:12;6774:50;6843:49;6884:7;6875:6;6864:9;6860:22;6843:49;:::i;:::-;6833:59;;;6441:457;;;;;:::o;6903:632::-;7074:2;7126:21;;;7196:13;;7099:18;;;7218:22;;;7045:4;;7074:2;7297:15;;;;7271:2;7256:18;;;7045:4;7340:169;7354:6;7351:1;7348:13;7340:169;;;7415:13;;7403:26;;7484:15;;;;7449:12;;;;7376:1;7369:9;7340:169;;;-1:-1:-1;7526:3:19;;6903:632;-1:-1:-1;;;;;;6903:632:19:o;7540:321::-;7609:6;7662:2;7650:9;7641:7;7637:23;7633:32;7630:52;;;7678:1;7675;7668:12;7630:52;7718:9;7705:23;7751:18;7743:6;7740:30;7737:50;;;7783:1;7780;7773:12;7737:50;7806:49;7847:7;7838:6;7827:9;7823:22;7806:49;:::i;7866:665::-;7961:6;7969;7977;7985;8038:3;8026:9;8017:7;8013:23;8009:33;8006:53;;;8055:1;8052;8045:12;8006:53;8094:9;8081:23;8113:31;8138:5;8113:31;:::i;:::-;8163:5;-1:-1:-1;8220:2:19;8205:18;;8192:32;8233:33;8192:32;8233:33;:::i;:::-;8285:7;-1:-1:-1;8339:2:19;8324:18;;8311:32;;-1:-1:-1;8394:2:19;8379:18;;8366:32;8421:18;8410:30;;8407:50;;;8453:1;8450;8443:12;8407:50;8476:49;8517:7;8508:6;8497:9;8493:22;8476:49;:::i;:::-;8466:59;;;7866:665;;;;;;;:::o;8536:248::-;8604:6;8612;8665:2;8653:9;8644:7;8640:23;8636:32;8633:52;;;8681:1;8678;8671:12;8633:52;-1:-1:-1;;8704:23:19;;;8774:2;8759:18;;;8746:32;;-1:-1:-1;8536:248:19:o;8789:389::-;8867:6;8875;8928:2;8916:9;8907:7;8903:23;8899:32;8896:52;;;8944:1;8941;8934:12;8896:52;8980:9;8967:23;8957:33;;9041:2;9030:9;9026:18;9013:32;9068:18;9060:6;9057:30;9054:50;;;9100:1;9097;9090:12;9054:50;9123:49;9164:7;9155:6;9144:9;9140:22;9123:49;:::i;:::-;9113:59;;;8789:389;;;;;:::o;9183:388::-;9251:6;9259;9312:2;9300:9;9291:7;9287:23;9283:32;9280:52;;;9328:1;9325;9318:12;9280:52;9367:9;9354:23;9386:31;9411:5;9386:31;:::i;:::-;9436:5;-1:-1:-1;9493:2:19;9478:18;;9465:32;9506:33;9465:32;9506:33;:::i;9576:437::-;9655:1;9651:12;;;;9698;;;9719:61;;9773:4;9765:6;9761:17;9751:27;;9719:61;9826:2;9818:6;9815:14;9795:18;9792:38;9789:218;;;-1:-1:-1;;;9860:1:19;9853:88;9964:4;9961:1;9954:15;9992:4;9989:1;9982:15;12011:455;12193:4;-1:-1:-1;;;;;12303:2:19;12295:6;12291:15;12280:9;12273:34;12355:2;12347:6;12343:15;12338:2;12327:9;12323:18;12316:43;;12395:2;12390;12379:9;12375:18;12368:30;12415:45;12456:2;12445:9;12441:18;12433:6;12415:45;:::i;:::-;12407:53;12011:455;-1:-1:-1;;;;;12011:455:19:o;12471:415::-;12628:3;12666:6;12660:13;12682:53;12728:6;12723:3;12716:4;12708:6;12704:17;12682:53;:::i;:::-;12804:2;12800:15;;;;-1:-1:-1;;12796:53:19;12757:16;;;;12782:68;;;12877:2;12866:14;;12471:415;-1:-1:-1;;12471:415:19:o;12891:274::-;13020:3;13058:6;13052:13;13074:53;13120:6;13115:3;13108:4;13100:6;13096:17;13074:53;:::i;:::-;13143:16;;;;;12891:274;-1:-1:-1;;12891:274:19:o;14927:184::-;-1:-1:-1;;;14976:1:19;14969:88;15076:4;15073:1;15066:15;15100:4;15097:1;15090:15;15116:128;15156:3;15187:1;15183:6;15180:1;15177:13;15174:39;;;15193:18;;:::i;:::-;-1:-1:-1;15229:9:19;;15116:128::o;15249:135::-;15288:3;-1:-1:-1;;15309:17:19;;15306:43;;;15329:18;;:::i;:::-;-1:-1:-1;15376:1:19;15365:13;;15249:135::o;18028:184::-;-1:-1:-1;;;18077:1:19;18070:88;18177:4;18174:1;18167:15;18201:4;18198:1;18191:15;19746:280;19845:6;19898:2;19886:9;19877:7;19873:23;19869:32;19866:52;;;19914:1;19911;19904:12;19866:52;19946:9;19940:16;19965:31;19990:5;19965:31;:::i;23193:125::-;23233:4;23261:1;23258;23255:8;23252:34;;;23266:18;;:::i;:::-;-1:-1:-1;23303:9:19;;23193:125::o;24636:512::-;24830:4;-1:-1:-1;;;;;24940:2:19;24932:6;24928:15;24917:9;24910:34;24992:2;24984:6;24980:15;24975:2;24964:9;24960:18;24953:43;;25032:6;25027:2;25016:9;25012:18;25005:34;25075:3;25070:2;25059:9;25055:18;25048:31;25096:46;25137:3;25126:9;25122:19;25114:6;25096:46;:::i;:::-;25088:54;24636:512;-1:-1:-1;;;;;;24636:512:19:o;25153:249::-;25222:6;25275:2;25263:9;25254:7;25250:23;25246:32;25243:52;;;25291:1;25288;25281:12;25243:52;25323:9;25317:16;25342:30;25366:5;25342:30;:::i;25407:184::-;-1:-1:-1;;;25456:1:19;25449:88;25556:4;25553:1;25546:15;25580:4;25577:1;25570:15
Swarm Source
ipfs://992fabd63d782089503d8c302992eda9f909444f3149ab7b1dadbaf9fa075abc
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.