ETH Price: $3,505.60 (+2.59%)
Gas: 15 Gwei

Token

Land DAO (LANDDAO)
 

Overview

Max Total Supply

256 LANDDAO

Holders

120

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
thecryptojaguar.eth
Balance
0 LANDDAO
0x79f7e8adb157dcbc747cbc88550ea1b5faf87c1b
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Land

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 15 of 19: Land.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./SafeMath.sol";

import "./ERC721Tradable.sol";


contract Land is ERC721Tradable {
  using SafeMath for uint256;

  // Address of the primary sale logic contract
  address public logicContractAddress;

  // Maximum number of land tokens available
  uint256 private _maxSupply;

  // URI for the contract-level metadata
  string private _contractURI;
  // URI for the token metadata
  string private _tokenURI;

  // Add this modifier to all functions which are only accessible by the logic contract
  modifier onlyLogic() {
    require(msg.sender == logicContractAddress, "Unauthorized Access");
    _;
  }

  constructor (
    string memory _name,
    string memory _symbol,
    uint256 _supply,
    string memory _cURI,
    string memory _tURI,
    address _proxyRegistryAddress
  ) ERC721Tradable(_name, _symbol, _proxyRegistryAddress) {
    _maxSupply = _supply;
    _contractURI = _cURI;
    _tokenURI = _tURI;
  }

  // Using a placeholder to conform with the parent contract since it's not actually being used
  function baseTokenURI() override public pure returns (string memory) {
    return "";
  }

  function contractURI() public view returns (string memory) {
    return _contractURI;
  }

  // Overriding the getter since all lands share the same token URI while conforming to OpenSea's method signature
  function tokenURI(uint256 _tokenId) override public view returns (string memory) {
    return _tokenURI;
  }

  function setContractURI(string memory _cURI) external onlyOwner {
    _contractURI = _cURI;
  }

  function setTokenURI(string memory _tURI) external onlyOwner {
    _tokenURI = _tURI;
  }

  function setLogicContract(address _newAddress) external onlyOwner {
    require(_newAddress != address(0), "Invalid Address");
    logicContractAddress = _newAddress;
  }

  function maximumSupply() external view returns (uint256) {
    return _maxSupply;
  }

  // Mint new tokens to the specified address and token amount
  function mintToken(address _account, uint256 _count) external onlyLogic {
    require(_account != address(0), "Invalid Address");
    require(_maxSupply >= totalSupply() + _count, "All Tokens Have Been Minted");

    for (uint8 i = 0; i < _count; i++) {
      uint256 tokenId = _getNextTokenId();
      _mint(_account, tokenId);
      _incrementTokenId();
    }
  }

  // Burn the last minted token for the specified account
  function burnLastToken(address _account) external onlyLogic {
    require(_account != address(0), "Invalid Address");
    uint256 balance = balanceOf(_account);
    require(balance > 0, "Invalid Balance");

    uint256 tokenId = tokenOfOwnerByIndex(_account, balance - 1);
    _burn(tokenId);
  }
}

File 1 of 19: Address.sol
// 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);
            }
        }
    }
}

File 2 of 19: ContentMixin.sol
// 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;
  }
}

File 3 of 19: Context.sol
// 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;
    }
}

File 4 of 19: EIP712Base.sol
// 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)
      );
  }
}

File 5 of 19: ERC165.sol
// 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;
    }
}

File 6 of 19: ERC721.sol
// 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 {}
}

File 7 of 19: ERC721Enumerable.sol
// 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();
    }
}

File 8 of 19: ERC721Tradable.sol
// 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++;
  }

  function baseTokenURI() virtual public pure returns (string memory);

  /**
    * 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();
  }
}

File 9 of 19: IERC165.sol
// 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);
}

File 10 of 19: IERC721.sol
// 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;
}

File 11 of 19: IERC721Enumerable.sol
// 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);
}

File 12 of 19: IERC721Metadata.sol
// 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);
}

File 13 of 19: IERC721Receiver.sol
// 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);
}

File 14 of 19: Initializable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

contract Initializable {
  bool inited = false;

  modifier initializer() {
    require(!inited, "already inited");
    _;
    inited = true;
  }
}

File 16 of 19: NativeMetaTransaction.sol
// 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
      );
  }
}

File 17 of 19: Ownable.sol
// 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);
    }
}

File 18 of 19: SafeMath.sol
// 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;
        }
    }
}

File 19 of 19: Strings.sol
// 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

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint256","name":"_supply","type":"uint256"},{"internalType":"string","name":"_cURI","type":"string"},{"internalType":"string","name":"_tURI","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":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"burnLastToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"logicContractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_cURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"setLogicContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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"}]

6080604052600a805460ff191690556000600f553480156200002057600080fd5b506040516200308d3803806200308d833981016040819052620000439162000446565b8585828282816000908051906020019062000060929190620002cc565b50805162000076906001906020840190620002cc565b505050620000936200008d620000f960201b60201c565b62000115565b600e80546001600160a01b0319166001600160a01b038316179055620000b98362000167565b50505060118490558251620000d6906012906020860190620002cc565b508151620000ec906013906020850190620002cc565b505050505050506200056d565b600062000110620001cb60201b620017671760201c565b905090565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a5460ff1615620001b05760405162461bcd60e51b815260206004820152600e60248201526d185b1c9958591e481a5b9a5d195960921b604482015260640160405180910390fd5b620001bb816200022a565b50600a805460ff19166001179055565b6000333014156200022457600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b03169150620002279050565b50335b90565b6040518060800160405280604f81526020016200303e604f9139805160209182012082519282019290922060408051808201825260018152603160f81b90840152805180840194909452838101919091527fc89efdaa54c0f20c7adf612882df0950f5a951637e0307cdcb4c672f298b8bc660608401523060808401524660a0808501919091528151808503909101815260c090930190528151910120600b55565b828054620002da906200051a565b90600052602060002090601f016020900481019282620002fe576000855562000349565b82601f106200031957805160ff191683800117855562000349565b8280016001018555821562000349579182015b82811115620003495782518255916020019190600101906200032c565b50620003579291506200035b565b5090565b5b808211156200035757600081556001016200035c565b80516001600160a01b03811681146200038a57600080fd5b919050565b600082601f830112620003a157600080fd5b81516001600160401b0380821115620003be57620003be62000557565b604051601f8301601f19908116603f01168101908282118183101715620003e957620003e962000557565b816040528381526020925086838588010111156200040657600080fd5b600091505b838210156200042a57858201830151818301840152908201906200040b565b838211156200043c5760008385830101525b9695505050505050565b60008060008060008060c087890312156200046057600080fd5b86516001600160401b03808211156200047857600080fd5b620004868a838b016200038f565b975060208901519150808211156200049d57600080fd5b620004ab8a838b016200038f565b9650604089015195506060890151915080821115620004c957600080fd5b620004d78a838b016200038f565b94506080890151915080821115620004ee57600080fd5b50620004fd89828a016200038f565b9250506200050e60a0880162000372565b90509295509295509295565b600181811c908216806200052f57607f821691505b602082108114156200055157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612ac1806200057d6000396000f3fe6080604052600436106102195760003560e01c80636352211e1161011d578063b88d4fde116100b0578063d547cfb71161007f578063e8a3d48511610064578063e8a3d48514610626578063e985e9c51461063b578063f2fde38b1461065b57600080fd5b8063d547cfb7146105e5578063e0df5b6f1461060657600080fd5b8063b88d4fde14610565578063bccda81014610585578063c87b56dd146105a5578063cd7c0326146105c557600080fd5b80638da5cb5b116100ec5780638da5cb5b146104f2578063938e3d7b1461051057806395d89b4114610530578063a22cb4651461054557600080fd5b80636352211e1461047d57806370a082311461049d578063715018a6146104bd57806379c65068146104d257600080fd5b806318160ddd116101b05780632f745c591161017f57806342842e0e1161016457806342842e0e1461041d5780634f6ccce71461043d5780635aa4470f1461045d57600080fd5b80632f745c59146103ea5780633408e4701461040a57600080fd5b806318160ddd1461036a57806320379ee51461037f57806323b872dd146103945780632d0335ab146103b457600080fd5b8063095ea7b3116101ec578063095ea7b3146102cc5780630c53c51c146102ee5780630e370c3d146103015780630f7e59701461032157600080fd5b806301ffc9a71461021e5780630480e58b1461025357806306fdde0314610272578063081812fc14610294575b600080fd5b34801561022a57600080fd5b5061023e610239366004612738565b61067b565b60405190151581526020015b60405180910390f35b34801561025f57600080fd5b506011545b60405190815260200161024a565b34801561027e57600080fd5b506102876106bf565b60405161024a91906128e1565b3480156102a057600080fd5b506102b46102af3660046127d8565b610751565b6040516001600160a01b03909116815260200161024a565b3480156102d857600080fd5b506102ec6102e736600461270c565b6107eb565b005b6102876102fc36600461268e565b61092f565b34801561030d57600080fd5b506102ec61031c366004612558565b610b35565b34801561032d57600080fd5b506102876040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081565b34801561037657600080fd5b50600854610264565b34801561038b57600080fd5b50600b54610264565b3480156103a057600080fd5b506102ec6103af3660046125ae565b610c50565b3480156103c057600080fd5b506102646103cf366004612558565b6001600160a01b03166000908152600c602052604090205490565b3480156103f657600080fd5b5061026461040536600461270c565b610cde565b34801561041657600080fd5b5046610264565b34801561042957600080fd5b506102ec6104383660046125ae565b610d86565b34801561044957600080fd5b506102646104583660046127d8565b610da1565b34801561046957600080fd5b506102ec610478366004612558565b610e45565b34801561048957600080fd5b506102b46104983660046127d8565b610f28565b3480156104a957600080fd5b506102646104b8366004612558565b610fb3565b3480156104c957600080fd5b506102ec61104d565b3480156104de57600080fd5b506102ec6104ed36600461270c565b6110d2565b3480156104fe57600080fd5b50600d546001600160a01b03166102b4565b34801561051c57600080fd5b506102ec61052b36600461278f565b611218565b34801561053c57600080fd5b506102876112a8565b34801561055157600080fd5b506102ec61056036600461265b565b6112b7565b34801561057157600080fd5b506102ec6105803660046125ef565b6113b9565b34801561059157600080fd5b506010546102b4906001600160a01b031681565b3480156105b157600080fd5b506102876105c03660046127d8565b61144e565b3480156105d157600080fd5b50600e546102b4906001600160a01b031681565b3480156105f157600080fd5b50604080516020810190915260008152610287565b34801561061257600080fd5b506102ec61062136600461278f565b6114e2565b34801561063257600080fd5b5061028761156e565b34801561064757600080fd5b5061023e610656366004612575565b61157d565b34801561066757600080fd5b506102ec610676366004612558565b611666565b60006001600160e01b031982167f780e9d630000000000000000000000000000000000000000000000000000000014806106b957506106b9826117c4565b92915050565b6060600080546106ce9061294f565b80601f01602080910402602001604051908101604052809291908181526020018280546106fa9061294f565b80156107475780601f1061071c57610100808354040283529160200191610747565b820191906000526020600020905b81548152906001019060200180831161072a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107cf5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107f682610f28565b9050806001600160a01b0316836001600160a01b031614156108805760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016107c6565b806001600160a01b031661089261185f565b6001600160a01b031614806108ae57506108ae8161065661185f565b6109205760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107c6565b61092a838361186e565b505050565b60408051606081810183526001600160a01b0388166000818152600c60209081529085902054845283015291810186905261096d87828787876118dc565b6109df5760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d61746360448201527f680000000000000000000000000000000000000000000000000000000000000060648201526084016107c6565b6001600160a01b0387166000908152600c6020526040902054610a039060016119e4565b6001600160a01b0388166000908152600c60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b90610a5390899033908a90612870565b60405180910390a1600080306001600160a01b0316888a604051602001610a7b929190612839565b60408051601f1981840301815290829052610a959161281d565b6000604051808303816000865af19150503d8060008114610ad2576040519150601f19603f3d011682016040523d82523d6000602084013e610ad7565b606091505b509150915081610b295760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c0000000060448201526064016107c6565b98975050505050505050565b6010546001600160a01b03163314610b8f5760405162461bcd60e51b815260206004820152601360248201527f556e617574686f72697a6564204163636573730000000000000000000000000060448201526064016107c6565b6001600160a01b038116610bd75760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964204164647265737360881b60448201526064016107c6565b6000610be282610fb3565b905060008111610c345760405162461bcd60e51b815260206004820152600f60248201527f496e76616c69642042616c616e6365000000000000000000000000000000000060448201526064016107c6565b6000610c458361040560018561290c565b905061092a816119f7565b610c61610c5b61185f565b82611a9e565b610cd35760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016107c6565b61092a838383611b6d565b6000610ce983610fb3565b8210610d5d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e647300000000000000000000000000000000000000000060648201526084016107c6565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61092a838383604051806020016040528060008152506113b9565b6000610dac60085490565b8210610e205760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e6473000000000000000000000000000000000000000060648201526084016107c6565b60088281548110610e3357610e336129f1565b90600052602060002001549050919050565b610e4d61185f565b6001600160a01b0316610e68600d546001600160a01b031690565b6001600160a01b031614610ebe5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107c6565b6001600160a01b038116610f065760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964204164647265737360881b60448201526064016107c6565b601080546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600260205260408120546001600160a01b0316806106b95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016107c6565b60006001600160a01b0382166110315760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016107c6565b506001600160a01b031660009081526003602052604090205490565b61105561185f565b6001600160a01b0316611070600d546001600160a01b031690565b6001600160a01b0316146110c65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107c6565b6110d06000611d45565b565b6010546001600160a01b0316331461112c5760405162461bcd60e51b815260206004820152601360248201527f556e617574686f72697a6564204163636573730000000000000000000000000060448201526064016107c6565b6001600160a01b0382166111745760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964204164647265737360881b60448201526064016107c6565b8061117e60085490565b61118891906128f4565b60115410156111d95760405162461bcd60e51b815260206004820152601b60248201527f416c6c20546f6b656e732048617665204265656e204d696e746564000000000060448201526064016107c6565b60005b818160ff16101561092a5760006111f1611d97565b90506111fd8482611da8565b611205611ef6565b5080611210816129a5565b9150506111dc565b61122061185f565b6001600160a01b031661123b600d546001600160a01b031690565b6001600160a01b0316146112915760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107c6565b80516112a4906012906020840190612429565b5050565b6060600180546106ce9061294f565b6112bf61185f565b6001600160a01b0316826001600160a01b031614156113205760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107c6565b806005600061132d61185f565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561137161185f565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113ad911515815260200190565b60405180910390a35050565b6113ca6113c461185f565b83611a9e565b61143c5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016107c6565b61144884848484611f0d565b50505050565b60606013805461145d9061294f565b80601f01602080910402602001604051908101604052809291908181526020018280546114899061294f565b80156114d65780601f106114ab576101008083540402835291602001916114d6565b820191906000526020600020905b8154815290600101906020018083116114b957829003601f168201915b50505050509050919050565b6114ea61185f565b6001600160a01b0316611505600d546001600160a01b031690565b6001600160a01b03161461155b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107c6565b80516112a4906013906020840190612429565b6060601280546106ce9061294f565b600e546040517fc45527910000000000000000000000000000000000000000000000000000000081526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b1580156115e357600080fd5b505afa1580156115f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061161b9190612772565b6001600160a01b031614156116345760019150506106b9565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b61166e61185f565b6001600160a01b0316611689600d546001600160a01b031690565b6001600160a01b0316146116df5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107c6565b6001600160a01b03811661175b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016107c6565b61176481611d45565b50565b6000333014156117be57600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506117c19050565b50335b90565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061182757506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806106b957507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316146106b9565b6000611869611767565b905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118a382610f28565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b03861661195a5760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201527f49474e455200000000000000000000000000000000000000000000000000000060648201526084016107c6565b600161196d61196887611f96565b612013565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa1580156119bb573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b60006119f082846128f4565b9392505050565b6000611a0282610f28565b9050611a108160008461205e565b611a1b60008361186e565b6001600160a01b0381166000908152600360205260408120805460019290611a4490849061290c565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6000818152600260205260408120546001600160a01b0316611b175760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107c6565b6000611b2283610f28565b9050806001600160a01b0316846001600160a01b03161480611b5d5750836001600160a01b0316611b5284610751565b6001600160a01b0316145b8061165e575061165e818561157d565b826001600160a01b0316611b8082610f28565b6001600160a01b031614611bfc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016107c6565b6001600160a01b038216611c775760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016107c6565b611c8283838361205e565b611c8d60008261186e565b6001600160a01b0383166000908152600360205260408120805460019290611cb690849061290c565b90915550506001600160a01b0382166000908152600360205260408120805460019290611ce49084906128f4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600f546000906118699060016119e4565b6001600160a01b038216611dfe5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107c6565b6000818152600260205260409020546001600160a01b031615611e635760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107c6565b611e6f6000838361205e565b6001600160a01b0382166000908152600360205260408120805460019290611e989084906128f4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600f8054906000611f068361298a565b9190505550565b611f18848484611b6d565b611f2484848484612116565b6114485760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016107c6565b6000604051806080016040528060438152602001612a496043913980516020918201208351848301516040808701518051908601209051611ff6950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b600061201e600b5490565b6040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281019190915260428101839052606201611ff6565b6001600160a01b0383166120b9576120b481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6120dc565b816001600160a01b0316836001600160a01b0316146120dc576120dc8382612299565b6001600160a01b0382166120f35761092a81612336565b826001600160a01b0316826001600160a01b03161461092a5761092a82826123e5565b60006001600160a01b0384163b1561228e57836001600160a01b031663150b7a0261213f61185f565b8786866040518563ffffffff1660e01b815260040161216194939291906128a5565b602060405180830381600087803b15801561217b57600080fd5b505af19250505080156121ab575060408051601f3d908101601f191682019092526121a891810190612755565b60015b61225b573d8080156121d9576040519150601f19603f3d011682016040523d82523d6000602084013e6121de565b606091505b5080516122535760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016107c6565b805181602001fd5b6001600160e01b0319167f150b7a020000000000000000000000000000000000000000000000000000000014905061165e565b506001949350505050565b600060016122a684610fb3565b6122b0919061290c565b600083815260076020526040902054909150808214612303576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906123489060019061290c565b60008381526009602052604081205460088054939450909284908110612370576123706129f1565b906000526020600020015490508060088381548110612391576123916129f1565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806123c9576123c96129db565b6001900381819060005260206000200160009055905550505050565b60006123f083610fb3565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546124359061294f565b90600052602060002090601f016020900481019282612457576000855561249d565b82601f1061247057805160ff191683800117855561249d565b8280016001018555821561249d579182015b8281111561249d578251825591602001919060010190612482565b506124a99291506124ad565b5090565b5b808211156124a957600081556001016124ae565b600067ffffffffffffffff808411156124dd576124dd612a07565b604051601f8501601f19908116603f0116810190828211818310171561250557612505612a07565b8160405280935085815286868601111561251e57600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261254957600080fd5b6119f0838335602085016124c2565b60006020828403121561256a57600080fd5b81356119f081612a1d565b6000806040838503121561258857600080fd5b823561259381612a1d565b915060208301356125a381612a1d565b809150509250929050565b6000806000606084860312156125c357600080fd5b83356125ce81612a1d565b925060208401356125de81612a1d565b929592945050506040919091013590565b6000806000806080858703121561260557600080fd5b843561261081612a1d565b9350602085013561262081612a1d565b925060408501359150606085013567ffffffffffffffff81111561264357600080fd5b61264f87828801612538565b91505092959194509250565b6000806040838503121561266e57600080fd5b823561267981612a1d565b9150602083013580151581146125a357600080fd5b600080600080600060a086880312156126a657600080fd5b85356126b181612a1d565b9450602086013567ffffffffffffffff8111156126cd57600080fd5b6126d988828901612538565b9450506040860135925060608601359150608086013560ff811681146126fe57600080fd5b809150509295509295909350565b6000806040838503121561271f57600080fd5b823561272a81612a1d565b946020939093013593505050565b60006020828403121561274a57600080fd5b81356119f081612a32565b60006020828403121561276757600080fd5b81516119f081612a32565b60006020828403121561278457600080fd5b81516119f081612a1d565b6000602082840312156127a157600080fd5b813567ffffffffffffffff8111156127b857600080fd5b8201601f810184136127c957600080fd5b61165e848235602084016124c2565b6000602082840312156127ea57600080fd5b5035919050565b60008151808452612809816020860160208601612923565b601f01601f19169290920160200192915050565b6000825161282f818460208701612923565b9190910192915050565b6000835161284b818460208801612923565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b60006001600160a01b0380861683528085166020840152506060604083015261289c60608301846127f1565b95945050505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526128d760808301846127f1565b9695505050505050565b6020815260006119f060208301846127f1565b60008219821115612907576129076129c5565b500190565b60008282101561291e5761291e6129c5565b500390565b60005b8381101561293e578181015183820152602001612926565b838111156114485750506000910152565b600181811c9082168061296357607f821691505b6020821081141561298457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561299e5761299e6129c5565b5060010190565b600060ff821660ff8114156129bc576129bc6129c5565b60010192915050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461176457600080fd5b6001600160e01b03198116811461176457600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a26469706673582212200e57cf8baeed76a4c9402eb33b95e36781165c26af0f76fbcad209dfd966a7ce64736f6c63430008070033454950373132446f6d61696e28737472696e67206e616d652c737472696e672076657273696f6e2c6164647265737320766572696679696e67436f6e74726163742c627974657333322073616c742900000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c100000000000000000000000000000000000000000000000000000000000000084c616e642044414f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000074c414e4444414f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d504571723631314b6e58756471415561485744544c523957426b4467735859434e7a375539434e427241653600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d59726248696f59484c475146653347447071326d645a4d57336f6877727178517455417a6a3279476e4b574200000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102195760003560e01c80636352211e1161011d578063b88d4fde116100b0578063d547cfb71161007f578063e8a3d48511610064578063e8a3d48514610626578063e985e9c51461063b578063f2fde38b1461065b57600080fd5b8063d547cfb7146105e5578063e0df5b6f1461060657600080fd5b8063b88d4fde14610565578063bccda81014610585578063c87b56dd146105a5578063cd7c0326146105c557600080fd5b80638da5cb5b116100ec5780638da5cb5b146104f2578063938e3d7b1461051057806395d89b4114610530578063a22cb4651461054557600080fd5b80636352211e1461047d57806370a082311461049d578063715018a6146104bd57806379c65068146104d257600080fd5b806318160ddd116101b05780632f745c591161017f57806342842e0e1161016457806342842e0e1461041d5780634f6ccce71461043d5780635aa4470f1461045d57600080fd5b80632f745c59146103ea5780633408e4701461040a57600080fd5b806318160ddd1461036a57806320379ee51461037f57806323b872dd146103945780632d0335ab146103b457600080fd5b8063095ea7b3116101ec578063095ea7b3146102cc5780630c53c51c146102ee5780630e370c3d146103015780630f7e59701461032157600080fd5b806301ffc9a71461021e5780630480e58b1461025357806306fdde0314610272578063081812fc14610294575b600080fd5b34801561022a57600080fd5b5061023e610239366004612738565b61067b565b60405190151581526020015b60405180910390f35b34801561025f57600080fd5b506011545b60405190815260200161024a565b34801561027e57600080fd5b506102876106bf565b60405161024a91906128e1565b3480156102a057600080fd5b506102b46102af3660046127d8565b610751565b6040516001600160a01b03909116815260200161024a565b3480156102d857600080fd5b506102ec6102e736600461270c565b6107eb565b005b6102876102fc36600461268e565b61092f565b34801561030d57600080fd5b506102ec61031c366004612558565b610b35565b34801561032d57600080fd5b506102876040518060400160405280600181526020017f310000000000000000000000000000000000000000000000000000000000000081525081565b34801561037657600080fd5b50600854610264565b34801561038b57600080fd5b50600b54610264565b3480156103a057600080fd5b506102ec6103af3660046125ae565b610c50565b3480156103c057600080fd5b506102646103cf366004612558565b6001600160a01b03166000908152600c602052604090205490565b3480156103f657600080fd5b5061026461040536600461270c565b610cde565b34801561041657600080fd5b5046610264565b34801561042957600080fd5b506102ec6104383660046125ae565b610d86565b34801561044957600080fd5b506102646104583660046127d8565b610da1565b34801561046957600080fd5b506102ec610478366004612558565b610e45565b34801561048957600080fd5b506102b46104983660046127d8565b610f28565b3480156104a957600080fd5b506102646104b8366004612558565b610fb3565b3480156104c957600080fd5b506102ec61104d565b3480156104de57600080fd5b506102ec6104ed36600461270c565b6110d2565b3480156104fe57600080fd5b50600d546001600160a01b03166102b4565b34801561051c57600080fd5b506102ec61052b36600461278f565b611218565b34801561053c57600080fd5b506102876112a8565b34801561055157600080fd5b506102ec61056036600461265b565b6112b7565b34801561057157600080fd5b506102ec6105803660046125ef565b6113b9565b34801561059157600080fd5b506010546102b4906001600160a01b031681565b3480156105b157600080fd5b506102876105c03660046127d8565b61144e565b3480156105d157600080fd5b50600e546102b4906001600160a01b031681565b3480156105f157600080fd5b50604080516020810190915260008152610287565b34801561061257600080fd5b506102ec61062136600461278f565b6114e2565b34801561063257600080fd5b5061028761156e565b34801561064757600080fd5b5061023e610656366004612575565b61157d565b34801561066757600080fd5b506102ec610676366004612558565b611666565b60006001600160e01b031982167f780e9d630000000000000000000000000000000000000000000000000000000014806106b957506106b9826117c4565b92915050565b6060600080546106ce9061294f565b80601f01602080910402602001604051908101604052809291908181526020018280546106fa9061294f565b80156107475780601f1061071c57610100808354040283529160200191610747565b820191906000526020600020905b81548152906001019060200180831161072a57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107cf5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006107f682610f28565b9050806001600160a01b0316836001600160a01b031614156108805760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016107c6565b806001600160a01b031661089261185f565b6001600160a01b031614806108ae57506108ae8161065661185f565b6109205760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107c6565b61092a838361186e565b505050565b60408051606081810183526001600160a01b0388166000818152600c60209081529085902054845283015291810186905261096d87828787876118dc565b6109df5760405162461bcd60e51b815260206004820152602160248201527f5369676e657220616e64207369676e617475726520646f206e6f74206d61746360448201527f680000000000000000000000000000000000000000000000000000000000000060648201526084016107c6565b6001600160a01b0387166000908152600c6020526040902054610a039060016119e4565b6001600160a01b0388166000908152600c60205260409081902091909155517f5845892132946850460bff5a0083f71031bc5bf9aadcd40f1de79423eac9b10b90610a5390899033908a90612870565b60405180910390a1600080306001600160a01b0316888a604051602001610a7b929190612839565b60408051601f1981840301815290829052610a959161281d565b6000604051808303816000865af19150503d8060008114610ad2576040519150601f19603f3d011682016040523d82523d6000602084013e610ad7565b606091505b509150915081610b295760405162461bcd60e51b815260206004820152601c60248201527f46756e6374696f6e2063616c6c206e6f74207375636365737366756c0000000060448201526064016107c6565b98975050505050505050565b6010546001600160a01b03163314610b8f5760405162461bcd60e51b815260206004820152601360248201527f556e617574686f72697a6564204163636573730000000000000000000000000060448201526064016107c6565b6001600160a01b038116610bd75760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964204164647265737360881b60448201526064016107c6565b6000610be282610fb3565b905060008111610c345760405162461bcd60e51b815260206004820152600f60248201527f496e76616c69642042616c616e6365000000000000000000000000000000000060448201526064016107c6565b6000610c458361040560018561290c565b905061092a816119f7565b610c61610c5b61185f565b82611a9e565b610cd35760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016107c6565b61092a838383611b6d565b6000610ce983610fb3565b8210610d5d5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201527f74206f6620626f756e647300000000000000000000000000000000000000000060648201526084016107c6565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61092a838383604051806020016040528060008152506113b9565b6000610dac60085490565b8210610e205760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201527f7574206f6620626f756e6473000000000000000000000000000000000000000060648201526084016107c6565b60088281548110610e3357610e336129f1565b90600052602060002001549050919050565b610e4d61185f565b6001600160a01b0316610e68600d546001600160a01b031690565b6001600160a01b031614610ebe5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107c6565b6001600160a01b038116610f065760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964204164647265737360881b60448201526064016107c6565b601080546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600260205260408120546001600160a01b0316806106b95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016107c6565b60006001600160a01b0382166110315760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016107c6565b506001600160a01b031660009081526003602052604090205490565b61105561185f565b6001600160a01b0316611070600d546001600160a01b031690565b6001600160a01b0316146110c65760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107c6565b6110d06000611d45565b565b6010546001600160a01b0316331461112c5760405162461bcd60e51b815260206004820152601360248201527f556e617574686f72697a6564204163636573730000000000000000000000000060448201526064016107c6565b6001600160a01b0382166111745760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964204164647265737360881b60448201526064016107c6565b8061117e60085490565b61118891906128f4565b60115410156111d95760405162461bcd60e51b815260206004820152601b60248201527f416c6c20546f6b656e732048617665204265656e204d696e746564000000000060448201526064016107c6565b60005b818160ff16101561092a5760006111f1611d97565b90506111fd8482611da8565b611205611ef6565b5080611210816129a5565b9150506111dc565b61122061185f565b6001600160a01b031661123b600d546001600160a01b031690565b6001600160a01b0316146112915760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107c6565b80516112a4906012906020840190612429565b5050565b6060600180546106ce9061294f565b6112bf61185f565b6001600160a01b0316826001600160a01b031614156113205760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107c6565b806005600061132d61185f565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561137161185f565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516113ad911515815260200190565b60405180910390a35050565b6113ca6113c461185f565b83611a9e565b61143c5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016107c6565b61144884848484611f0d565b50505050565b60606013805461145d9061294f565b80601f01602080910402602001604051908101604052809291908181526020018280546114899061294f565b80156114d65780601f106114ab576101008083540402835291602001916114d6565b820191906000526020600020905b8154815290600101906020018083116114b957829003601f168201915b50505050509050919050565b6114ea61185f565b6001600160a01b0316611505600d546001600160a01b031690565b6001600160a01b03161461155b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107c6565b80516112a4906013906020840190612429565b6060601280546106ce9061294f565b600e546040517fc45527910000000000000000000000000000000000000000000000000000000081526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b1580156115e357600080fd5b505afa1580156115f7573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061161b9190612772565b6001600160a01b031614156116345760019150506106b9565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b61166e61185f565b6001600160a01b0316611689600d546001600160a01b031690565b6001600160a01b0316146116df5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107c6565b6001600160a01b03811661175b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016107c6565b61176481611d45565b50565b6000333014156117be57600080368080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152505050503601516001600160a01b031691506117c19050565b50335b90565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061182757506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806106b957507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316146106b9565b6000611869611767565b905090565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118a382610f28565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006001600160a01b03861661195a5760405162461bcd60e51b815260206004820152602560248201527f4e61746976654d6574615472616e73616374696f6e3a20494e56414c49445f5360448201527f49474e455200000000000000000000000000000000000000000000000000000060648201526084016107c6565b600161196d61196887611f96565b612013565b6040805160008152602081018083529290925260ff851690820152606081018690526080810185905260a0016020604051602081039080840390855afa1580156119bb573d6000803e3d6000fd5b505050602060405103516001600160a01b0316866001600160a01b031614905095945050505050565b60006119f082846128f4565b9392505050565b6000611a0282610f28565b9050611a108160008461205e565b611a1b60008361186e565b6001600160a01b0381166000908152600360205260408120805460019290611a4490849061290c565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6000818152600260205260408120546001600160a01b0316611b175760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107c6565b6000611b2283610f28565b9050806001600160a01b0316846001600160a01b03161480611b5d5750836001600160a01b0316611b5284610751565b6001600160a01b0316145b8061165e575061165e818561157d565b826001600160a01b0316611b8082610f28565b6001600160a01b031614611bfc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016107c6565b6001600160a01b038216611c775760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016107c6565b611c8283838361205e565b611c8d60008261186e565b6001600160a01b0383166000908152600360205260408120805460019290611cb690849061290c565b90915550506001600160a01b0382166000908152600360205260408120805460019290611ce49084906128f4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600d80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600f546000906118699060016119e4565b6001600160a01b038216611dfe5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107c6565b6000818152600260205260409020546001600160a01b031615611e635760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107c6565b611e6f6000838361205e565b6001600160a01b0382166000908152600360205260408120805460019290611e989084906128f4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600f8054906000611f068361298a565b9190505550565b611f18848484611b6d565b611f2484848484612116565b6114485760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016107c6565b6000604051806080016040528060438152602001612a496043913980516020918201208351848301516040808701518051908601209051611ff6950193845260208401929092526001600160a01b03166040830152606082015260800190565b604051602081830303815290604052805190602001209050919050565b600061201e600b5490565b6040517f19010000000000000000000000000000000000000000000000000000000000006020820152602281019190915260428101839052606201611ff6565b6001600160a01b0383166120b9576120b481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6120dc565b816001600160a01b0316836001600160a01b0316146120dc576120dc8382612299565b6001600160a01b0382166120f35761092a81612336565b826001600160a01b0316826001600160a01b03161461092a5761092a82826123e5565b60006001600160a01b0384163b1561228e57836001600160a01b031663150b7a0261213f61185f565b8786866040518563ffffffff1660e01b815260040161216194939291906128a5565b602060405180830381600087803b15801561217b57600080fd5b505af19250505080156121ab575060408051601f3d908101601f191682019092526121a891810190612755565b60015b61225b573d8080156121d9576040519150601f19603f3d011682016040523d82523d6000602084013e6121de565b606091505b5080516122535760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016107c6565b805181602001fd5b6001600160e01b0319167f150b7a020000000000000000000000000000000000000000000000000000000014905061165e565b506001949350505050565b600060016122a684610fb3565b6122b0919061290c565b600083815260076020526040902054909150808214612303576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906123489060019061290c565b60008381526009602052604081205460088054939450909284908110612370576123706129f1565b906000526020600020015490508060088381548110612391576123916129f1565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806123c9576123c96129db565b6001900381819060005260206000200160009055905550505050565b60006123f083610fb3565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b8280546124359061294f565b90600052602060002090601f016020900481019282612457576000855561249d565b82601f1061247057805160ff191683800117855561249d565b8280016001018555821561249d579182015b8281111561249d578251825591602001919060010190612482565b506124a99291506124ad565b5090565b5b808211156124a957600081556001016124ae565b600067ffffffffffffffff808411156124dd576124dd612a07565b604051601f8501601f19908116603f0116810190828211818310171561250557612505612a07565b8160405280935085815286868601111561251e57600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261254957600080fd5b6119f0838335602085016124c2565b60006020828403121561256a57600080fd5b81356119f081612a1d565b6000806040838503121561258857600080fd5b823561259381612a1d565b915060208301356125a381612a1d565b809150509250929050565b6000806000606084860312156125c357600080fd5b83356125ce81612a1d565b925060208401356125de81612a1d565b929592945050506040919091013590565b6000806000806080858703121561260557600080fd5b843561261081612a1d565b9350602085013561262081612a1d565b925060408501359150606085013567ffffffffffffffff81111561264357600080fd5b61264f87828801612538565b91505092959194509250565b6000806040838503121561266e57600080fd5b823561267981612a1d565b9150602083013580151581146125a357600080fd5b600080600080600060a086880312156126a657600080fd5b85356126b181612a1d565b9450602086013567ffffffffffffffff8111156126cd57600080fd5b6126d988828901612538565b9450506040860135925060608601359150608086013560ff811681146126fe57600080fd5b809150509295509295909350565b6000806040838503121561271f57600080fd5b823561272a81612a1d565b946020939093013593505050565b60006020828403121561274a57600080fd5b81356119f081612a32565b60006020828403121561276757600080fd5b81516119f081612a32565b60006020828403121561278457600080fd5b81516119f081612a1d565b6000602082840312156127a157600080fd5b813567ffffffffffffffff8111156127b857600080fd5b8201601f810184136127c957600080fd5b61165e848235602084016124c2565b6000602082840312156127ea57600080fd5b5035919050565b60008151808452612809816020860160208601612923565b601f01601f19169290920160200192915050565b6000825161282f818460208701612923565b9190910192915050565b6000835161284b818460208801612923565b60609390931b6bffffffffffffffffffffffff19169190920190815260140192915050565b60006001600160a01b0380861683528085166020840152506060604083015261289c60608301846127f1565b95945050505050565b60006001600160a01b038087168352808616602084015250836040830152608060608301526128d760808301846127f1565b9695505050505050565b6020815260006119f060208301846127f1565b60008219821115612907576129076129c5565b500190565b60008282101561291e5761291e6129c5565b500390565b60005b8381101561293e578181015183820152602001612926565b838111156114485750506000910152565b600181811c9082168061296357607f821691505b6020821081141561298457634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561299e5761299e6129c5565b5060010190565b600060ff821660ff8114156129bc576129bc6129c5565b60010192915050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461176457600080fd5b6001600160e01b03198116811461176457600080fdfe4d6574615472616e73616374696f6e2875696e74323536206e6f6e63652c616464726573732066726f6d2c62797465732066756e6374696f6e5369676e617475726529a26469706673582212200e57cf8baeed76a4c9402eb33b95e36781165c26af0f76fbcad209dfd966a7ce64736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c100000000000000000000000000000000000000000000000000000000000000084c616e642044414f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000074c414e4444414f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d504571723631314b6e58756471415561485744544c523957426b4467735859434e7a375539434e427241653600000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d59726248696f59484c475146653347447071326d645a4d57336f6877727178517455417a6a3279476e4b574200000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Land DAO
Arg [1] : _symbol (string): LANDDAO
Arg [2] : _supply (uint256): 256
Arg [3] : _cURI (string): https://gateway.pinata.cloud/ipfs/QmPEqr611KnXudqAUaHWDTLR9WBkDgsXYCNz7U9CNBrAe6
Arg [4] : _tURI (string): https://gateway.pinata.cloud/ipfs/QmYrbHioYHLGQFe3GDpq2mdZMW3ohwrqxQtUAzj2yGnKWB
Arg [5] : _proxyRegistryAddress (address): 0xa5409ec958C83C3f309868babACA7c86DCB077c1

-----Encoded View---------------
18 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [4] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [5] : 000000000000000000000000a5409ec958c83c3f309868babaca7c86dcb077c1
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [7] : 4c616e642044414f000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [9] : 4c414e4444414f00000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000050
Arg [11] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [12] : 732f516d504571723631314b6e58756471415561485744544c523957426b4467
Arg [13] : 735859434e7a375539434e427241653600000000000000000000000000000000
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000050
Arg [15] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [16] : 732f516d59726248696f59484c475146653347447071326d645a4d57336f6877
Arg [17] : 727178517455417a6a3279476e4b574200000000000000000000000000000000


Deployed Bytecode Sourcemap

116:2626:14:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;909:222:6;;;;;;;;;;-1:-1:-1;909:222:6;;;;;:::i;:::-;;:::i;:::-;;;8365:14:19;;8358:22;8340:41;;8328:2;8313:18;909:222:6;;;;;;;;1865:85:14;;;;;;;;;;-1:-1:-1;1935:10:14;;1865:85;;;8538:25:19;;;8526:2;8511:18;1865:85:14;8392:177:19;2349:98:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3860:217::-;;;;;;;;;;-1:-1:-1;3860:217:5;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7158:55:19;;;7140:74;;7128:2;7113:18;3860:217:5;6994:226:19;3398:401:5;;;;;;;;;;-1:-1:-1;3398:401:5;;;;;:::i;:::-;;:::i;:::-;;880:987:15;;;;;;:::i;:::-;;:::i;2444:296:14:-;;;;;;;;;;-1:-1:-1;2444:296: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;;4724:330:5;;;;;;;;;;-1:-1:-1;4724:330:5;;;;;:::i;:::-;;:::i;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;1717:230:6:-;;;;;;;;;;-1:-1:-1;1717:230:6;;;;;:::i;:::-;;:::i;1691:170:14:-;;;;;;;;;;-1:-1:-1;1691:170:14;;;;;:::i;:::-;;:::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;2017:365:14:-;;;;;;;;;;-1:-1:-1;2017:365:14;;;;;:::i;:::-;;:::i;966:85:16:-;;;;;;;;;;-1:-1:-1;1038:6:16;;-1:-1:-1;;;;;1038:6:16;966:85;;1499:95:14;;;;;;;;;;-1:-1:-1;1499:95:14;;;;;:::i;:::-;;:::i;2511:102:5:-;;;;;;;;;;;;;:::i;4144:290::-;;;;;;;;;;-1:-1:-1;4144:290:5;;;;;:::i;:::-;;:::i;5365:320::-;;;;;;;;;;-1:-1:-1;5365:320:5;;;;;:::i;:::-;;:::i;231:35:14:-;;;;;;;;;;-1:-1:-1;231:35:14;;;;-1:-1:-1;;;;;231:35:14;;;1387:108;;;;;;;;;;-1:-1:-1;1387:108:14;;;;;:::i;:::-;;:::i;646:35:7:-;;;;;;;;;;-1:-1:-1;646:35:7;;;;-1:-1:-1;;;;;646:35:7;;;1086:89:14;;;;;;;;;;-1:-1:-1;1161:9:14;;;;;;;;;-1:-1:-1;1161:9:14;;1086:89;;1598;;;;;;;;;;-1:-1:-1;1598:89:14;;;;;:::i;:::-;;:::i;1179:::-;;;;;;;;;;;;;:::i;1498:386:7:-;;;;;;;;;;-1:-1:-1;1498:386:7;;;;;:::i;:::-;;:::i;1839:189:16:-;;;;;;;;;;-1:-1:-1;1839:189:16;;;;;:::i;:::-;;:::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;;16255:2:19;3955:73:5;;;16237:21:19;16294:2;16274:18;;;16267:30;16333:34;16313:18;;;16306:62;-1:-1:-1;;;16384:18:19;;;16377:42;16436: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;;17841:2:19;3527:57:5;;;17823:21:19;17880:2;17860:18;;;17853:30;17919:34;17899:18;;;17892:62;17990:3;17970:18;;;17963:31;18011:19;;3527:57:5;17639: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;;13944:2:19;3595:165:5;;;13926:21:19;13983:2;13963:18;;;13956:30;14022:34;14002:18;;;13995:62;14093:26;14073:18;;;14066:54;14137:19;;3595:165:5;13742:420:19;3595:165:5;3771:21;3780:2;3784:7;3771:8;:21::i;:::-;3468:331;3398:401;;:::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;;17439:2:19;1238:109:15;;;17421:21:19;17478:2;17458:18;;;17451:30;17517:34;17497:18;;;17490:62;17588:3;17568:18;;;17561:31;17609:19;;1238:109:15;17237: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;;11308:2:19;1790:48:15;;;11290:21:19;11347:2;11327:18;;;11320:30;11386;11366:18;;;11359:58;11434:18;;1790:48:15;11106:352:19;1790:48:15;1852:10;880:987;-1:-1:-1;;;;;;;;880:987:15:o;2444:296:14:-;617:20;;-1:-1:-1;;;;;617:20:14;603:10;:34;595:66;;;;-1:-1:-1;;;595:66:14;;15190:2:19;595:66:14;;;15172:21:19;15229:2;15209:18;;;15202:30;15268:21;15248:18;;;15241:49;15307:18;;595:66:14;14988:343:19;595:66:14;-1:-1:-1;;;;;2518:22:14;::::1;2510:50;;;::::0;-1:-1:-1;;;2510:50:14;;18243:2:19;2510:50:14::1;::::0;::::1;18225:21:19::0;18282:2;18262:18;;;18255:30;-1:-1:-1;;;18301:18:19;;;18294:45;18356:18;;2510:50:14::1;18041:339:19::0;2510:50:14::1;2566:15;2584:19;2594:8;2584:9;:19::i;:::-;2566:37;;2627:1;2617:7;:11;2609:39;;;::::0;-1:-1:-1;;;2609:39:14;;12022:2:19;2609:39:14::1;::::0;::::1;12004:21:19::0;12061:2;12041:18;;;12034:30;12100:17;12080:18;;;12073:45;12135:18;;2609:39:14::1;11820:339:19::0;2609:39:14::1;2655:15;2673:42;2693:8:::0;2703:11:::1;2713:1;2703:7:::0;:11:::1;:::i;2673:42::-;2655:60;;2721:14;2727:7;2721:5;:14::i;4724:330:5:-:0;4913:41;4932:12;:10;:12::i;:::-;4946:7;4913:18;:41::i;:::-;4905:103;;;;-1:-1:-1;;;4905:103:5;;18587:2:19;4905:103:5;;;18569:21:19;18626:2;18606:18;;;18599:30;18665:34;18645:18;;;18638:62;18736:19;18716:18;;;18709:47;18773:19;;4905:103:5;18385:413:19;4905:103:5;5019:28;5029:4;5035:2;5039:7;5019:9;:28::i;1210:253:6:-;1307:7;1342:23;1359:5;1342:16;:23::i;:::-;1334:5;:31;1326:87;;;;-1:-1:-1;;;1326:87:6;;10070:2:19;1326:87:6;;;10052:21:19;10109:2;10089:18;;;10082:30;10148:34;10128:18;;;10121:62;10219:13;10199:18;;;10192:41;10250:19;;1326:87:6;9868: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;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;;19005:2:19;1811:95:6;;;18987:21:19;19044:2;19024:18;;;19017:30;19083:34;19063:18;;;19056:62;19154:14;19134:18;;;19127:42;19186:19;;1811:95:6;18803:408:19;1811:95:6;1923:10;1934:5;1923:17;;;;;;;;:::i;:::-;;;;;;;;;1916:24;;1717:230;;;:::o;1691:170: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;;16668:2:19;1170:68:16;;;16650:21:19;;;16687:18;;;16680:30;16746:34;16726:18;;;16719:62;16798:18;;1170:68:16;16466:356:19;1170:68:16;-1:-1:-1;;;;;1771:25:14;::::1;1763:53;;;::::0;-1:-1:-1;;;1763:53:14;;18243:2:19;1763:53:14::1;::::0;::::1;18225:21:19::0;18282:2;18262:18;;;18255:30;-1:-1:-1;;;18301:18:19;;;18294:45;18356:18;;1763:53:14::1;18041:339:19::0;1763:53:14::1;1822:20;:34:::0;;-1:-1:-1;;;;;;1822:34:14::1;-1:-1:-1::0;;;;;1822:34:14;;;::::1;::::0;;;::::1;::::0;;1691:170::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;;14780:2:19;2185:73:5;;;14762:21:19;14819:2;14799:18;;;14792:30;14858:34;14838:18;;;14831:62;14929:11;14909:18;;;14902:39;14958:19;;2185:73:5;14578:405:19;1790:205:5;1862:7;-1:-1:-1;;;;;1889:19:5;;1881:74;;;;-1:-1:-1;;;1881:74:5;;14369:2:19;1881:74:5;;;14351:21:19;14408:2;14388:18;;;14381:30;14447:34;14427:18;;;14420:62;14518:12;14498:18;;;14491:40;14548:19;;1881:74:5;14167: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;;16668:2:19;1170:68:16;;;16650:21:19;;;16687:18;;;16680:30;16746:34;16726:18;;;16719:62;16798:18;;1170:68:16;16466:356:19;1170:68:16;1662:21:::1;1680:1;1662:9;:21::i;:::-;1598:92::o:0;2017:365:14:-;617:20;;-1:-1:-1;;;;;617:20:14;603:10;:34;595:66;;;;-1:-1:-1;;;595:66:14;;15190:2:19;595:66:14;;;15172:21:19;15229:2;15209:18;;;15202:30;15268:21;15248:18;;;15241:49;15307:18;;595:66:14;14988:343:19;595:66:14;-1:-1:-1;;;;;2103:22:14;::::1;2095:50;;;::::0;-1:-1:-1;;;2095:50:14;;18243:2:19;2095:50:14::1;::::0;::::1;18225:21:19::0;18282:2;18262:18;;;18255:30;-1:-1:-1;;;18301:18:19;;;18294:45;18356:18;;2095:50:14::1;18041:339:19::0;2095:50:14::1;2189:6;2173:13;1621:10:6::0;:17;;1534:111;2173:13:14::1;:22;;;;:::i;:::-;2159:10;;:36;;2151:76;;;::::0;-1:-1:-1;;;2151:76:14;;15538:2:19;2151:76:14::1;::::0;::::1;15520:21:19::0;15577:2;15557:18;;;15550:30;15616:29;15596:18;;;15589:57;15663:18;;2151:76:14::1;15336:351:19::0;2151:76:14::1;2239:7;2234:144;2256:6;2252:1;:10;;;2234:144;;;2277:15;2295:17;:15;:17::i;:::-;2277:35;;2320:24;2326:8;2336:7;2320:5;:24::i;:::-;2352:19;:17;:19::i;:::-;-1:-1:-1::0;2264:3:14;::::1;::::0;::::1;:::i;:::-;;;;2234:144;;1499:95:::0;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;;16668:2:19;1170:68:16;;;16650:21:19;;;16687:18;;;16680:30;16746:34;16726:18;;;16719:62;16798:18;;1170:68:16;16466:356:19;1170:68:16;1569:20:14;;::::1;::::0;:12:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;:::-;;1499:95:::0;:::o;2511:102:5:-;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;;12771:2:19;4238:62:5;;;12753:21:19;12810:2;12790:18;;;12783:30;12849:27;12829:18;;;12822:55;12894:18;;4238:62:5;12569: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;;;;8365:14:19;8358:22;8340:41;;8328:2;8313:18;;8200:187;4379:48:5;;;;;;;;4144:290;;:::o;5365:320::-;5534:41;5553:12;:10;:12::i;:::-;5567:7;5534:18;:41::i;:::-;5526:103;;;;-1:-1:-1;;;5526:103:5;;18587:2:19;5526:103:5;;;18569:21:19;18626:2;18606:18;;;18599:30;18665:34;18645:18;;;18638:62;18736:19;18716:18;;;18709:47;18773:19;;5526:103:5;18385:413:19;5526:103:5;5639:39;5653:4;5659:2;5663:7;5672:5;5639:13;:39::i;:::-;5365:320;;;;:::o;1387:108:14:-;1453:13;1481:9;1474:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1387:108;;;:::o;1598:89::-;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;;16668:2:19;1170:68:16;;;16650:21:19;;;16687:18;;;16680:30;16746:34;16726:18;;;16719:62;16798:18;;1170:68:16;16466:356:19;1170:68:16;1665:17:14;;::::1;::::0;:9:::1;::::0;:17:::1;::::0;::::1;::::0;::::1;:::i;1179:89::-:0;1223:13;1251:12;1244:19;;;;;:::i;1498:386:7:-;1719:20;;1758:28;;;;;-1:-1:-1;;;;;7158:55:19;;;1758:28:7;;;7140:74:19;1603:4:7;;1719:20;;;1750:49;;;;1719:20;;1758:21;;7113:18:19;;1758:28:7;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;1750:49:7;;1746:81;;;1816:4;1809:11;;;;;1746:81;-1:-1:-1;;;;;4620:25:5;;;4597:4;4620:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;1840:39:7;1833:46;1498:386;-1:-1:-1;;;;1498: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;;16668:2:19;1170:68:16;;;16650:21:19;;;16687:18;;;16680:30;16746:34;16726:18;;;16719:62;16798:18;;1170:68:16;16466:356:19;1170:68:16;-1:-1:-1;;;;;1927:22:16;::::1;1919:73;;;::::0;-1:-1:-1;;;1919:73:16;;10901:2:19;1919:73:16::1;::::0;::::1;10883:21:19::0;10940:2;10920:18;;;10913:30;10979:34;10959:18;;;10952:62;11050:8;11030:18;;;11023:36;11076:19;;1919:73:16::1;10699: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;2017:130:7;2087:14;2118:24;:22;:24::i;:::-;2111:31;;2017: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;;13538:2:19;2448:70:15;;;13520:21:19;13577:2;13557:18;;;13550:30;13616:34;13596:18;;;13589:62;13687:7;13667:18;;;13660:35;13712:19;;2448:70:15;13336:401:19;2448:70:15;2553:116;2572:47;2591:27;2611:6;2591:19;:27::i;:::-;2572:18;:47::i;:::-;2553:116;;;;;;;;;;;;9246:25:19;;;;9319:4;9307:17;;9287:18;;;9280:45;9341:18;;;9334:34;;;9384:18;;;9377:34;;;9218: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;:::-;2749:12;2672:96;-1:-1:-1;;;2672:96:17: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;7440:344::-;7533:4;7245:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7245:16:5;7549:73;;;;-1:-1:-1;;;7549:73:5;;13125:2:19;7549:73:5;;;13107:21:19;13164:2;13144:18;;;13137:30;13203:34;13183:18;;;13176:62;-1:-1:-1;;;13254:18:19;;;13247:42;13306:19;;7549:73:5;12923: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;;17029:2:19;10456:85:5;;;17011:21:19;17068:2;17048:18;;;17041:30;17107:34;17087:18;;;17080:62;17178:11;17158:18;;;17151:39;17207:19;;10456:85:5;16827:405:19;10456:85:5;-1:-1:-1;;;;;10559:16:5;;10551:65;;;;-1:-1:-1;;;10551:65:5;;12366:2:19;10551:65:5;;;12348:21:19;12405:2;12385:18;;;12378:30;12444:34;12424:18;;;12417:62;12515:6;12495:18;;;12488:34;12539:19;;10551:65:5;12164: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;1072:99:7:-;1144:15;;1122:7;;1144:22;;1164:1;1144:19;:22::i;9076:372:5:-;-1:-1:-1;;;;;9155:16:5;;9147:61;;;;-1:-1:-1;;;9147:61:5;;15894:2:19;9147:61:5;;;15876:21:19;;;15913:18;;;15906:30;15972:34;15952:18;;;15945:62;16024:18;;9147:61:5;15692: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;;11665:2:19;9218:58:5;;;11647:21:19;11704:2;11684:18;;;11677:30;11743;11723:18;;;11716:58;11791:18;;9218:58:5;11463: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;1239:66:7:-;1283:15;:17;;;:15;:17;;;:::i;:::-;;;;;;1239:66::o;6547:307:5:-;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;;10482:2:19;6736:111:5;;;10464:21:19;10521:2;10501:18;;;10494:30;10560:34;10540:18;;;10533:62;10631:20;10611:18;;;10604:48;10669:19;;6736:111:5;10280:414:19;1871:308:15;1966:7;292:88;;;;;;;;;;;;;;;;;277:107;;;;;;;2074:12;;2098:11;;;;2131:24;;;;;2121:35;;;;;;2015:151;;;;;8805:25:19;;;8861:2;8846:18;;8839:34;;;;-1:-1:-1;;;;;8909:55:19;8904:2;8889:18;;8882:83;8996:2;8981:18;;8974:34;8792:3;8777:19;;8574: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;;6815:66:19;1837:63:3;;;6803:79:19;6898:11;;;6891:27;;;;6934:12;;;6927:28;;;6971:12;;1837:63:3;6545: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;;10482:2:19;12218:60:5;;;10464:21:19;10521:2;10501:18;;;10494:30;10560:34;10540:18;;;10533:62;10631:20;10611:18;;;10604:48;10669:19;;12218:60:5;10280: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:631:19;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:19;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:220::-;692:5;745:3;738:4;730:6;726:17;722:27;712:55;;763:1;760;753:12;712:55;785:79;860:3;851:6;838:20;831:4;823:6;819:17;785:79;:::i;875:247::-;934:6;987:2;975:9;966:7;962:23;958:32;955:52;;;1003:1;1000;993:12;955:52;1042:9;1029:23;1061:31;1086:5;1061:31;:::i;1127:388::-;1195:6;1203;1256:2;1244:9;1235:7;1231:23;1227:32;1224:52;;;1272:1;1269;1262:12;1224:52;1311:9;1298:23;1330:31;1355:5;1330:31;:::i;:::-;1380:5;-1:-1:-1;1437:2:19;1422:18;;1409:32;1450:33;1409:32;1450:33;:::i;:::-;1502:7;1492:17;;;1127:388;;;;;:::o;1520:456::-;1597:6;1605;1613;1666:2;1654:9;1645:7;1641:23;1637:32;1634:52;;;1682:1;1679;1672:12;1634:52;1721:9;1708:23;1740:31;1765:5;1740:31;:::i;:::-;1790:5;-1:-1:-1;1847:2:19;1832:18;;1819:32;1860:33;1819:32;1860:33;:::i;:::-;1520:456;;1912:7;;-1:-1:-1;;;1966:2:19;1951:18;;;;1938:32;;1520:456::o;1981:665::-;2076:6;2084;2092;2100;2153:3;2141:9;2132:7;2128:23;2124:33;2121:53;;;2170:1;2167;2160:12;2121:53;2209:9;2196:23;2228:31;2253:5;2228:31;:::i;:::-;2278:5;-1:-1:-1;2335:2:19;2320:18;;2307:32;2348:33;2307:32;2348:33;:::i;:::-;2400:7;-1:-1:-1;2454:2:19;2439:18;;2426:32;;-1:-1:-1;2509:2:19;2494:18;;2481:32;2536:18;2525:30;;2522:50;;;2568:1;2565;2558:12;2522:50;2591:49;2632:7;2623:6;2612:9;2608:22;2591:49;:::i;:::-;2581:59;;;1981:665;;;;;;;:::o;2651:416::-;2716:6;2724;2777:2;2765:9;2756:7;2752:23;2748:32;2745:52;;;2793:1;2790;2783:12;2745:52;2832:9;2819:23;2851:31;2876:5;2851:31;:::i;:::-;2901:5;-1:-1:-1;2958:2:19;2943:18;;2930:32;3000:15;;2993:23;2981:36;;2971:64;;3031:1;3028;3021:12;3072:758;3174:6;3182;3190;3198;3206;3259:3;3247:9;3238:7;3234:23;3230:33;3227:53;;;3276:1;3273;3266:12;3227:53;3315:9;3302:23;3334:31;3359:5;3334:31;:::i;:::-;3384:5;-1:-1:-1;3440:2:19;3425:18;;3412:32;3467:18;3456:30;;3453:50;;;3499:1;3496;3489:12;3453:50;3522:49;3563:7;3554:6;3543:9;3539:22;3522:49;:::i;:::-;3512:59;;;3618:2;3607:9;3603:18;3590:32;3580:42;;3669:2;3658:9;3654:18;3641:32;3631:42;;3725:3;3714:9;3710:19;3697:33;3774:4;3765:7;3761:18;3752:7;3749:31;3739:59;;3794:1;3791;3784:12;3739:59;3817:7;3807:17;;;3072:758;;;;;;;;:::o;3835:315::-;3903:6;3911;3964:2;3952:9;3943:7;3939:23;3935:32;3932:52;;;3980:1;3977;3970:12;3932:52;4019:9;4006:23;4038:31;4063:5;4038:31;:::i;:::-;4088:5;4140:2;4125:18;;;;4112:32;;-1:-1:-1;;;3835:315:19:o;4155:245::-;4213:6;4266:2;4254:9;4245:7;4241:23;4237:32;4234:52;;;4282:1;4279;4272:12;4234:52;4321:9;4308:23;4340:30;4364:5;4340:30;:::i;4405:249::-;4474:6;4527:2;4515:9;4506:7;4502:23;4498:32;4495:52;;;4543:1;4540;4533:12;4495:52;4575:9;4569:16;4594:30;4618:5;4594:30;:::i;4659:280::-;4758:6;4811:2;4799:9;4790:7;4786:23;4782:32;4779:52;;;4827:1;4824;4817:12;4779:52;4859:9;4853:16;4878:31;4903:5;4878:31;:::i;4944:450::-;5013:6;5066:2;5054:9;5045:7;5041:23;5037:32;5034:52;;;5082:1;5079;5072:12;5034:52;5122:9;5109:23;5155:18;5147:6;5144:30;5141:50;;;5187:1;5184;5177:12;5141:50;5210:22;;5263:4;5255:13;;5251:27;-1:-1:-1;5241:55:19;;5292:1;5289;5282:12;5241:55;5315:73;5380:7;5375:2;5362:16;5357:2;5353;5349:11;5315:73;:::i;5399:180::-;5458:6;5511:2;5499:9;5490:7;5486:23;5482:32;5479:52;;;5527:1;5524;5517:12;5479:52;-1:-1:-1;5550:23:19;;5399:180;-1:-1:-1;5399:180:19:o;5584:257::-;5625:3;5663:5;5657:12;5690:6;5685:3;5678:19;5706:63;5762:6;5755:4;5750:3;5746:14;5739:4;5732:5;5728:16;5706:63;:::i;:::-;5823:2;5802:15;-1:-1:-1;;5798:29:19;5789:39;;;;5830:4;5785:50;;5584:257;-1:-1:-1;;5584:257:19:o;5846:274::-;5975:3;6013:6;6007:13;6029:53;6075:6;6070:3;6063:4;6055:6;6051:17;6029:53;:::i;:::-;6098:16;;;;;5846:274;-1:-1:-1;;5846:274:19:o;6125:415::-;6282:3;6320:6;6314:13;6336:53;6382:6;6377:3;6370:4;6362:6;6358:17;6336:53;:::i;:::-;6458:2;6454:15;;;;-1:-1:-1;;6450:53:19;6411:16;;;;6436:68;;;6531:2;6520:14;;6125:415;-1:-1:-1;;6125:415:19:o;7225:454::-;7407:4;-1:-1:-1;;;;;7517:2:19;7509:6;7505:15;7494:9;7487:34;7569:2;7561:6;7557:15;7552:2;7541:9;7537:18;7530:43;;7609:2;7604;7593:9;7589:18;7582:30;7629:44;7669:2;7658:9;7654:18;7646:6;7629:44;:::i;:::-;7621:52;7225:454;-1:-1:-1;;;;;7225:454:19:o;7684:511::-;7878:4;-1:-1:-1;;;;;7988:2:19;7980:6;7976:15;7965:9;7958:34;8040:2;8032:6;8028:15;8023:2;8012:9;8008:18;8001:43;;8080:6;8075:2;8064:9;8060:18;8053:34;8123:3;8118:2;8107:9;8103:18;8096:31;8144:45;8184:3;8173:9;8169:19;8161:6;8144:45;:::i;:::-;8136:53;7684:511;-1:-1:-1;;;;;;7684:511:19:o;9422:217::-;9569:2;9558:9;9551:21;9532:4;9589:44;9629:2;9618:9;9614:18;9606:6;9589:44;:::i;19398:128::-;19438:3;19469:1;19465:6;19462:1;19459:13;19456:39;;;19475:18;;:::i;:::-;-1:-1:-1;19511:9:19;;19398:128::o;19531:125::-;19571:4;19599:1;19596;19593:8;19590:34;;;19604:18;;:::i;:::-;-1:-1:-1;19641:9:19;;19531:125::o;19661:258::-;19733:1;19743:113;19757:6;19754:1;19751:13;19743:113;;;19833:11;;;19827:18;19814:11;;;19807:39;19779:2;19772:10;19743:113;;;19874:6;19871:1;19868:13;19865:48;;;-1:-1:-1;;19909:1:19;19891:16;;19884:27;19661:258::o;19924:437::-;20003:1;19999:12;;;;20046;;;20067:61;;20121:4;20113:6;20109:17;20099:27;;20067:61;20174:2;20166:6;20163:14;20143:18;20140:38;20137:218;;;-1:-1:-1;;;20208:1:19;20201:88;20312:4;20309:1;20302:15;20340:4;20337:1;20330:15;20137:218;;19924:437;;;:::o;20366:135::-;20405:3;-1:-1:-1;;20426:17:19;;20423:43;;;20446:18;;:::i;:::-;-1:-1:-1;20493:1:19;20482:13;;20366:135::o;20506:175::-;20543:3;20587:4;20580:5;20576:16;20616:4;20607:7;20604:17;20601:43;;;20624:18;;:::i;:::-;20673:1;20660:15;;20506:175;-1:-1:-1;;20506:175:19:o;20686:184::-;-1:-1:-1;;;20735:1:19;20728:88;20835:4;20832:1;20825:15;20859:4;20856:1;20849:15;20875:184;-1:-1:-1;;;20924:1:19;20917:88;21024:4;21021:1;21014:15;21048:4;21045:1;21038:15;21064:184;-1:-1:-1;;;21113:1:19;21106:88;21213:4;21210:1;21203:15;21237:4;21234:1;21227:15;21253:184;-1:-1:-1;;;21302:1:19;21295:88;21402:4;21399:1;21392:15;21426:4;21423:1;21416:15;21442:154;-1:-1:-1;;;;;21521:5:19;21517:54;21510:5;21507:65;21497:93;;21586:1;21583;21576:12;21601:177;-1:-1:-1;;;;;;21679:5:19;21675:78;21668:5;21665:89;21655:117;;21768:1;21765;21758:12

Swarm Source

ipfs://0e57cf8baeed76a4c9402eb33b95e36781165c26af0f76fbcad209dfd966a7ce
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.