ETH Price: $2,915.33 (-10.05%)
Gas: 22 Gwei

SHABANGRS (SHABANGRS)
 

Overview

TokenID

1135

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Ownership of Shabangrs NFTs will automatically grant you citizenship in Shabangrsville, a virtual city in the Metaverse. Shabangrs citizens will have access to exclusive lifetime perks and rewards as well as access to a flourishing community of the world’s best photographers and creators.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SHABANGERS

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 13 of 14: SHABANGRS.sol
// SPDX-License-Identifier: GPL-3.0

pragma solidity ^0.8.0;

import "./ERC721Enumerable.sol";
import "./Ownable.sol";
import "./IContractFusion.sol";

contract SHABANGERS is ERC721Enumerable, Ownable {
  using Strings for uint256;

  string public baseURI;
  string public baseExtension = ".json";
  uint256 public cost = 0.09 ether;
  uint256 public maxSupply = 10000;
  uint256 public maxMintAmount = 20;
  
  bool public paused = true;
  
  bool public presale = true;
  string public presaleURI = "http://23.254.217.117:5555/Switsh.json";
  
  // address of OmniFusion contract
  address public FusionContractAddress;



// Member1
  address  _40_Member1 = 0xf270765de3918461D47B0549FD553BF8703D8E46;
// Member2
  address  _40_Member2 = 0x2B0FC0979668f82bEBBdD9f024375e28868070D3;
// Member3
  address  _20_Member3 = 0x9360c8f77310A7aad619aDaB0BF3b3d549714cB9;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI
  ) ERC721(_name, _symbol) {
    setBaseURI(_initBaseURI);
  }

  // internal
  function _baseURI() internal view virtual override returns (string memory) {
    return baseURI;
  }

  // public
  function mint(address _to, uint256 _mintAmount) public payable {
    require(!paused);
    require(_mintAmount > 0);
    require(_mintAmount <= maxMintAmount);
    
    uint256 supply = totalSupply();
    require(supply + _mintAmount <= maxSupply);
    
    if (msg.sender != owner()) {
        require(msg.value >= cost * _mintAmount);
    }

    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(_to, supply + i);
    }
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    if(presale){
        return presaleURI;
    }
    else
    {
        string memory currentBaseURI = _baseURI();
        
        return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension))
        : "";    
    }

  }
  
  // fuse two tokens together
  function fuseTokens(uint toFuse, uint toBurn, bytes memory payload, bool burn) external {
        IContractFusion(FusionContractAddress).fuseTokens(msg.sender, toFuse, toBurn, payload);
        
        if(burn == true)
            _burn(toBurn);
    }

  //only owner
  function setCost(uint256 _newCost) public onlyOwner() {
    cost = _newCost;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner() {
    maxMintAmount = _newmaxMintAmount;
  }

  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }
  
  function setpresaleURI(string memory _newPresaleURI) public onlyOwner {
    presaleURI = _newPresaleURI;
  }
  
  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
  
  function setpresale(bool _state) public onlyOwner {
    presale = _state;
  }
  
  // changes the address of the OmniFusion implementation
  function setFusionContractAddress(address _address) payable external onlyOwner {
        FusionContractAddress = _address;
    }
  
  function withdraw() public onlyOwner {
        uint bal = address(this).balance;
        
        uint _10_expenses = bal / 10; // 1/10 = 10%
        
        require(payable(msg.sender).send(_10_expenses));
        
        bal = bal -_10_expenses;
      
        uint _20_Share = bal / 5; // 1/5 = 20%
        uint _40_Share = (bal - _20_Share) / 2; // 100% - 20% => 80% / 2 => 40%
        
        require(payable(_40_Member1).send(_40_Share));
        require(payable(_40_Member2).send(_40_Share));
        require(payable(_20_Member3).send(_20_Share));
  }
  
  
}

File 1 of 14: 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;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 2 of 14: 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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 3 of 14: 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 4 of 14: 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}. 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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    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` 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 { }
}

File 5 of 14: 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 6 of 14: IContractFusion.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface IContractFusion {
    function fuseTokens(address sender, uint toFuse, uint toBurn, bytes calldata payload) external;
}

File 7 of 14: 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 8 of 14: 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 9 of 14: 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 10 of 14: 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 11 of 14: 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 12 of 14: 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 14 of 14: 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":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FusionContractAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"toFuse","type":"uint256"},{"internalType":"uint256","name":"toBurn","type":"uint256"},{"internalType":"bytes","name":"payload","type":"bytes"},{"internalType":"bool","name":"burn","type":"bool"}],"name":"fuseTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setFusionContractAddress","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setpresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newPresaleURI","type":"string"}],"name":"setpresaleURI","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"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c919062000243565b5067013fbe85edc90000600d55612710600e556014600f556010805461ffff19166101011790556040805160608101909152602680825262002bfc602083013980516200007e9160119160209091019062000243565b50601380546001600160a01b031990811673f270765de3918461d47b0549fd553bf8703d8e4617909155601480548216732b0fc0979668f82bebbdd9f024375e28868070d317905560158054909116739360c8f77310a7aad619adab0bf3b3d549714cb9179055348015620000f257600080fd5b5060405162002c2238038062002c228339810160408190526200011591620003a0565b8251839083906200012e90600090602085019062000243565b5080516200014490600190602084019062000243565b505050620001616200015b6200017560201b60201c565b62000179565b6200016c81620001cb565b50505062000484565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b031633146200022a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200023f90600b90602084019062000243565b5050565b828054620002519062000431565b90600052602060002090601f016020900481019282620002755760008555620002c0565b82601f106200029057805160ff1916838001178555620002c0565b82800160010185558215620002c0579182015b82811115620002c0578251825591602001919060010190620002a3565b50620002ce929150620002d2565b5090565b5b80821115620002ce5760008155600101620002d3565b600082601f830112620002fb57600080fd5b81516001600160401b03808211156200031857620003186200046e565b604051601f8301601f19908116603f011681019082821181831017156200034357620003436200046e565b816040528381526020925086838588010111156200036057600080fd5b600091505b8382101562000384578582018301518183018401529082019062000365565b83821115620003965760008385830101525b9695505050505050565b600080600060608486031215620003b657600080fd5b83516001600160401b0380821115620003ce57600080fd5b620003dc87838801620002e9565b94506020860151915080821115620003f357600080fd5b6200040187838801620002e9565b935060408601519150808211156200041857600080fd5b506200042786828701620002e9565b9150509250925092565b600181811c908216806200044657607f821691505b602082108114156200046857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61276880620004946000396000f3fe60806040526004361061023b5760003560e01c80635c975abb1161012e578063a22cb465116100ab578063d5abeb011161006f578063d5abeb0114610669578063da3ef23f1461067f578063e985e9c51461069f578063f2fde38b146106e8578063fdea8e0b1461070857600080fd5b8063a22cb465146105d4578063b24a854d146105f4578063b88d4fde14610614578063c668286214610634578063c87b56dd1461064957600080fd5b80637df14cef116100f25780637df14cef1461054e5780637f00c7a61461056e578063876eae7d1461058e5780638da5cb5b146105a157806395d89b41146105bf57600080fd5b80635c975abb146104ca5780636352211e146104e45780636c0360eb1461050457806370a0823114610519578063715018a61461053957600080fd5b806323b872dd116101bc57806342842e0e1161018057806342842e0e1461041d578063438b63001461043d57806344a0d68a1461046a5780634f6ccce71461048a57806355f804b3146104aa57600080fd5b806323b872dd146103955780632f745c59146103b55780633ccfd60b146103d55780633d843bb0146103ea57806340c10f191461040a57600080fd5b80631005e63c116102035780631005e63c1461031157806313faede61461033157806318160ddd146103555780632139db4c1461036a578063239c70ae1461037f57600080fd5b806301ffc9a71461024057806302329a291461027557806306fdde0314610297578063081812fc146102b9578063095ea7b3146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004612230565b610727565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b50610295610290366004612215565b610752565b005b3480156102a357600080fd5b506102ac610798565b60405161026c91906124cb565b3480156102c557600080fd5b506102d96102d43660046122b3565b61082a565b6040516001600160a01b03909116815260200161026c565b3480156102fd57600080fd5b5061029561030c3660046121eb565b6108bf565b34801561031d57600080fd5b5061029561032c366004612215565b6109d5565b34801561033d57600080fd5b50610347600d5481565b60405190815260200161026c565b34801561036157600080fd5b50600854610347565b34801561037657600080fd5b506102ac610a19565b34801561038b57600080fd5b50610347600f5481565b3480156103a157600080fd5b506102956103b036600461211d565b610aa7565b3480156103c157600080fd5b506103476103d03660046121eb565b610ad8565b3480156103e157600080fd5b50610295610b6e565b3480156103f657600080fd5b5061029561040536600461226a565b610c9e565b6102956104183660046121eb565b610cdf565b34801561042957600080fd5b5061029561043836600461211d565b610d8c565b34801561044957600080fd5b5061045d6104583660046120cf565b610da7565b60405161026c9190612487565b34801561047657600080fd5b506102956104853660046122b3565b610e49565b34801561049657600080fd5b506103476104a53660046122b3565b610e78565b3480156104b657600080fd5b506102956104c536600461226a565b610f0b565b3480156104d657600080fd5b506010546102609060ff1681565b3480156104f057600080fd5b506102d96104ff3660046122b3565b610f48565b34801561051057600080fd5b506102ac610fbf565b34801561052557600080fd5b506103476105343660046120cf565b610fcc565b34801561054557600080fd5b50610295611053565b34801561055a57600080fd5b506102956105693660046122cc565b611089565b34801561057a57600080fd5b506102956105893660046122b3565b611105565b61029561059c3660046120cf565b611134565b3480156105ad57600080fd5b50600a546001600160a01b03166102d9565b3480156105cb57600080fd5b506102ac611180565b3480156105e057600080fd5b506102956105ef3660046121c1565b61118f565b34801561060057600080fd5b506012546102d9906001600160a01b031681565b34801561062057600080fd5b5061029561062f366004612159565b611254565b34801561064057600080fd5b506102ac611286565b34801561065557600080fd5b506102ac6106643660046122b3565b611293565b34801561067557600080fd5b50610347600e5481565b34801561068b57600080fd5b5061029561069a36600461226a565b611418565b3480156106ab57600080fd5b506102606106ba3660046120ea565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106f457600080fd5b506102956107033660046120cf565b611455565b34801561071457600080fd5b5060105461026090610100900460ff1681565b60006001600160e01b0319821663780e9d6360e01b148061074c575061074c826114f0565b92915050565b600a546001600160a01b031633146107855760405162461bcd60e51b815260040161077c90612530565b60405180910390fd5b6010805460ff1916911515919091179055565b6060600080546107a790612644565b80601f01602080910402602001604051908101604052809291908181526020018280546107d390612644565b80156108205780601f106107f557610100808354040283529160200191610820565b820191906000526020600020905b81548152906001019060200180831161080357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108a35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161077c565b506000908152600460205260409020546001600160a01b031690565b60006108ca82610f48565b9050806001600160a01b0316836001600160a01b031614156109385760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161077c565b336001600160a01b0382161480610954575061095481336106ba565b6109c65760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161077c565b6109d08383611540565b505050565b600a546001600160a01b031633146109ff5760405162461bcd60e51b815260040161077c90612530565b601080549115156101000261ff0019909216919091179055565b60118054610a2690612644565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5290612644565b8015610a9f5780601f10610a7457610100808354040283529160200191610a9f565b820191906000526020600020905b815481529060010190602001808311610a8257829003601f168201915b505050505081565b610ab133826115ae565b610acd5760405162461bcd60e51b815260040161077c90612565565b6109d08383836116a5565b6000610ae383610fcc565b8210610b455760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161077c565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610b985760405162461bcd60e51b815260040161077c90612530565b476000610ba6600a836125ce565b604051909150339082156108fc029083906000818181858888f19350505050610bce57600080fd5b610bd88183612601565b91506000610be76005846125ce565b905060006002610bf78386612601565b610c0191906125ce565b6013546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050610c3457600080fd5b6014546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050610c6657600080fd5b6015546040516001600160a01b039091169083156108fc029084906000818181858888f19350505050610c9857600080fd5b50505050565b600a546001600160a01b03163314610cc85760405162461bcd60e51b815260040161077c90612530565b8051610cdb906011906020840190611f79565b5050565b60105460ff1615610cef57600080fd5b60008111610cfc57600080fd5b600f54811115610d0b57600080fd5b6000610d1660085490565b600e54909150610d2683836125b6565b1115610d3157600080fd5b600a546001600160a01b03163314610d5d5781600d54610d5191906125e2565b341015610d5d57600080fd5b60015b828111610c9857610d7a84610d7583856125b6565b611850565b80610d848161267f565b915050610d60565b6109d083838360405180602001604052806000815250611254565b60606000610db483610fcc565b905060008167ffffffffffffffff811115610dd157610dd1612706565b604051908082528060200260200182016040528015610dfa578160200160208202803683370190505b50905060005b82811015610e4157610e128582610ad8565b828281518110610e2457610e246126f0565b602090810291909101015280610e398161267f565b915050610e00565b509392505050565b600a546001600160a01b03163314610e735760405162461bcd60e51b815260040161077c90612530565b600d55565b6000610e8360085490565b8210610ee65760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161077c565b60088281548110610ef957610ef96126f0565b90600052602060002001549050919050565b600a546001600160a01b03163314610f355760405162461bcd60e51b815260040161077c90612530565b8051610cdb90600b906020840190611f79565b6000818152600260205260408120546001600160a01b03168061074c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161077c565b600b8054610a2690612644565b60006001600160a01b0382166110375760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161077c565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461107d5760405162461bcd60e51b815260040161077c90612530565b611087600061186a565b565b601254604051635099eaf360e01b81526001600160a01b0390911690635099eaf3906110bf90339088908890889060040161245a565b600060405180830381600087803b1580156110d957600080fd5b505af11580156110ed573d6000803e3d6000fd5b5050505080151560011415610c9857610c98836118bc565b600a546001600160a01b0316331461112f5760405162461bcd60e51b815260040161077c90612530565b600f55565b600a546001600160a01b0316331461115e5760405162461bcd60e51b815260040161077c90612530565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b6060600180546107a790612644565b6001600160a01b0382163314156111e85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161077c565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61125e33836115ae565b61127a5760405162461bcd60e51b815260040161077c90612565565b610c9884848484611963565b600c8054610a2690612644565b6000818152600260205260409020546060906001600160a01b03166113125760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161077c565b601054610100900460ff16156113b4576011805461132f90612644565b80601f016020809104026020016040519081016040528092919081815260200182805461135b90612644565b80156113a85780601f1061137d576101008083540402835291602001916113a8565b820191906000526020600020905b81548152906001019060200180831161138b57829003601f168201915b50505050509050919050565b60006113be611996565b905060008151116113de576040518060200160405280600081525061140c565b806113e8846119a5565b600c6040516020016113fc93929190612359565b6040516020818303038152906040525b9392505050565b919050565b600a546001600160a01b031633146114425760405162461bcd60e51b815260040161077c90612530565b8051610cdb90600c906020840190611f79565b600a546001600160a01b0316331461147f5760405162461bcd60e51b815260040161077c90612530565b6001600160a01b0381166114e45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161077c565b6114ed8161186a565b50565b60006001600160e01b031982166380ac58cd60e01b148061152157506001600160e01b03198216635b5e139f60e01b145b8061074c57506301ffc9a760e01b6001600160e01b031983161461074c565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061157582610f48565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166116275760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161077c565b600061163283610f48565b9050806001600160a01b0316846001600160a01b0316148061166d5750836001600160a01b03166116628461082a565b6001600160a01b0316145b8061169d57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166116b882610f48565b6001600160a01b0316146117205760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161077c565b6001600160a01b0382166117825760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161077c565b61178d838383611aa3565b611798600082611540565b6001600160a01b03831660009081526003602052604081208054600192906117c1908490612601565b90915550506001600160a01b03821660009081526003602052604081208054600192906117ef9084906125b6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cdb828260405180602001604052806000815250611b5b565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006118c782610f48565b90506118d581600084611aa3565b6118e0600083611540565b6001600160a01b0381166000908152600360205260408120805460019290611909908490612601565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b61196e8484846116a5565b61197a84848484611b8e565b610c985760405162461bcd60e51b815260040161077c906124de565b6060600b80546107a790612644565b6060816119c95750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119f357806119dd8161267f565b91506119ec9050600a836125ce565b91506119cd565b60008167ffffffffffffffff811115611a0e57611a0e612706565b6040519080825280601f01601f191660200182016040528015611a38576020820181803683370190505b5090505b841561169d57611a4d600183612601565b9150611a5a600a8661269a565b611a659060306125b6565b60f81b818381518110611a7a57611a7a6126f0565b60200101906001600160f81b031916908160001a905350611a9c600a866125ce565b9450611a3c565b6001600160a01b038316611afe57611af981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b21565b816001600160a01b0316836001600160a01b031614611b2157611b218382611c9b565b6001600160a01b038216611b38576109d081611d38565b826001600160a01b0316826001600160a01b0316146109d0576109d08282611de7565b611b658383611e2b565b611b726000848484611b8e565b6109d05760405162461bcd60e51b815260040161077c906124de565b60006001600160a01b0384163b15611c9057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611bd290339089908890889060040161241d565b602060405180830381600087803b158015611bec57600080fd5b505af1925050508015611c1c575060408051601f3d908101601f19168201909252611c199181019061224d565b60015b611c76573d808015611c4a576040519150601f19603f3d011682016040523d82523d6000602084013e611c4f565b606091505b508051611c6e5760405162461bcd60e51b815260040161077c906124de565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061169d565b506001949350505050565b60006001611ca884610fcc565b611cb29190612601565b600083815260076020526040902054909150808214611d05576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d4a90600190612601565b60008381526009602052604081205460088054939450909284908110611d7257611d726126f0565b906000526020600020015490508060088381548110611d9357611d936126f0565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611dcb57611dcb6126da565b6001900381819060005260206000200160009055905550505050565b6000611df283610fcc565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611e815760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161077c565b6000818152600260205260409020546001600160a01b031615611ee65760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161077c565b611ef260008383611aa3565b6001600160a01b0382166000908152600360205260408120805460019290611f1b9084906125b6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611f8590612644565b90600052602060002090601f016020900481019282611fa75760008555611fed565b82601f10611fc057805160ff1916838001178555611fed565b82800160010185558215611fed579182015b82811115611fed578251825591602001919060010190611fd2565b50611ff9929150611ffd565b5090565b5b80821115611ff95760008155600101611ffe565b600067ffffffffffffffff8084111561202d5761202d612706565b604051601f8501601f19908116603f0116810190828211818310171561205557612055612706565b8160405280935085815286868601111561206e57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461141357600080fd5b8035801515811461141357600080fd5b600082601f8301126120c057600080fd5b61140c83833560208501612012565b6000602082840312156120e157600080fd5b61140c82612088565b600080604083850312156120fd57600080fd5b61210683612088565b915061211460208401612088565b90509250929050565b60008060006060848603121561213257600080fd5b61213b84612088565b925061214960208501612088565b9150604084013590509250925092565b6000806000806080858703121561216f57600080fd5b61217885612088565b935061218660208601612088565b925060408501359150606085013567ffffffffffffffff8111156121a957600080fd5b6121b5878288016120af565b91505092959194509250565b600080604083850312156121d457600080fd5b6121dd83612088565b91506121146020840161209f565b600080604083850312156121fe57600080fd5b61220783612088565b946020939093013593505050565b60006020828403121561222757600080fd5b61140c8261209f565b60006020828403121561224257600080fd5b813561140c8161271c565b60006020828403121561225f57600080fd5b815161140c8161271c565b60006020828403121561227c57600080fd5b813567ffffffffffffffff81111561229357600080fd5b8201601f810184136122a457600080fd5b61169d84823560208401612012565b6000602082840312156122c557600080fd5b5035919050565b600080600080608085870312156122e257600080fd5b8435935060208501359250604085013567ffffffffffffffff81111561230757600080fd5b612313878288016120af565b9250506123226060860161209f565b905092959194509250565b60008151808452612345816020860160208601612618565b601f01601f19169290920160200192915050565b60008451602061236c8285838a01612618565b85519184019161237f8184848a01612618565b8554920191600090600181811c908083168061239c57607f831692505b8583108114156123ba57634e487b7160e01b85526022600452602485fd5b8080156123ce57600181146123df5761240c565b60ff1985168852838801955061240c565b60008b81526020902060005b858110156124045781548a8201529084019088016123eb565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124509083018461232d565b9695505050505050565b60018060a01b0385168152836020820152826040820152608060608201526000612450608083018461232d565b6020808252825182820181905260009190848201906040850190845b818110156124bf578351835292840192918401916001016124a3565b50909695505050505050565b60208152600061140c602083018461232d565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156125c9576125c96126ae565b500190565b6000826125dd576125dd6126c4565b500490565b60008160001904831182151516156125fc576125fc6126ae565b500290565b600082821015612613576126136126ae565b500390565b60005b8381101561263357818101518382015260200161261b565b83811115610c985750506000910152565b600181811c9082168061265857607f821691505b6020821081141561267957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612693576126936126ae565b5060010190565b6000826126a9576126a96126c4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146114ed57600080fdfea2646970667358221220a63fd8964de898cf8de51cb244bc9ad6ab9257ad649e4c08c8a601b74d69aef464736f6c63430008070033687474703a2f2f32332e3235342e3231372e3131373a353535352f5377697473682e6a736f6e000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000953484142414e4752530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000953484142414e4752530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000953484142414e4752530000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061023b5760003560e01c80635c975abb1161012e578063a22cb465116100ab578063d5abeb011161006f578063d5abeb0114610669578063da3ef23f1461067f578063e985e9c51461069f578063f2fde38b146106e8578063fdea8e0b1461070857600080fd5b8063a22cb465146105d4578063b24a854d146105f4578063b88d4fde14610614578063c668286214610634578063c87b56dd1461064957600080fd5b80637df14cef116100f25780637df14cef1461054e5780637f00c7a61461056e578063876eae7d1461058e5780638da5cb5b146105a157806395d89b41146105bf57600080fd5b80635c975abb146104ca5780636352211e146104e45780636c0360eb1461050457806370a0823114610519578063715018a61461053957600080fd5b806323b872dd116101bc57806342842e0e1161018057806342842e0e1461041d578063438b63001461043d57806344a0d68a1461046a5780634f6ccce71461048a57806355f804b3146104aa57600080fd5b806323b872dd146103955780632f745c59146103b55780633ccfd60b146103d55780633d843bb0146103ea57806340c10f191461040a57600080fd5b80631005e63c116102035780631005e63c1461031157806313faede61461033157806318160ddd146103555780632139db4c1461036a578063239c70ae1461037f57600080fd5b806301ffc9a71461024057806302329a291461027557806306fdde0314610297578063081812fc146102b9578063095ea7b3146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004612230565b610727565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b50610295610290366004612215565b610752565b005b3480156102a357600080fd5b506102ac610798565b60405161026c91906124cb565b3480156102c557600080fd5b506102d96102d43660046122b3565b61082a565b6040516001600160a01b03909116815260200161026c565b3480156102fd57600080fd5b5061029561030c3660046121eb565b6108bf565b34801561031d57600080fd5b5061029561032c366004612215565b6109d5565b34801561033d57600080fd5b50610347600d5481565b60405190815260200161026c565b34801561036157600080fd5b50600854610347565b34801561037657600080fd5b506102ac610a19565b34801561038b57600080fd5b50610347600f5481565b3480156103a157600080fd5b506102956103b036600461211d565b610aa7565b3480156103c157600080fd5b506103476103d03660046121eb565b610ad8565b3480156103e157600080fd5b50610295610b6e565b3480156103f657600080fd5b5061029561040536600461226a565b610c9e565b6102956104183660046121eb565b610cdf565b34801561042957600080fd5b5061029561043836600461211d565b610d8c565b34801561044957600080fd5b5061045d6104583660046120cf565b610da7565b60405161026c9190612487565b34801561047657600080fd5b506102956104853660046122b3565b610e49565b34801561049657600080fd5b506103476104a53660046122b3565b610e78565b3480156104b657600080fd5b506102956104c536600461226a565b610f0b565b3480156104d657600080fd5b506010546102609060ff1681565b3480156104f057600080fd5b506102d96104ff3660046122b3565b610f48565b34801561051057600080fd5b506102ac610fbf565b34801561052557600080fd5b506103476105343660046120cf565b610fcc565b34801561054557600080fd5b50610295611053565b34801561055a57600080fd5b506102956105693660046122cc565b611089565b34801561057a57600080fd5b506102956105893660046122b3565b611105565b61029561059c3660046120cf565b611134565b3480156105ad57600080fd5b50600a546001600160a01b03166102d9565b3480156105cb57600080fd5b506102ac611180565b3480156105e057600080fd5b506102956105ef3660046121c1565b61118f565b34801561060057600080fd5b506012546102d9906001600160a01b031681565b34801561062057600080fd5b5061029561062f366004612159565b611254565b34801561064057600080fd5b506102ac611286565b34801561065557600080fd5b506102ac6106643660046122b3565b611293565b34801561067557600080fd5b50610347600e5481565b34801561068b57600080fd5b5061029561069a36600461226a565b611418565b3480156106ab57600080fd5b506102606106ba3660046120ea565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156106f457600080fd5b506102956107033660046120cf565b611455565b34801561071457600080fd5b5060105461026090610100900460ff1681565b60006001600160e01b0319821663780e9d6360e01b148061074c575061074c826114f0565b92915050565b600a546001600160a01b031633146107855760405162461bcd60e51b815260040161077c90612530565b60405180910390fd5b6010805460ff1916911515919091179055565b6060600080546107a790612644565b80601f01602080910402602001604051908101604052809291908181526020018280546107d390612644565b80156108205780601f106107f557610100808354040283529160200191610820565b820191906000526020600020905b81548152906001019060200180831161080357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108a35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161077c565b506000908152600460205260409020546001600160a01b031690565b60006108ca82610f48565b9050806001600160a01b0316836001600160a01b031614156109385760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161077c565b336001600160a01b0382161480610954575061095481336106ba565b6109c65760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161077c565b6109d08383611540565b505050565b600a546001600160a01b031633146109ff5760405162461bcd60e51b815260040161077c90612530565b601080549115156101000261ff0019909216919091179055565b60118054610a2690612644565b80601f0160208091040260200160405190810160405280929190818152602001828054610a5290612644565b8015610a9f5780601f10610a7457610100808354040283529160200191610a9f565b820191906000526020600020905b815481529060010190602001808311610a8257829003601f168201915b505050505081565b610ab133826115ae565b610acd5760405162461bcd60e51b815260040161077c90612565565b6109d08383836116a5565b6000610ae383610fcc565b8210610b455760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161077c565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610b985760405162461bcd60e51b815260040161077c90612530565b476000610ba6600a836125ce565b604051909150339082156108fc029083906000818181858888f19350505050610bce57600080fd5b610bd88183612601565b91506000610be76005846125ce565b905060006002610bf78386612601565b610c0191906125ce565b6013546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050610c3457600080fd5b6014546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050610c6657600080fd5b6015546040516001600160a01b039091169083156108fc029084906000818181858888f19350505050610c9857600080fd5b50505050565b600a546001600160a01b03163314610cc85760405162461bcd60e51b815260040161077c90612530565b8051610cdb906011906020840190611f79565b5050565b60105460ff1615610cef57600080fd5b60008111610cfc57600080fd5b600f54811115610d0b57600080fd5b6000610d1660085490565b600e54909150610d2683836125b6565b1115610d3157600080fd5b600a546001600160a01b03163314610d5d5781600d54610d5191906125e2565b341015610d5d57600080fd5b60015b828111610c9857610d7a84610d7583856125b6565b611850565b80610d848161267f565b915050610d60565b6109d083838360405180602001604052806000815250611254565b60606000610db483610fcc565b905060008167ffffffffffffffff811115610dd157610dd1612706565b604051908082528060200260200182016040528015610dfa578160200160208202803683370190505b50905060005b82811015610e4157610e128582610ad8565b828281518110610e2457610e246126f0565b602090810291909101015280610e398161267f565b915050610e00565b509392505050565b600a546001600160a01b03163314610e735760405162461bcd60e51b815260040161077c90612530565b600d55565b6000610e8360085490565b8210610ee65760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161077c565b60088281548110610ef957610ef96126f0565b90600052602060002001549050919050565b600a546001600160a01b03163314610f355760405162461bcd60e51b815260040161077c90612530565b8051610cdb90600b906020840190611f79565b6000818152600260205260408120546001600160a01b03168061074c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161077c565b600b8054610a2690612644565b60006001600160a01b0382166110375760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161077c565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461107d5760405162461bcd60e51b815260040161077c90612530565b611087600061186a565b565b601254604051635099eaf360e01b81526001600160a01b0390911690635099eaf3906110bf90339088908890889060040161245a565b600060405180830381600087803b1580156110d957600080fd5b505af11580156110ed573d6000803e3d6000fd5b5050505080151560011415610c9857610c98836118bc565b600a546001600160a01b0316331461112f5760405162461bcd60e51b815260040161077c90612530565b600f55565b600a546001600160a01b0316331461115e5760405162461bcd60e51b815260040161077c90612530565b601280546001600160a01b0319166001600160a01b0392909216919091179055565b6060600180546107a790612644565b6001600160a01b0382163314156111e85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161077c565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61125e33836115ae565b61127a5760405162461bcd60e51b815260040161077c90612565565b610c9884848484611963565b600c8054610a2690612644565b6000818152600260205260409020546060906001600160a01b03166113125760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161077c565b601054610100900460ff16156113b4576011805461132f90612644565b80601f016020809104026020016040519081016040528092919081815260200182805461135b90612644565b80156113a85780601f1061137d576101008083540402835291602001916113a8565b820191906000526020600020905b81548152906001019060200180831161138b57829003601f168201915b50505050509050919050565b60006113be611996565b905060008151116113de576040518060200160405280600081525061140c565b806113e8846119a5565b600c6040516020016113fc93929190612359565b6040516020818303038152906040525b9392505050565b919050565b600a546001600160a01b031633146114425760405162461bcd60e51b815260040161077c90612530565b8051610cdb90600c906020840190611f79565b600a546001600160a01b0316331461147f5760405162461bcd60e51b815260040161077c90612530565b6001600160a01b0381166114e45760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161077c565b6114ed8161186a565b50565b60006001600160e01b031982166380ac58cd60e01b148061152157506001600160e01b03198216635b5e139f60e01b145b8061074c57506301ffc9a760e01b6001600160e01b031983161461074c565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061157582610f48565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166116275760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161077c565b600061163283610f48565b9050806001600160a01b0316846001600160a01b0316148061166d5750836001600160a01b03166116628461082a565b6001600160a01b0316145b8061169d57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166116b882610f48565b6001600160a01b0316146117205760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161077c565b6001600160a01b0382166117825760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161077c565b61178d838383611aa3565b611798600082611540565b6001600160a01b03831660009081526003602052604081208054600192906117c1908490612601565b90915550506001600160a01b03821660009081526003602052604081208054600192906117ef9084906125b6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610cdb828260405180602001604052806000815250611b5b565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006118c782610f48565b90506118d581600084611aa3565b6118e0600083611540565b6001600160a01b0381166000908152600360205260408120805460019290611909908490612601565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b61196e8484846116a5565b61197a84848484611b8e565b610c985760405162461bcd60e51b815260040161077c906124de565b6060600b80546107a790612644565b6060816119c95750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119f357806119dd8161267f565b91506119ec9050600a836125ce565b91506119cd565b60008167ffffffffffffffff811115611a0e57611a0e612706565b6040519080825280601f01601f191660200182016040528015611a38576020820181803683370190505b5090505b841561169d57611a4d600183612601565b9150611a5a600a8661269a565b611a659060306125b6565b60f81b818381518110611a7a57611a7a6126f0565b60200101906001600160f81b031916908160001a905350611a9c600a866125ce565b9450611a3c565b6001600160a01b038316611afe57611af981600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611b21565b816001600160a01b0316836001600160a01b031614611b2157611b218382611c9b565b6001600160a01b038216611b38576109d081611d38565b826001600160a01b0316826001600160a01b0316146109d0576109d08282611de7565b611b658383611e2b565b611b726000848484611b8e565b6109d05760405162461bcd60e51b815260040161077c906124de565b60006001600160a01b0384163b15611c9057604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611bd290339089908890889060040161241d565b602060405180830381600087803b158015611bec57600080fd5b505af1925050508015611c1c575060408051601f3d908101601f19168201909252611c199181019061224d565b60015b611c76573d808015611c4a576040519150601f19603f3d011682016040523d82523d6000602084013e611c4f565b606091505b508051611c6e5760405162461bcd60e51b815260040161077c906124de565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061169d565b506001949350505050565b60006001611ca884610fcc565b611cb29190612601565b600083815260076020526040902054909150808214611d05576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611d4a90600190612601565b60008381526009602052604081205460088054939450909284908110611d7257611d726126f0565b906000526020600020015490508060088381548110611d9357611d936126f0565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611dcb57611dcb6126da565b6001900381819060005260206000200160009055905550505050565b6000611df283610fcc565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611e815760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161077c565b6000818152600260205260409020546001600160a01b031615611ee65760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161077c565b611ef260008383611aa3565b6001600160a01b0382166000908152600360205260408120805460019290611f1b9084906125b6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611f8590612644565b90600052602060002090601f016020900481019282611fa75760008555611fed565b82601f10611fc057805160ff1916838001178555611fed565b82800160010185558215611fed579182015b82811115611fed578251825591602001919060010190611fd2565b50611ff9929150611ffd565b5090565b5b80821115611ff95760008155600101611ffe565b600067ffffffffffffffff8084111561202d5761202d612706565b604051601f8501601f19908116603f0116810190828211818310171561205557612055612706565b8160405280935085815286868601111561206e57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461141357600080fd5b8035801515811461141357600080fd5b600082601f8301126120c057600080fd5b61140c83833560208501612012565b6000602082840312156120e157600080fd5b61140c82612088565b600080604083850312156120fd57600080fd5b61210683612088565b915061211460208401612088565b90509250929050565b60008060006060848603121561213257600080fd5b61213b84612088565b925061214960208501612088565b9150604084013590509250925092565b6000806000806080858703121561216f57600080fd5b61217885612088565b935061218660208601612088565b925060408501359150606085013567ffffffffffffffff8111156121a957600080fd5b6121b5878288016120af565b91505092959194509250565b600080604083850312156121d457600080fd5b6121dd83612088565b91506121146020840161209f565b600080604083850312156121fe57600080fd5b61220783612088565b946020939093013593505050565b60006020828403121561222757600080fd5b61140c8261209f565b60006020828403121561224257600080fd5b813561140c8161271c565b60006020828403121561225f57600080fd5b815161140c8161271c565b60006020828403121561227c57600080fd5b813567ffffffffffffffff81111561229357600080fd5b8201601f810184136122a457600080fd5b61169d84823560208401612012565b6000602082840312156122c557600080fd5b5035919050565b600080600080608085870312156122e257600080fd5b8435935060208501359250604085013567ffffffffffffffff81111561230757600080fd5b612313878288016120af565b9250506123226060860161209f565b905092959194509250565b60008151808452612345816020860160208601612618565b601f01601f19169290920160200192915050565b60008451602061236c8285838a01612618565b85519184019161237f8184848a01612618565b8554920191600090600181811c908083168061239c57607f831692505b8583108114156123ba57634e487b7160e01b85526022600452602485fd5b8080156123ce57600181146123df5761240c565b60ff1985168852838801955061240c565b60008b81526020902060005b858110156124045781548a8201529084019088016123eb565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124509083018461232d565b9695505050505050565b60018060a01b0385168152836020820152826040820152608060608201526000612450608083018461232d565b6020808252825182820181905260009190848201906040850190845b818110156124bf578351835292840192918401916001016124a3565b50909695505050505050565b60208152600061140c602083018461232d565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156125c9576125c96126ae565b500190565b6000826125dd576125dd6126c4565b500490565b60008160001904831182151516156125fc576125fc6126ae565b500290565b600082821015612613576126136126ae565b500390565b60005b8381101561263357818101518382015260200161261b565b83811115610c985750506000910152565b600181811c9082168061265857607f821691505b6020821081141561267957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612693576126936126ae565b5060010190565b6000826126a9576126a96126c4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146114ed57600080fdfea2646970667358221220a63fd8964de898cf8de51cb244bc9ad6ab9257ad649e4c08c8a601b74d69aef464736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000953484142414e4752530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000953484142414e4752530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000953484142414e4752530000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): SHABANGRS
Arg [1] : _symbol (string): SHABANGRS
Arg [2] : _initBaseURI (string): SHABANGRS

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [4] : 53484142414e4752530000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [6] : 53484142414e4752530000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [8] : 53484142414e4752530000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

160:4218:12:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;938:237:4;;;;;;;;;;-1:-1:-1;938:237:4;;;;;:::i;:::-;;:::i;:::-;;;8686:14:14;;8679:22;8661:41;;8649:2;8634:18;938:237:4;;;;;;;;3426:73:12;;;;;;;;;;-1:-1:-1;3426:73:12;;;;;:::i;:::-;;:::i;:::-;;2419:100:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3879:221::-;;;;;;;;;;-1:-1:-1;3879:221:3;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6884:32:14;;;6866:51;;6854:2;6839:18;3879:221:3;6720:203:14;3416:397:3;;;;;;;;;;-1:-1:-1;3416:397:3;;;;;:::i;:::-;;:::i;3507:79:12:-;;;;;;;;;;-1:-1:-1;3507:79:12;;;;;:::i;:::-;;:::i;314:32::-;;;;;;;;;;;;;;;;;;;16290:25:14;;;16278:2;16263:18;314:32:12;16144:177:14;1591:113:4;;;;;;;;;;-1:-1:-1;1679:10:4;:17;1591:113;;495:67:12;;;;;;;;;;;;;:::i;388:33::-;;;;;;;;;;;;;;;;4769:305:3;;;;;;;;;;-1:-1:-1;4769:305:3;;;;;:::i;:::-;;:::i;1259:256:4:-;;;;;;;;;;-1:-1:-1;1259:256:4;;;;;:::i;:::-;;:::i;3791:576:12:-;;;;;;;;;;;;;:::i;3180:110::-;;;;;;;;;;-1:-1:-1;3180:110:12;;;;;:::i;:::-;;:::i;1209:451::-;;;;;;:::i;:::-;;:::i;5145:151:3:-;;;;;;;;;;-1:-1:-1;5145:151:3;;;;;:::i;:::-;;:::i;1666:348:12:-;;;;;;;;;;-1:-1:-1;1666:348:12;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;2862:82::-;;;;;;;;;;-1:-1:-1;2862:82:12;;;;;:::i;:::-;;:::i;1781:233:4:-;;;;;;;;;;-1:-1:-1;1781:233:4;;;;;:::i;:::-;;:::i;3074:98:12:-;;;;;;;;;;-1:-1:-1;3074:98:12;;;;;:::i;:::-;;:::i;430:25::-;;;;;;;;;;-1:-1:-1;430:25:12;;;;;;;;2113:239:3;;;;;;;;;;-1:-1:-1;2113:239:3;;;;;:::i;:::-;;:::i;246:21:12:-;;;;;;;;;;;;;:::i;1843:208:3:-;;;;;;;;;;-1:-1:-1;1843:208:3;;;;;:::i;:::-;;:::i;1650:94:11:-;;;;;;;;;;;;;:::i;2583:257:12:-;;;;;;;;;;-1:-1:-1;2583:257:12;;;;;:::i;:::-;;:::i;2950:118::-;;;;;;;;;;-1:-1:-1;2950:118:12;;;;;:::i;:::-;;:::i;3653:130::-;;;;;;:::i;:::-;;:::i;999:87:11:-;;;;;;;;;;-1:-1:-1;1072:6:11;;-1:-1:-1;;;;;1072:6:11;999:87;;2588:104:3;;;;;;;;;;;;;:::i;4172:295::-;;;;;;;;;;-1:-1:-1;4172:295:3;;;;;:::i;:::-;;:::i;608:36:12:-;;;;;;;;;;-1:-1:-1;608:36:12;;;;-1:-1:-1;;;;;608:36:12;;;5367:285:3;;;;;;;;;;-1:-1:-1;5367:285:3;;;;;:::i;:::-;;:::i;272:37:12:-;;;;;;;;;;;;;:::i;2020:524::-;;;;;;;;;;-1:-1:-1;2020:524:12;;;;;:::i;:::-;;:::i;351:32::-;;;;;;;;;;;;;;;;3298:122;;;;;;;;;;-1:-1:-1;3298:122:12;;;;;:::i;:::-;;:::i;4538:164:3:-;;;;;;;;;;-1:-1:-1;4538:164:3;;;;;:::i;:::-;-1:-1:-1;;;;;4659:25:3;;;4635:4;4659:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4538:164;1899:192:11;;;;;;;;;;-1:-1:-1;1899:192:11;;;;;:::i;:::-;;:::i;464:26:12:-;;;;;;;;;;-1:-1:-1;464:26:12;;;;;;;;;;;938:237:4;1040:4;-1:-1:-1;;;;;;1064:50:4;;-1:-1:-1;;;1064:50:4;;:103;;;1131:36;1155:11;1131:23;:36::i;:::-;1057:110;938:237;-1:-1:-1;;938:237:4:o;3426:73:12:-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;681:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;;;;;;;;;3478:6:12::1;:15:::0;;-1:-1:-1;;3478:15:12::1;::::0;::::1;;::::0;;;::::1;::::0;;3426:73::o;2419:100:3:-;2473:13;2506:5;2499:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2419:100;:::o;3879:221::-;3955:7;7208:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7208:16:3;3975:73;;;;-1:-1:-1;;;3975:73:3;;13513:2:14;3975:73:3;;;13495:21:14;13552:2;13532:18;;;13525:30;13591:34;13571:18;;;13564:62;-1:-1:-1;;;13642:18:14;;;13635:42;13694:19;;3975:73:3;13311:408:14;3975:73:3;-1:-1:-1;4068:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;4068:24:3;;3879:221::o;3416:397::-;3497:13;3513:23;3528:7;3513:14;:23::i;:::-;3497:39;;3561:5;-1:-1:-1;;;;;3555:11:3;:2;-1:-1:-1;;;;;3555:11:3;;;3547:57;;;;-1:-1:-1;;;3547:57:3;;15113:2:14;3547:57:3;;;15095:21:14;15152:2;15132:18;;;15125:30;15191:34;15171:18;;;15164:62;-1:-1:-1;;;15242:18:14;;;15235:31;15283:19;;3547:57:3;14911:397:14;3547:57:3;681:10:1;-1:-1:-1;;;;;3625:21:3;;;;:62;;-1:-1:-1;3650:37:3;3667:5;681:10:1;4538:164:3;:::i;3650:37::-;3617:154;;;;-1:-1:-1;;;3617:154:3;;11906:2:14;3617:154:3;;;11888:21:14;11945:2;11925:18;;;11918:30;11984:34;11964:18;;;11957:62;12055:26;12035:18;;;12028:54;12099:19;;3617:154:3;11704:420:14;3617:154:3;3784:21;3793:2;3797:7;3784:8;:21::i;:::-;3486:327;3416:397;;:::o;3507:79:12:-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;681:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;3564:7:12::1;:16:::0;;;::::1;;;;-1:-1:-1::0;;3564:16:12;;::::1;::::0;;;::::1;::::0;;3507:79::o;495:67::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4769:305:3:-;4930:41;681:10:1;4963:7:3;4930:18;:41::i;:::-;4922:103;;;;-1:-1:-1;;;4922:103:3;;;;;;;:::i;:::-;5038:28;5048:4;5054:2;5058:7;5038:9;:28::i;1259:256:4:-;1356:7;1392:23;1409:5;1392:16;:23::i;:::-;1384:5;:31;1376:87;;;;-1:-1:-1;;;1376:87:4;;9139:2:14;1376:87:4;;;9121:21:14;9178:2;9158:18;;;9151:30;9217:34;9197:18;;;9190:62;-1:-1:-1;;;9268:18:14;;;9261:41;9319:19;;1376:87:4;8937:407:14;1376:87:4;-1:-1:-1;;;;;;1481:19:4;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1259:256::o;3791:576:12:-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;681:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;3850:21:12::1;3839:8;3912;3918:2;3850:21:::0;3912:8:::1;:::i;:::-;3963:38;::::0;3892:28;;-1:-1:-1;3971:10:12::1;::::0;3963:38;::::1;;;::::0;3892:28;;3963:38:::1;::::0;;;3892:28;3971:10;3963:38;::::1;;;;;;3955:47;;;::::0;::::1;;4029:17;4034:12:::0;4029:3;:17:::1;:::i;:::-;4023:23:::0;-1:-1:-1;4065:14:12::1;4082:7;4088:1;4023:23:::0;4082:7:::1;:::i;:::-;4065:24:::0;-1:-1:-1;4113:14:12::1;4150:1;4131:15;4065:24:::0;4131:3;:15:::1;:::i;:::-;4130:21;;;;:::i;:::-;4220:11;::::0;4212:36:::1;::::0;4113:38;;-1:-1:-1;;;;;;4220:11:12::1;::::0;4212:36;::::1;;;::::0;4113:38;;4220:11:::1;4212:36:::0;4220:11;4212:36;4113:38;4220:11;4212:36;::::1;;;;;;4204:45;;;::::0;::::1;;4276:11;::::0;4268:36:::1;::::0;-1:-1:-1;;;;;4276:11:12;;::::1;::::0;4268:36;::::1;;;::::0;4294:9;;4276:11:::1;4268:36:::0;4276:11;4268:36;4294:9;4276:11;4268:36;::::1;;;;;;4260:45;;;::::0;::::1;;4332:11;::::0;4324:36:::1;::::0;-1:-1:-1;;;;;4332:11:12;;::::1;::::0;4324:36;::::1;;;::::0;4350:9;;4332:11:::1;4324:36:::0;4332:11;4324:36;4350:9;4332:11;4324:36;::::1;;;;;;4316:45;;;::::0;::::1;;3828:539;;;;3791:576::o:0;3180:110::-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;681:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;3257:27:12;;::::1;::::0;:10:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;:::-;;3180:110:::0;:::o;1209:451::-;1288:6;;;;1287:7;1279:16;;;;;;1324:1;1310:11;:15;1302:24;;;;;;1356:13;;1341:11;:28;;1333:37;;;;;;1383:14;1400:13;1679:10:4;:17;;1591:113;1400:13:12;1452:9;;1383:30;;-1:-1:-1;1428:20:12;1437:11;1383:30;1428:20;:::i;:::-;:33;;1420:42;;;;;;1072:6:11;;-1:-1:-1;;;;;1072:6:11;1479:10:12;:21;1475:86;;1541:11;1534:4;;:18;;;;:::i;:::-;1521:9;:31;;1513:40;;;;;;1586:1;1569:86;1594:11;1589:1;:16;1569:86;;1621:26;1631:3;1636:10;1645:1;1636:6;:10;:::i;:::-;1621:9;:26::i;:::-;1607:3;;;;:::i;:::-;;;;1569:86;;5145:151:3;5249:39;5266:4;5272:2;5276:7;5249:39;;;;;;;;;;;;:16;:39::i;1666:348:12:-;1741:16;1769:23;1795:17;1805:6;1795:9;:17::i;:::-;1769:43;;1819:25;1861:15;1847:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1847:30:12;;1819:58;;1889:9;1884:103;1904:15;1900:1;:19;1884:103;;;1949:30;1969:6;1977:1;1949:19;:30::i;:::-;1935:8;1944:1;1935:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;1921:3;;;;:::i;:::-;;;;1884:103;;;-1:-1:-1;2000:8:12;1666:348;-1:-1:-1;;;1666:348:12:o;2862:82::-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;681:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;2923:4:12::1;:15:::0;2862:82::o;1781:233:4:-;1856:7;1892:30;1679:10;:17;;1591:113;1892:30;1884:5;:38;1876:95;;;;-1:-1:-1;;;1876:95:4;;15933:2:14;1876:95:4;;;15915:21:14;15972:2;15952:18;;;15945:30;16011:34;15991:18;;;15984:62;-1:-1:-1;;;16062:18:14;;;16055:42;16114:19;;1876:95:4;15731:408:14;1876:95:4;1989:10;2000:5;1989:17;;;;;;;;:::i;:::-;;;;;;;;;1982:24;;1781:233;;;:::o;3074:98:12:-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;681:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;3145:21:12;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;2113:239:3:-:0;2185:7;2221:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2221:16:3;2256:19;2248:73;;;;-1:-1:-1;;;2248:73:3;;12742:2:14;2248:73:3;;;12724:21:14;12781:2;12761:18;;;12754:30;12820:34;12800:18;;;12793:62;-1:-1:-1;;;12871:18:14;;;12864:39;12920:19;;2248:73:3;12540:405:14;246:21:12;;;;;;;:::i;1843:208:3:-;1915:7;-1:-1:-1;;;;;1943:19:3;;1935:74;;;;-1:-1:-1;;;1935:74:3;;12331:2:14;1935:74:3;;;12313:21:14;12370:2;12350:18;;;12343:30;12409:34;12389:18;;;12382:62;-1:-1:-1;;;12460:18:14;;;12453:40;12510:19;;1935:74:3;12129:406:14;1935:74:3;-1:-1:-1;;;;;;2027:16:3;;;;;:9;:16;;;;;;;1843:208::o;1650:94:11:-;1072:6;;-1:-1:-1;;;;;1072:6:11;681:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;1715:21:::1;1733:1;1715:9;:21::i;:::-;1650:94::o:0;2583:257:12:-;2698:21;;2682:86;;-1:-1:-1;;;2682:86:12;;-1:-1:-1;;;;;2698:21:12;;;;2682:49;;:86;;2732:10;;2744:6;;2752;;2760:7;;2682:86;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;2792:12:12;;;2800:4;2792:12;2789:43;;;2819:13;2825:6;2819:5;:13::i;2950:118::-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;681:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;3029:13:12::1;:33:::0;2950:118::o;3653:130::-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;681:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;3743:21:12::1;:32:::0;;-1:-1:-1;;;;;;3743:32:12::1;-1:-1:-1::0;;;;;3743:32:12;;;::::1;::::0;;;::::1;::::0;;3653:130::o;2588:104:3:-;2644:13;2677:7;2670:14;;;;;:::i;4172:295::-;-1:-1:-1;;;;;4275:24:3;;681:10:1;4275:24:3;;4267:62;;;;-1:-1:-1;;;4267:62:3;;11139:2:14;4267:62:3;;;11121:21:14;11178:2;11158:18;;;11151:30;11217:27;11197:18;;;11190:55;11262:18;;4267:62:3;10937:349:14;4267:62:3;681:10:1;4342:32:3;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;4342:42:3;;;;;;;;;;;;:53;;-1:-1:-1;;4342:53:3;;;;;;;;;;4411:48;;8661:41:14;;;4342:42:3;;681:10:1;4411:48:3;;8634:18:14;4411:48:3;;;;;;;4172:295;;:::o;5367:285::-;5499:41;681:10:1;5532:7:3;5499:18;:41::i;:::-;5491:103;;;;-1:-1:-1;;;5491:103:3;;;;;;;:::i;:::-;5605:39;5619:4;5625:2;5629:7;5638:5;5605:13;:39::i;272:37:12:-;;;;;;;:::i;2020:524::-;7184:4:3;7208:16;;;:7;:16;;;;;;2118:13:12;;-1:-1:-1;;;;;7208:16:3;2143:97:12;;;;-1:-1:-1;;;2143:97:12;;14697:2:14;2143:97:12;;;14679:21:14;14736:2;14716:18;;;14709:30;14775:34;14755:18;;;14748:62;-1:-1:-1;;;14826:18:14;;;14819:45;14881:19;;2143:97:12;14495:411:14;2143:97:12;2252:7;;;;;;;2249:288;;;2278:10;2271:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2020:524;;;:::o;2249:288::-;2323:28;2354:10;:8;:10::i;:::-;2323:41;;2423:1;2398:14;2392:28;:32;:133;;;;;;;;;;;;;;;;;2460:14;2476:18;:7;:16;:18::i;:::-;2496:13;2443:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2392:133;2385:140;2020:524;-1:-1:-1;;;2020:524:12:o;2249:288::-;2020:524;;;:::o;3298:122::-;1072:6:11;;-1:-1:-1;;;;;1072:6:11;681:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;3381:33:12;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;1899:192:11:-:0;1072:6;;-1:-1:-1;;;;;1072:6:11;681:10:1;1219:23:11;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;-1:-1:-1;;;;;1988:22:11;::::1;1980:73;;;::::0;-1:-1:-1;;;1980:73:11;;9970:2:14;1980:73:11::1;::::0;::::1;9952:21:14::0;10009:2;9989:18;;;9982:30;10048:34;10028:18;;;10021:62;-1:-1:-1;;;10099:18:14;;;10092:36;10145:19;;1980:73:11::1;9768:402:14::0;1980:73:11::1;2064:19;2074:8;2064:9;:19::i;:::-;1899:192:::0;:::o;1487:292:3:-;1589:4;-1:-1:-1;;;;;;1613:40:3;;-1:-1:-1;;;1613:40:3;;:105;;-1:-1:-1;;;;;;;1670:48:3;;-1:-1:-1;;;1670:48:3;1613:105;:158;;;-1:-1:-1;;;;;;;;;;896:40:2;;;1735:36:3;787:157:2;10996:174:3;11071:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11071:29:3;-1:-1:-1;;;;;11071:29:3;;;;;;;;:24;;11125:23;11071:24;11125:14;:23::i;:::-;-1:-1:-1;;;;;11116:46:3;;;;;;;;;;;10996:174;;:::o;7413:348::-;7506:4;7208:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7208:16:3;7523:73;;;;-1:-1:-1;;;7523:73:3;;11493:2:14;7523:73:3;;;11475:21:14;11532:2;11512:18;;;11505:30;11571:34;11551:18;;;11544:62;-1:-1:-1;;;11622:18:14;;;11615:42;11674:19;;7523:73:3;11291:408:14;7523:73:3;7607:13;7623:23;7638:7;7623:14;:23::i;:::-;7607:39;;7676:5;-1:-1:-1;;;;;7665:16:3;:7;-1:-1:-1;;;;;7665:16:3;;:51;;;;7709:7;-1:-1:-1;;;;;7685:31:3;:20;7697:7;7685:11;:20::i;:::-;-1:-1:-1;;;;;7685:31:3;;7665:51;:87;;;-1:-1:-1;;;;;;4659:25:3;;;4635:4;4659:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7720:32;7657:96;7413:348;-1:-1:-1;;;;7413:348:3:o;10334:544::-;10459:4;-1:-1:-1;;;;;10432:31:3;:23;10447:7;10432:14;:23::i;:::-;-1:-1:-1;;;;;10432:31:3;;10424:85;;;;-1:-1:-1;;;10424:85:3;;14287:2:14;10424:85:3;;;14269:21:14;14326:2;14306:18;;;14299:30;14365:34;14345:18;;;14338:62;-1:-1:-1;;;14416:18:14;;;14409:39;14465:19;;10424:85:3;14085:405:14;10424:85:3;-1:-1:-1;;;;;10528:16:3;;10520:65;;;;-1:-1:-1;;;10520:65:3;;10734:2:14;10520:65:3;;;10716:21:14;10773:2;10753:18;;;10746:30;10812:34;10792:18;;;10785:62;-1:-1:-1;;;10863:18:14;;;10856:34;10907:19;;10520:65:3;10532:400:14;10520:65:3;10598:39;10619:4;10625:2;10629:7;10598:20;:39::i;:::-;10702:29;10719:1;10723:7;10702:8;:29::i;:::-;-1:-1:-1;;;;;10744:15:3;;;;;;:9;:15;;;;;:20;;10763:1;;10744:15;:20;;10763:1;;10744:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10775:13:3;;;;;;:9;:13;;;;;:18;;10792:1;;10775:13;:18;;10792:1;;10775:18;:::i;:::-;;;;-1:-1:-1;;10804:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10804:21:3;-1:-1:-1;;;;;10804:21:3;;;;;;;;;10843:27;;10804:16;;10843:27;;;;;;;10334:544;;;:::o;8103:110::-;8179:26;8189:2;8193:7;8179:26;;;;;;;;;;;;:9;:26::i;2099:173:11:-;2174:6;;;-1:-1:-1;;;;;2191:17:11;;;-1:-1:-1;;;;;;2191:17:11;;;;;;;2224:40;;2174:6;;;2191:17;2174:6;;2224:40;;2155:16;;2224:40;2144:128;2099:173;:::o;9637:360:3:-;9697:13;9713:23;9728:7;9713:14;:23::i;:::-;9697:39;;9749:48;9770:5;9785:1;9789:7;9749:20;:48::i;:::-;9838:29;9855:1;9859:7;9838:8;:29::i;:::-;-1:-1:-1;;;;;9880:16:3;;;;;;:9;:16;;;;;:21;;9900:1;;9880:16;:21;;9900:1;;9880:21;:::i;:::-;;;;-1:-1:-1;;9919:16:3;;;;:7;:16;;;;;;9912:23;;-1:-1:-1;;;;;;9912:23:3;;;9953:36;9927:7;;9919:16;-1:-1:-1;;;;;9953:36:3;;;;;9919:16;;9953:36;9686:311;9637:360;:::o;6534:272::-;6648:28;6658:4;6664:2;6668:7;6648:9;:28::i;:::-;6695:48;6718:4;6724:2;6728:7;6737:5;6695:22;:48::i;:::-;6687:111;;;;-1:-1:-1;;;6687:111:3;;;;;;;:::i;1088:102:12:-;1148:13;1177:7;1170:14;;;;;:::i;288:723:13:-;344:13;565:10;561:53;;-1:-1:-1;;592:10:13;;;;;;;;;;;;-1:-1:-1;;;592:10:13;;;;;288:723::o;561:53::-;639:5;624:12;680:78;687:9;;680:78;;713:8;;;;:::i;:::-;;-1:-1:-1;736:10:13;;-1:-1:-1;744:2:13;736:10;;:::i;:::-;;;680:78;;;768:19;800:6;790:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;790:17:13;;768:39;;818:154;825:10;;818:154;;852:11;862:1;852:11;;:::i;:::-;;-1:-1:-1;921:10:13;929:2;921:5;:10;:::i;:::-;908:24;;:2;:24;:::i;:::-;895:39;;878:6;885;878:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;878:56:13;;;;;;;;-1:-1:-1;949:11:13;958:2;949:11;;:::i;:::-;;;818:154;;2627:555:4;-1:-1:-1;;;;;2799:18:4;;2795:187;;2834:40;2866:7;4009:10;:17;;3982:24;;;;:15;:24;;;;;:44;;;4037:24;;;;;;;;;;;;3905:164;2834:40;2795:187;;;2904:2;-1:-1:-1;;;;;2896:10:4;:4;-1:-1:-1;;;;;2896:10:4;;2892:90;;2923:47;2956:4;2962:7;2923:32;:47::i;:::-;-1:-1:-1;;;;;2996:16:4;;2992:183;;3029:45;3066:7;3029:36;:45::i;2992:183::-;3102:4;-1:-1:-1;;;;;3096:10:4;:2;-1:-1:-1;;;;;3096:10:4;;3092:83;;3123:40;3151:2;3155:7;3123:27;:40::i;8440:250:3:-;8536:18;8542:2;8546:7;8536:5;:18::i;:::-;8573:54;8604:1;8608:2;8612:7;8621:5;8573:22;:54::i;:::-;8565:117;;;;-1:-1:-1;;;8565:117:3;;;;;;;:::i;11735:843::-;11856:4;-1:-1:-1;;;;;11882:13:3;;1110:20:0;1149:8;11878:693:3;;11918:72;;-1:-1:-1;;;11918:72:3;;-1:-1:-1;;;;;11918:36:3;;;;;:72;;681:10:1;;11969:4:3;;11975:7;;11984:5;;11918:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11918:72:3;;;;;;;;-1:-1:-1;;11918:72:3;;;;;;;;;;;;:::i;:::-;;;11914:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12164:13:3;;12160:341;;12207:60;;-1:-1:-1;;;12207:60:3;;;;;;;:::i;12160:341::-;12451:6;12445:13;12436:6;12432:2;12428:15;12421:38;11914:602;-1:-1:-1;;;;;;12041:55:3;-1:-1:-1;;;12041:55:3;;-1:-1:-1;12034:62:3;;11878:693;-1:-1:-1;12555:4:3;11735:843;;;;;;:::o;4696:988:4:-;4962:22;5012:1;4987:22;5004:4;4987:16;:22::i;:::-;:26;;;;:::i;:::-;5024:18;5045:26;;;:17;:26;;;;;;4962:51;;-1:-1:-1;5178:28:4;;;5174:328;;-1:-1:-1;;;;;5245:18:4;;5223:19;5245:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5296:30;;;;;;:44;;;5413:30;;:17;:30;;;;;:43;;;5174:328;-1:-1:-1;5598:26:4;;;;:17;:26;;;;;;;;5591:33;;;-1:-1:-1;;;;;5642:18:4;;;;;:12;:18;;;;;:34;;;;;;;5635:41;4696:988::o;5979:1079::-;6257:10;:17;6232:22;;6257:21;;6277:1;;6257:21;:::i;:::-;6289:18;6310:24;;;:15;:24;;;;;;6683:10;:26;;6232:46;;-1:-1:-1;6310:24:4;;6232:46;;6683:26;;;;;;:::i;:::-;;;;;;;;;6661:48;;6747:11;6722:10;6733;6722:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;6827:28;;;:15;:28;;;;;;;:41;;;6999:24;;;;;6992:31;7034:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;6050:1008;;;5979:1079;:::o;3483:221::-;3568:14;3585:20;3602:2;3585:16;:20::i;:::-;-1:-1:-1;;;;;3616:16:4;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3661:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3483:221:4:o;9026:382:3:-;-1:-1:-1;;;;;9106:16:3;;9098:61;;;;-1:-1:-1;;;9098:61:3;;13152:2:14;9098:61:3;;;13134:21:14;;;13171:18;;;13164:30;13230:34;13210:18;;;13203:62;13282:18;;9098:61:3;12950:356:14;9098:61:3;7184:4;7208:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7208:16:3;:30;9170:58;;;;-1:-1:-1;;;9170:58:3;;10377:2:14;9170:58:3;;;10359:21:14;10416:2;10396:18;;;10389:30;10455;10435:18;;;10428:58;10503:18;;9170:58:3;10175:352:14;9170:58:3;9241:45;9270:1;9274:2;9278:7;9241:20;:45::i;:::-;-1:-1:-1;;;;;9299:13:3;;;;;;:9;:13;;;;;:18;;9316:1;;9299:13;:18;;9316:1;;9299:18;:::i;:::-;;;;-1:-1:-1;;9328:16:3;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9328:21:3;-1:-1:-1;;;;;9328:21:3;;;;;;;;9367:33;;9328:16;;;9367:33;;9328:16;;9367:33;9026:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:14;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:14;;;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:173::-;718:20;;-1:-1:-1;;;;;767:31:14;;757:42;;747:70;;813:1;810;803:12;828:160;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:220;1035:5;1088:3;1081:4;1073:6;1069:17;1065:27;1055:55;;1106:1;1103;1096:12;1055:55;1128:79;1203:3;1194:6;1181:20;1174:4;1166:6;1162:17;1128:79;:::i;1218:186::-;1277:6;1330:2;1318:9;1309:7;1305:23;1301:32;1298:52;;;1346:1;1343;1336:12;1298:52;1369:29;1388:9;1369:29;:::i;1409:260::-;1477:6;1485;1538:2;1526:9;1517:7;1513:23;1509:32;1506:52;;;1554:1;1551;1544:12;1506:52;1577:29;1596:9;1577:29;:::i;:::-;1567:39;;1625:38;1659:2;1648:9;1644:18;1625:38;:::i;:::-;1615:48;;1409:260;;;;;:::o;1674:328::-;1751:6;1759;1767;1820:2;1808:9;1799:7;1795:23;1791:32;1788:52;;;1836:1;1833;1826:12;1788:52;1859:29;1878:9;1859:29;:::i;:::-;1849:39;;1907:38;1941:2;1930:9;1926:18;1907:38;:::i;:::-;1897:48;;1992:2;1981:9;1977:18;1964:32;1954:42;;1674:328;;;;;:::o;2007:537::-;2102:6;2110;2118;2126;2179:3;2167:9;2158:7;2154:23;2150:33;2147:53;;;2196:1;2193;2186:12;2147:53;2219:29;2238:9;2219:29;:::i;:::-;2209:39;;2267:38;2301:2;2290:9;2286:18;2267:38;:::i;:::-;2257:48;;2352:2;2341:9;2337:18;2324:32;2314:42;;2407:2;2396:9;2392:18;2379:32;2434:18;2426:6;2423:30;2420:50;;;2466:1;2463;2456:12;2420:50;2489:49;2530:7;2521:6;2510:9;2506:22;2489:49;:::i;:::-;2479:59;;;2007:537;;;;;;;:::o;2549:254::-;2614:6;2622;2675:2;2663:9;2654:7;2650:23;2646:32;2643:52;;;2691:1;2688;2681:12;2643:52;2714:29;2733:9;2714:29;:::i;:::-;2704:39;;2762:35;2793:2;2782:9;2778:18;2762:35;:::i;2808:254::-;2876:6;2884;2937:2;2925:9;2916:7;2912:23;2908:32;2905:52;;;2953:1;2950;2943:12;2905:52;2976:29;2995:9;2976:29;:::i;:::-;2966:39;3052:2;3037:18;;;;3024:32;;-1:-1:-1;;;2808:254:14:o;3067:180::-;3123:6;3176:2;3164:9;3155:7;3151:23;3147:32;3144:52;;;3192:1;3189;3182:12;3144:52;3215:26;3231:9;3215:26;:::i;3252:245::-;3310:6;3363:2;3351:9;3342:7;3338:23;3334:32;3331:52;;;3379:1;3376;3369:12;3331:52;3418:9;3405:23;3437:30;3461:5;3437:30;:::i;3502:249::-;3571:6;3624:2;3612:9;3603:7;3599:23;3595:32;3592:52;;;3640:1;3637;3630:12;3592:52;3672:9;3666:16;3691:30;3715:5;3691:30;:::i;3756:450::-;3825:6;3878:2;3866:9;3857:7;3853:23;3849:32;3846:52;;;3894:1;3891;3884:12;3846:52;3934:9;3921:23;3967:18;3959:6;3956:30;3953:50;;;3999:1;3996;3989:12;3953:50;4022:22;;4075:4;4067:13;;4063:27;-1:-1:-1;4053:55:14;;4104:1;4101;4094:12;4053:55;4127:73;4192:7;4187:2;4174:16;4169:2;4165;4161:11;4127:73;:::i;4211:180::-;4270:6;4323:2;4311:9;4302:7;4298:23;4294:32;4291:52;;;4339:1;4336;4329:12;4291:52;-1:-1:-1;4362:23:14;;4211:180;-1:-1:-1;4211:180:14:o;4396:525::-;4488:6;4496;4504;4512;4565:3;4553:9;4544:7;4540:23;4536:33;4533:53;;;4582:1;4579;4572:12;4533:53;4618:9;4605:23;4595:33;;4675:2;4664:9;4660:18;4647:32;4637:42;;4730:2;4719:9;4715:18;4702:32;4757:18;4749:6;4746:30;4743:50;;;4789:1;4786;4779:12;4743:50;4812:49;4853:7;4844:6;4833:9;4829:22;4812:49;:::i;:::-;4802:59;;;4880:35;4911:2;4900:9;4896:18;4880:35;:::i;:::-;4870:45;;4396:525;;;;;;;:::o;4926:257::-;4967:3;5005:5;4999:12;5032:6;5027:3;5020:19;5048:63;5104:6;5097:4;5092:3;5088:14;5081:4;5074:5;5070:16;5048:63;:::i;:::-;5165:2;5144:15;-1:-1:-1;;5140:29:14;5131:39;;;;5172:4;5127:50;;4926:257;-1:-1:-1;;4926:257:14:o;5188:1527::-;5412:3;5450:6;5444:13;5476:4;5489:51;5533:6;5528:3;5523:2;5515:6;5511:15;5489:51;:::i;:::-;5603:13;;5562:16;;;;5625:55;5603:13;5562:16;5647:15;;;5625:55;:::i;:::-;5769:13;;5702:20;;;5742:1;;5829;5851:18;;;;5904;;;;5931:93;;6009:4;5999:8;5995:19;5983:31;;5931:93;6072:2;6062:8;6059:16;6039:18;6036:40;6033:167;;;-1:-1:-1;;;6099:33:14;;6155:4;6152:1;6145:15;6185:4;6106:3;6173:17;6033:167;6216:18;6243:110;;;;6367:1;6362:328;;;;6209:481;;6243:110;-1:-1:-1;;6278:24:14;;6264:39;;6323:20;;;;-1:-1:-1;6243:110:14;;6362:328;16399:1;16392:14;;;16436:4;16423:18;;6457:1;6471:169;6485:8;6482:1;6479:15;6471:169;;;6567:14;;6552:13;;;6545:37;6610:16;;;;6502:10;;6471:169;;;6475:3;;6671:8;6664:5;6660:20;6653:27;;6209:481;-1:-1:-1;6706:3:14;;5188:1527;-1:-1:-1;;;;;;;;;;;5188:1527:14:o;6928:488::-;-1:-1:-1;;;;;7197:15:14;;;7179:34;;7249:15;;7244:2;7229:18;;7222:43;7296:2;7281:18;;7274:34;;;7344:3;7339:2;7324:18;;7317:31;;;7122:4;;7365:45;;7390:19;;7382:6;7365:45;:::i;:::-;7357:53;6928:488;-1:-1:-1;;;;;;6928:488:14:o;7421:458::-;7681:1;7677;7672:3;7668:11;7664:19;7656:6;7652:32;7641:9;7634:51;7721:6;7716:2;7705:9;7701:18;7694:34;7764:6;7759:2;7748:9;7744:18;7737:34;7807:3;7802:2;7791:9;7787:18;7780:31;7615:4;7828:45;7868:3;7857:9;7853:19;7845:6;7828:45;:::i;7884:632::-;8055:2;8107:21;;;8177:13;;8080:18;;;8199:22;;;8026:4;;8055:2;8278:15;;;;8252:2;8237:18;;;8026:4;8321:169;8335:6;8332:1;8329:13;8321:169;;;8396:13;;8384:26;;8465:15;;;;8430:12;;;;8357:1;8350:9;8321:169;;;-1:-1:-1;8507:3:14;;7884:632;-1:-1:-1;;;;;;7884:632:14:o;8713:219::-;8862:2;8851:9;8844:21;8825:4;8882:44;8922:2;8911:9;8907:18;8899:6;8882:44;:::i;9349:414::-;9551:2;9533:21;;;9590:2;9570:18;;;9563:30;9629:34;9624:2;9609:18;;9602:62;-1:-1:-1;;;9695:2:14;9680:18;;9673:48;9753:3;9738:19;;9349:414::o;13724:356::-;13926:2;13908:21;;;13945:18;;;13938:30;14004:34;13999:2;13984:18;;13977:62;14071:2;14056:18;;13724:356::o;15313:413::-;15515:2;15497:21;;;15554:2;15534:18;;;15527:30;15593:34;15588:2;15573:18;;15566:62;-1:-1:-1;;;15659:2:14;15644:18;;15637:47;15716:3;15701:19;;15313:413::o;16452:128::-;16492:3;16523:1;16519:6;16516:1;16513:13;16510:39;;;16529:18;;:::i;:::-;-1:-1:-1;16565:9:14;;16452:128::o;16585:120::-;16625:1;16651;16641:35;;16656:18;;:::i;:::-;-1:-1:-1;16690:9:14;;16585:120::o;16710:168::-;16750:7;16816:1;16812;16808:6;16804:14;16801:1;16798:21;16793:1;16786:9;16779:17;16775:45;16772:71;;;16823:18;;:::i;:::-;-1:-1:-1;16863:9:14;;16710:168::o;16883:125::-;16923:4;16951:1;16948;16945:8;16942:34;;;16956:18;;:::i;:::-;-1:-1:-1;16993:9:14;;16883:125::o;17013:258::-;17085:1;17095:113;17109:6;17106:1;17103:13;17095:113;;;17185:11;;;17179:18;17166:11;;;17159:39;17131:2;17124:10;17095:113;;;17226:6;17223:1;17220:13;17217:48;;;-1:-1:-1;;17261:1:14;17243:16;;17236:27;17013:258::o;17276:380::-;17355:1;17351:12;;;;17398;;;17419:61;;17473:4;17465:6;17461:17;17451:27;;17419:61;17526:2;17518:6;17515:14;17495:18;17492:38;17489:161;;;17572:10;17567:3;17563:20;17560:1;17553:31;17607:4;17604:1;17597:15;17635:4;17632:1;17625:15;17489:161;;17276:380;;;:::o;17661:135::-;17700:3;-1:-1:-1;;17721:17:14;;17718:43;;;17741:18;;:::i;:::-;-1:-1:-1;17788:1:14;17777:13;;17661:135::o;17801:112::-;17833:1;17859;17849:35;;17864:18;;:::i;:::-;-1:-1:-1;17898:9:14;;17801:112::o;17918:127::-;17979:10;17974:3;17970:20;17967:1;17960:31;18010:4;18007:1;18000:15;18034:4;18031:1;18024:15;18050:127;18111:10;18106:3;18102:20;18099:1;18092:31;18142:4;18139:1;18132:15;18166:4;18163:1;18156:15;18182:127;18243:10;18238:3;18234:20;18231:1;18224:31;18274:4;18271:1;18264:15;18298:4;18295:1;18288:15;18314:127;18375:10;18370:3;18366:20;18363:1;18356:31;18406:4;18403:1;18396:15;18430:4;18427:1;18420:15;18446:127;18507:10;18502:3;18498:20;18495:1;18488:31;18538:4;18535:1;18528:15;18562:4;18559:1;18552:15;18578:131;-1:-1:-1;;;;;;18652:32:14;;18642:43;;18632:71;;18699:1;18696;18689:12

Swarm Source

ipfs://a63fd8964de898cf8de51cb244bc9ad6ab9257ad649e4c08c8a601b74d69aef4
Loading...
Loading
Loading...
Loading
[ 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.