ETH Price: $3,101.74 (+1.36%)
Gas: 8 Gwei

Token

BattleGrowlies (BG)
 

Overview

Max Total Supply

542 BG

Holders

115

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 BG
0x14aF19798B4c83d1d353b02ADc3324626C45317c
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
BattleGrowlies

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : BattleGrowlies.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.13;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol";

//                             :-===-:.                .:-===-:
//                         .+##+=====++*#***++++++***#*++=====+*#+.
//                      .*#=------------------------------------=##:
//                      =%=-----------------------------------------%+
//                     =%--------------------------------------------#+
//                    .@------.   .:----------------------------------@:
//                    +#-----.     .----------------------------------**
//                    %+-----:     :----------------------------------=@
//                    @=------::::+*=------#%-----+*------=##----------@
//                    @=----------=#@%+--*@#------=%@#=--*@#----------=@
//                    #*-------------*@%%%=---------=#@%@%=-----------+%
//                    -%-------------+@@@@*----------+@@@%+-----------%=
//                     %+----------=%@*--+%@*------=%@+--*@%+--------=@
//                     -@---------+@#------=#+----+@*------+#=-------%-
//                      *#------------------------------------------*#
//                       #*----------------------------------------+%
//                        #*--------------------------------------*%
//                         *#------------------------------------*#
//                          *#----------------------------------#*
//                          .@----------------------------------@.
//                          .@----------------------------------@.
//                          .@-------------+#*++*#+-------------@.
//                          :@-----------=%-      -%=-----------%:
//                          .@-----------%-        -@-----------@.
//                           #*----------@          @=---------+#
//                           .@=---------@          @=---------@:
//                            :%=--------%-        :@--------=%-
//                             .%*-------#+        =#-------+%:
//                               +%=-----#+        =#=----=#*
//                                .*#***##.         *#####*:
//                                   :-:.           :###+.
//                                                  .##*
//                                                  +###-
//                                                 +..*##:
//                                                 *++###-
//                                                 .+***-

contract OwnableDelegateProxy {

}

contract ProxyRegistry {
    mapping(address => OwnableDelegateProxy) public proxies;
}

contract BattleGrowlies is ERC721, Ownable {
    using SafeMath for uint256;

    event Received(address from, uint256 amount);
    event NewGrowlie(
        address indexed growlieAddress,
        uint256 count,
        bool isFreeMint
    );

    bool public isPaused = true;
    bool public isPublicSale = false;

    string private _baseTokenURI = "";

    uint256 public constant MAX_SUPPLY = 10000;
    uint256 private constant PUBLIC_MAX_MINT = 10;
    uint256 private constant WL_MAX_MINT = 3;
    uint256 public totalSupply = 0;
    uint256 public presalePrice = 0.07 ether;
    uint256 public publicPrice = 0.09 ether;

    address public proxyRegistryAddress;
    address public signer;
    address[] private _members;

    mapping(string => bool) private _isNonceUsed;
    mapping(address => uint256) private _wlQtyMintedByGrowlie;
    mapping(address => bool) private _freeClaimQtyMintedByGrowlie;

    constructor(
        string memory baseURI,
        address[] memory members,
        address _signer,
        address newProxyRegistryAddress
    ) ERC721("BattleGrowlies", "BG") {
        _baseTokenURI = baseURI;
        _members = members;
        signer = _signer;
        proxyRegistryAddress = newProxyRegistryAddress;

        // reserved premint for the team and giveways
        uint256 reserved = 375;

        for (uint256 i = 1; i <= reserved; i++) {
            _safeMint(msg.sender, totalSupply + i);
        }

        emit NewGrowlie(msg.sender, reserved, true);
        totalSupply += reserved;
    }

    function mint(uint256 quantityToMint) external payable {
        require(!isPaused, "Sale paused");
        require(isPublicSale, "Not public sale");
        require(totalSupply < MAX_SUPPLY, "Sold out");

        require(
            quantityToMint > 0 && quantityToMint <= PUBLIC_MAX_MINT,
            "Max per purchase exceed"
        );

        require(
            totalSupply + quantityToMint <= MAX_SUPPLY,
            "Exceed max supply"
        );
        require(msg.value >= publicPrice * quantityToMint, "Insufficient ETH");

        for (uint256 i = 1; i <= quantityToMint; i++) {
            _safeMint(msg.sender, totalSupply + i);
        }

        totalSupply += quantityToMint;
        emit NewGrowlie(msg.sender, quantityToMint, false);
    }

    function mintPresale(
        uint256 quantityToMint,
        bool isFreeMint,
        string memory nonce,
        bytes memory signature
    ) external payable {
        require(!isPaused, "Sale paused");
        require(!isPublicSale, "Presale already ended");
        require(quantityToMint > 0, "Quantity must be greater 0");
        require(totalSupply < MAX_SUPPLY, "Sold out");

        if (isFreeMint) {
            require(
                !_freeClaimQtyMintedByGrowlie[msg.sender],
                "Already freeminted"
            );
            require(quantityToMint == 1, "Only 1 freemint");
        } else {
            require(quantityToMint <= WL_MAX_MINT, "Max per purchase exceed");
            require(
                _wlQtyMintedByGrowlie[msg.sender] + quantityToMint <=
                    WL_MAX_MINT,
                "Exceed max wl mints"
            );
            require(
                totalSupply + quantityToMint <= MAX_SUPPLY,
                "Exceed max supply"
            );
            require(msg.value >= presalePrice * quantityToMint, "Insufficient ETH");
        }

        require(!_isNonceUsed[nonce], "Used nonce");
        address signerAddress = _verifySign(
            msg.sender,
            quantityToMint,
            isFreeMint,
            nonce,
            signature
        );
        require(signerAddress == signer, "Not authorized");

        for (uint256 i = 1; i <= quantityToMint; i++) {
            _safeMint(msg.sender, totalSupply + i);
        }
        totalSupply += quantityToMint;
        _isNonceUsed[nonce] = true;

        if (isFreeMint) {
            _freeClaimQtyMintedByGrowlie[msg.sender] = true;
        } else {
            _wlQtyMintedByGrowlie[msg.sender] += quantityToMint;
        }
        emit NewGrowlie(msg.sender, quantityToMint, isFreeMint);
    }

    function _verifySign(
        address growlieAddress,
        uint256 quantityToMint,
        bool isFreeMint,
        string memory nonce,
        bytes memory signature
    ) internal pure returns (address) {
        return
            ECDSA.recover(
                keccak256(
                    abi.encodePacked(
                        growlieAddress,
                        quantityToMint,
                        isFreeMint,
                        nonce
                    )
                ),
                signature
            );
    }

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

    function getWlQtyMintedByGrowlie(address growlieAddress)
        external
        view
        returns (uint256)
    {
        return _wlQtyMintedByGrowlie[growlieAddress];
    }

    function getFreeClaimQtyMintedByGrowlie(address growlieAddress)
        external
        view
        returns (bool)
    {
        return _freeClaimQtyMintedByGrowlie[growlieAddress];
    }

    function ownedBy(address owner) external view returns (uint256[] memory) {
        uint256 counter = 0;
        uint256[] memory tokenIds = new uint256[](balanceOf(owner));
        for (uint256 i = 0; i < totalSupply; i++) {
            if (ownerOf(i) == owner) {
                tokenIds[counter] = i;
                counter++;
            }
        }
        return tokenIds;
    }

    // Override isApprovedForAll to whitelist user's OpenSea proxy accounts to enable gas-less listings.
    function isApprovedForAll(address owner, address operator)
        public
        view
        override
        returns (bool)
    {
        // Whitelist OpenSea proxy contract for easy trading.
        ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress);
        if (address(proxyRegistry.proxies(owner)) == operator) {
            return true;
        }

        return super.isApprovedForAll(owner, operator);
    }

    //only Owner
    function setBaseURI(string memory newBaseURI) public onlyOwner {
        _baseTokenURI = newBaseURI;
    }

    function setPause(bool _isPaused) external onlyOwner {
        require(isPaused != _isPaused, "Cannot set same value");
        isPaused = _isPaused;
    }

    function setPublicSale(bool _isPublicSale) external onlyOwner {
        require(isPublicSale != _isPublicSale, "Cannot set same value");
        isPublicSale = _isPublicSale;
    }

    function setSigner(address _signer) external onlyOwner {
        require(signer != _signer, "Address already signer");
        signer = _signer;
    }

    function setProxy(address _proxyRegistryAddress) external onlyOwner {
        proxyRegistryAddress = _proxyRegistryAddress;
    }

    function withdraw(address to, uint256 amount) external onlyOwner {
        require(address(this).balance > 0, "Balance is zero");
        (bool success, ) = to.call{value: amount}("");
        require(success, "Transfer failed");
    }

    function withdrawAll() external onlyOwner {
        uint256 _totalBalance = address(this).balance;
        require(_totalBalance > 0, "Balance is zero");

        uint256 _amount = _totalBalance / _members.length;
        for (uint256 i = 0; i < _members.length; i++) {
            (bool success, ) = _members[i].call{value: _amount}("");
            require(success, "Transfer failed");
        }
    }
}

File 2 of 13 : ECDSA.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/ECDSA.sol)

pragma solidity ^0.8.0;

import "../Strings.sol";

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff);
        uint8 v = uint8((uint256(vs) >> 255) + 27);
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 3 of 13 : SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 4 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 5 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_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);

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(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 Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 6 of 13 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

File 7 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

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 8 of 13 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 9 of 13 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 10 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

File 11 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 12 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

File 13 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"address[]","name":"members","type":"address[]"},{"internalType":"address","name":"_signer","type":"address"},{"internalType":"address","name":"newProxyRegistryAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"growlieAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"count","type":"uint256"},{"indexed":false,"internalType":"bool","name":"isFreeMint","type":"bool"}],"name":"NewGrowlie","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Received","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":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"growlieAddress","type":"address"}],"name":"getFreeClaimQtyMintedByGrowlie","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"growlieAddress","type":"address"}],"name":"getWlQtyMintedByGrowlie","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantityToMint","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantityToMint","type":"uint256"},{"internalType":"bool","name":"isFreeMint","type":"bool"},{"internalType":"string","name":"nonce","type":"string"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"ownedBy","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPaused","type":"bool"}],"name":"setPause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"name":"setProxy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPublicSale","type":"bool"}],"name":"setPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signer","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6006805461ffff60a01b1916600160a01b17905560a06040819052600060808190526200002f91600791620005a5565b50600060085566f8b0a10e47000060095567013fbe85edc90000600a553480156200005957600080fd5b5060405162003735380380620037358339810160408190526200007c91620007cd565b604080518082018252600e81526d426174746c6547726f776c69657360901b602080830191825283518085019094526002845261424760f01b908401528151919291620000cc91600091620005a5565b508051620000e2906001906020840190620005a5565b505050620000ff620000f9620001fa60201b60201c565b620001fe565b835162000114906007906020870190620005a5565b5082516200012a90600d90602086019062000634565b50600c80546001600160a01b038085166001600160a01b031992831617909255600b80549284169290911691909117905561017760015b81811162000199576200018433826008546200017e9190620008ce565b62000250565b806200019081620008e9565b91505062000161565b50604080518281526001602082015233917f027932f656fff9a1eaea8561c748e25a7a1162532a177b79261bc01e0e64aca5910160405180910390a28060086000828254620001e99190620008ce565b90915550620009ca95505050505050565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620002728282604051806020016040528060008152506200027660201b60201c565b5050565b620002828383620002f2565b6200029160008484846200043a565b620002ed5760405162461bcd60e51b815260206004820152603260248201526000805160206200371583398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b60648201526084015b60405180910390fd5b505050565b6001600160a01b0382166200034a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401620002e4565b6000818152600260205260409020546001600160a01b031615620003b15760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401620002e4565b6001600160a01b0382166000908152600360205260408120805460019290620003dc908490620008ce565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006200045b846001600160a01b03166200059660201b620019ff1760201c565b156200058a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906200049590339089908890889060040162000905565b6020604051808303816000875af1925050508015620004d3575060408051601f3d908101601f19168201909252620004d0918101906200095b565b60015b6200056f573d80801562000504576040519150601f19603f3d011682016040523d82523d6000602084013e62000509565b606091505b508051600003620005675760405162461bcd60e51b815260206004820152603260248201526000805160206200371583398151915260448201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b6064820152608401620002e4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506200058e565b5060015b949350505050565b6001600160a01b03163b151590565b828054620005b3906200098e565b90600052602060002090601f016020900481019282620005d7576000855562000622565b82601f10620005f257805160ff191683800117855562000622565b8280016001018555821562000622579182015b828111156200062257825182559160200191906001019062000605565b50620006309291506200068c565b5090565b82805482825590600052602060002090810192821562000622579160200282015b828111156200062257825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062000655565b5b808211156200063057600081556001016200068d565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715620006e457620006e4620006a3565b604052919050565b60005b8381101562000709578181015183820152602001620006ef565b8381111562000719576000848401525b50505050565b80516001600160a01b03811681146200073757600080fd5b919050565b600082601f8301126200074e57600080fd5b815160206001600160401b038211156200076c576200076c620006a3565b8160051b6200077d828201620006b9565b92835284810182019282810190878511156200079857600080fd5b83870192505b84831015620007c257620007b2836200071f565b825291830191908301906200079e565b979650505050505050565b60008060008060808587031215620007e457600080fd5b84516001600160401b0380821115620007fc57600080fd5b818701915087601f8301126200081157600080fd5b815181811115620008265762000826620006a3565b6200083b601f8201601f1916602001620006b9565b8181528960208386010111156200085157600080fd5b62000864826020830160208701620006ec565b6020890151909750925050808211156200087d57600080fd5b506200088c878288016200073c565b9350506200089d604086016200071f565b9150620008ad606086016200071f565b905092959194509250565b634e487b7160e01b600052601160045260246000fd5b60008219821115620008e457620008e4620008b8565b500190565b600060018201620008fe57620008fe620008b8565b5060010190565b600060018060a01b038087168352808616602084015250836040830152608060608301528251806080840152620009448160a0850160208701620006ec565b601f01601f19169190910160a00195945050505050565b6000602082840312156200096e57600080fd5b81516001600160e01b0319811681146200098757600080fd5b9392505050565b600181811c90821680620009a357607f821691505b602082108103620009c457634e487b7160e01b600052602260045260246000fd5b50919050565b612d3b80620009da6000396000f3fe60806040526004361061020e5760003560e01c80638da5cb5b11610118578063b8377644116100a0578063cd7c03261161006f578063cd7c032614610618578063e985e9c514610638578063eb3ee58514610658578063f2fde38b1461066b578063f3fef3a31461068b57600080fd5b8063b83776441461058b578063b88d4fde146105b8578063bedb86fb146105d8578063c87b56dd146105f857600080fd5b8063a22cb465116100e7578063a22cb465146104da578063a5a865dc146104fa578063a945bf801461051b578063b187bd2614610531578063b3e61bd51461055257600080fd5b80638da5cb5b1461047457806395d89b411461049257806397107d6d146104a7578063a0712d68146104c757600080fd5b806342842e0e1161019b5780636c19e7831161016a5780636c19e783146103d457806370a08231146103f4578063715018a614610414578063853828b61461042957806387d0ba4c1461043e57600080fd5b806342842e0e1461035457806355f804b3146103745780635aca1bb6146103945780636352211e146103b457600080fd5b8063095ea7b3116101e2578063095ea7b3146102c657806318160ddd146102e8578063238ac933146102fe57806323b872dd1461031e57806332cb6b0c1461033e57600080fd5b80620e7fa81461021357806301ffc9a71461023c57806306fdde031461026c578063081812fc1461028e575b600080fd5b34801561021f57600080fd5b5061022960095481565b6040519081526020015b60405180910390f35b34801561024857600080fd5b5061025c610257366004612631565b6106ab565b6040519015158152602001610233565b34801561027857600080fd5b506102816106fd565b60405161023391906126a6565b34801561029a57600080fd5b506102ae6102a93660046126b9565b61078f565b6040516001600160a01b039091168152602001610233565b3480156102d257600080fd5b506102e66102e13660046126e7565b610829565b005b3480156102f457600080fd5b5061022960085481565b34801561030a57600080fd5b50600c546102ae906001600160a01b031681565b34801561032a57600080fd5b506102e6610339366004612713565b61093e565b34801561034a57600080fd5b5061022961271081565b34801561036057600080fd5b506102e661036f366004612713565b61096f565b34801561038057600080fd5b506102e661038f3660046127f7565b61098a565b3480156103a057600080fd5b506102e66103af366004612841565b6109cb565b3480156103c057600080fd5b506102ae6103cf3660046126b9565b610a6d565b3480156103e057600080fd5b506102e66103ef36600461285c565b610ae4565b34801561040057600080fd5b5061022961040f36600461285c565b610b86565b34801561042057600080fd5b506102e6610c0d565b34801561043557600080fd5b506102e6610c43565b34801561044a57600080fd5b5061022961045936600461285c565b6001600160a01b03166000908152600f602052604090205490565b34801561048057600080fd5b506006546001600160a01b03166102ae565b34801561049e57600080fd5b50610281610d90565b3480156104b357600080fd5b506102e66104c236600461285c565b610d9f565b6102e66104d53660046126b9565b610deb565b3480156104e657600080fd5b506102e66104f5366004612879565b61103f565b34801561050657600080fd5b5060065461025c90600160a81b900460ff1681565b34801561052757600080fd5b50610229600a5481565b34801561053d57600080fd5b5060065461025c90600160a01b900460ff1681565b34801561055e57600080fd5b5061025c61056d36600461285c565b6001600160a01b031660009081526010602052604090205460ff1690565b34801561059757600080fd5b506105ab6105a636600461285c565b61104a565b60405161023391906128ae565b3480156105c457600080fd5b506102e66105d33660046128f2565b611110565b3480156105e457600080fd5b506102e66105f3366004612841565b611148565b34801561060457600080fd5b506102816106133660046126b9565b6111ea565b34801561062457600080fd5b50600b546102ae906001600160a01b031681565b34801561064457600080fd5b5061025c61065336600461295e565b6112c5565b6102e6610666366004612997565b611385565b34801561067757600080fd5b506102e661068636600461285c565b611863565b34801561069757600080fd5b506102e66106a63660046126e7565b6118fe565b60006001600160e01b031982166380ac58cd60e01b14806106dc57506001600160e01b03198216635b5e139f60e01b145b806106f757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461070c90612a09565b80601f016020809104026020016040519081016040528092919081815260200182805461073890612a09565b80156107855780601f1061075a57610100808354040283529160200191610785565b820191906000526020600020905b81548152906001019060200180831161076857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661080d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061083482610a6d565b9050806001600160a01b0316836001600160a01b0316036108a15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610804565b336001600160a01b03821614806108bd57506108bd81336112c5565b61092f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610804565b6109398383611a0e565b505050565b6109483382611a7c565b6109645760405162461bcd60e51b815260040161080490612a43565b610939838383611b4b565b61093983838360405180602001604052806000815250611110565b6006546001600160a01b031633146109b45760405162461bcd60e51b815260040161080490612a94565b80516109c7906007906020840190612582565b5050565b6006546001600160a01b031633146109f55760405162461bcd60e51b815260040161080490612a94565b801515600660159054906101000a900460ff16151503610a4f5760405162461bcd60e51b815260206004820152601560248201527443616e6e6f74207365742073616d652076616c756560581b6044820152606401610804565b60068054911515600160a81b0260ff60a81b19909216919091179055565b6000818152600260205260408120546001600160a01b0316806106f75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610804565b6006546001600160a01b03163314610b0e5760405162461bcd60e51b815260040161080490612a94565b600c546001600160a01b03808316911603610b645760405162461bcd60e51b815260206004820152601660248201527520b2323932b9b99030b63932b0b23c9039b4b3b732b960511b6044820152606401610804565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038216610bf15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610804565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610c375760405162461bcd60e51b815260040161080490612a94565b610c416000611ce7565b565b6006546001600160a01b03163314610c6d5760405162461bcd60e51b815260040161080490612a94565b4780610cad5760405162461bcd60e51b815260206004820152600f60248201526e42616c616e6365206973207a65726f60881b6044820152606401610804565b600d54600090610cbd9083612af5565b905060005b600d54811015610939576000600d8281548110610ce157610ce1612b09565b60009182526020822001546040516001600160a01b039091169185919081818185875af1925050503d8060008114610d35576040519150601f19603f3d011682016040523d82523d6000602084013e610d3a565b606091505b5050905080610d7d5760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610804565b5080610d8881612b1f565b915050610cc2565b60606001805461070c90612a09565b6006546001600160a01b03163314610dc95760405162461bcd60e51b815260040161080490612a94565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b600654600160a01b900460ff1615610e335760405162461bcd60e51b815260206004820152600b60248201526a14d85b19481c185d5cd95960aa1b6044820152606401610804565b600654600160a81b900460ff16610e7e5760405162461bcd60e51b815260206004820152600f60248201526e4e6f74207075626c69632073616c6560881b6044820152606401610804565b61271060085410610ebc5760405162461bcd60e51b815260206004820152600860248201526714dbdb19081bdd5d60c21b6044820152606401610804565b600081118015610ecd5750600a8111155b610f135760405162461bcd60e51b815260206004820152601760248201527613585e081c195c881c1d5c98da185cd948195e18d95959604a1b6044820152606401610804565b61271081600854610f249190612b38565b1115610f665760405162461bcd60e51b8152602060048201526011602482015270457863656564206d617820737570706c7960781b6044820152606401610804565b80600a54610f749190612b50565b341015610fb65760405162461bcd60e51b815260206004820152601060248201526f092dce6eaccccd2c6d2cadce8408aa8960831b6044820152606401610804565b60015b818111610fe957610fd73382600854610fd29190612b38565b611d39565b80610fe181612b1f565b915050610fb9565b508060086000828254610ffc9190612b38565b9091555050604080518281526000602082015233917f027932f656fff9a1eaea8561c748e25a7a1162532a177b79261bc01e0e64aca5910160405180910390a250565b6109c7338383611d53565b606060008061105884610b86565b67ffffffffffffffff81111561107057611070612754565b604051908082528060200260200182016040528015611099578160200160208202803683370190505b50905060005b60085481101561110857846001600160a01b03166110bc82610a6d565b6001600160a01b0316036110f657808284815181106110dd576110dd612b09565b6020908102919091010152826110f281612b1f565b9350505b8061110081612b1f565b91505061109f565b509392505050565b61111a3383611a7c565b6111365760405162461bcd60e51b815260040161080490612a43565b61114284848484611e21565b50505050565b6006546001600160a01b031633146111725760405162461bcd60e51b815260040161080490612a94565b801515600660149054906101000a900460ff161515036111cc5760405162461bcd60e51b815260206004820152601560248201527443616e6e6f74207365742073616d652076616c756560581b6044820152606401610804565b60068054911515600160a01b0260ff60a01b19909216919091179055565b6000818152600260205260409020546060906001600160a01b03166112695760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610804565b6000611273611e54565b9050600081511161129357604051806020016040528060008152506112be565b8061129d84611e63565b6040516020016112ae929190612b6f565b6040516020818303038152906040525b9392505050565b600b5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c455279190602401602060405180830381865afa158015611317573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061133b9190612b9e565b6001600160a01b0316036113535760019150506106f7565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b600654600160a01b900460ff16156113cd5760405162461bcd60e51b815260206004820152600b60248201526a14d85b19481c185d5cd95960aa1b6044820152606401610804565b600654600160a81b900460ff161561141f5760405162461bcd60e51b8152602060048201526015602482015274141c995cd85b1948185b1c9958591e48195b991959605a1b6044820152606401610804565b6000841161146f5760405162461bcd60e51b815260206004820152601a60248201527f5175616e74697479206d757374206265206772656174657220300000000000006044820152606401610804565b612710600854106114ad5760405162461bcd60e51b815260206004820152600860248201526714dbdb19081bdd5d60c21b6044820152606401610804565b821561154f573360009081526010602052604090205460ff16156115085760405162461bcd60e51b8152602060048201526012602482015271105b1c9958591e48199c99595b5a5b9d195960721b6044820152606401610804565b8360011461154a5760405162461bcd60e51b815260206004820152600f60248201526e13db9b1e480c48199c99595b5a5b9d608a1b6044820152606401610804565b61169f565b600384111561159a5760405162461bcd60e51b815260206004820152601760248201527613585e081c195c881c1d5c98da185cd948195e18d95959604a1b6044820152606401610804565b336000908152600f60205260409020546003906115b8908690612b38565b11156115fc5760405162461bcd60e51b8152602060048201526013602482015272457863656564206d617820776c206d696e747360681b6044820152606401610804565b6127108460085461160d9190612b38565b111561164f5760405162461bcd60e51b8152602060048201526011602482015270457863656564206d617820737570706c7960781b6044820152606401610804565b8360095461165d9190612b50565b34101561169f5760405162461bcd60e51b815260206004820152601060248201526f092dce6eaccccd2c6d2cadce8408aa8960831b6044820152606401610804565b600e826040516116af9190612bbb565b9081526040519081900360200190205460ff16156116fc5760405162461bcd60e51b815260206004820152600a60248201526955736564206e6f6e636560b01b6044820152606401610804565b600061170b3386868686611f64565b600c549091506001600160a01b0380831691161461175c5760405162461bcd60e51b815260206004820152600e60248201526d139bdd08185d5d1a1bdc9a5e995960921b6044820152606401610804565b60015b85811161178a576117783382600854610fd29190612b38565b8061178281612b1f565b91505061175f565b50846008600082825461179d9190612b38565b925050819055506001600e846040516117b69190612bbb565b908152604051908190036020019020805491151560ff1990921691909117905583156117fb57336000908152601060205260409020805460ff19166001179055611820565b336000908152600f60205260408120805487929061181a908490612b38565b90915550505b60408051868152851515602082015233917f027932f656fff9a1eaea8561c748e25a7a1162532a177b79261bc01e0e64aca5910160405180910390a25050505050565b6006546001600160a01b0316331461188d5760405162461bcd60e51b815260040161080490612a94565b6001600160a01b0381166118f25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610804565b6118fb81611ce7565b50565b6006546001600160a01b031633146119285760405162461bcd60e51b815260040161080490612a94565b6000471161196a5760405162461bcd60e51b815260206004820152600f60248201526e42616c616e6365206973207a65726f60881b6044820152606401610804565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146119b7576040519150601f19603f3d011682016040523d82523d6000602084013e6119bc565b606091505b50509050806109395760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610804565b6001600160a01b03163b151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a4382610a6d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611af55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610804565b6000611b0083610a6d565b9050806001600160a01b0316846001600160a01b03161480611b3b5750836001600160a01b0316611b308461078f565b6001600160a01b0316145b8061137d575061137d81856112c5565b826001600160a01b0316611b5e82610a6d565b6001600160a01b031614611bc25760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610804565b6001600160a01b038216611c245760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610804565b611c2f600082611a0e565b6001600160a01b0383166000908152600360205260408120805460019290611c58908490612bd7565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c86908490612b38565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6109c7828260405180602001604052806000815250611fa6565b816001600160a01b0316836001600160a01b031603611db45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610804565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611e2c848484611b4b565b611e3884848484611fd9565b6111425760405162461bcd60e51b815260040161080490612bee565b60606007805461070c90612a09565b606081600003611e8a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611eb45780611e9e81612b1f565b9150611ead9050600a83612af5565b9150611e8e565b60008167ffffffffffffffff811115611ecf57611ecf612754565b6040519080825280601f01601f191660200182016040528015611ef9576020820181803683370190505b5090505b841561137d57611f0e600183612bd7565b9150611f1b600a86612c40565b611f26906030612b38565b60f81b818381518110611f3b57611f3b612b09565b60200101906001600160f81b031916908160001a905350611f5d600a86612af5565b9450611efd565b6000611f9c86868686604051602001611f809493929190612c54565b60405160208183030381529060405280519060200120836120da565b9695505050505050565b611fb083836120f6565b611fbd6000848484611fd9565b6109395760405162461bcd60e51b815260040161080490612bee565b60006001600160a01b0384163b156120cf57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061201d903390899088908890600401612c9f565b6020604051808303816000875af1925050508015612058575060408051601f3d908101601f1916820190925261205591810190612cd2565b60015b6120b5573d808015612086576040519150601f19603f3d011682016040523d82523d6000602084013e61208b565b606091505b5080516000036120ad5760405162461bcd60e51b815260040161080490612bee565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061137d565b506001949350505050565b60008060006120e98585612238565b91509150611108816122a6565b6001600160a01b03821661214c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610804565b6000818152600260205260409020546001600160a01b0316156121b15760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610804565b6001600160a01b03821660009081526003602052604081208054600192906121da908490612b38565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600080825160410361226e5760208301516040840151606085015160001a6122628782858561245c565b9450945050505061229f565b8251604003612297576020830151604084015161228c868383612549565b93509350505061229f565b506000905060025b9250929050565b60008160048111156122ba576122ba612cef565b036122c25750565b60018160048111156122d6576122d6612cef565b036123235760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610804565b600281600481111561233757612337612cef565b036123845760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610804565b600381600481111561239857612398612cef565b036123f05760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610804565b600481600481111561240457612404612cef565b036118fb5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610804565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156124935750600090506003612540565b8460ff16601b141580156124ab57508460ff16601c14155b156124bc5750600090506004612540565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612510573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661253957600060019250925050612540565b9150600090505b94509492505050565b6000806001600160ff1b0383168161256660ff86901c601b612b38565b90506125748782888561245c565b935093505050935093915050565b82805461258e90612a09565b90600052602060002090601f0160209004810192826125b057600085556125f6565b82601f106125c957805160ff19168380011785556125f6565b828001600101855582156125f6579182015b828111156125f65782518255916020019190600101906125db565b50612602929150612606565b5090565b5b808211156126025760008155600101612607565b6001600160e01b0319811681146118fb57600080fd5b60006020828403121561264357600080fd5b81356112be8161261b565b60005b83811015612669578181015183820152602001612651565b838111156111425750506000910152565b6000815180845261269281602086016020860161264e565b601f01601f19169290920160200192915050565b6020815260006112be602083018461267a565b6000602082840312156126cb57600080fd5b5035919050565b6001600160a01b03811681146118fb57600080fd5b600080604083850312156126fa57600080fd5b8235612705816126d2565b946020939093013593505050565b60008060006060848603121561272857600080fd5b8335612733816126d2565b92506020840135612743816126d2565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b600082601f83011261277b57600080fd5b813567ffffffffffffffff8082111561279657612796612754565b604051601f8301601f19908116603f011681019082821181831017156127be576127be612754565b816040528381528660208588010111156127d757600080fd5b836020870160208301376000602085830101528094505050505092915050565b60006020828403121561280957600080fd5b813567ffffffffffffffff81111561282057600080fd5b61137d8482850161276a565b8035801515811461283c57600080fd5b919050565b60006020828403121561285357600080fd5b6112be8261282c565b60006020828403121561286e57600080fd5b81356112be816126d2565b6000806040838503121561288c57600080fd5b8235612897816126d2565b91506128a56020840161282c565b90509250929050565b6020808252825182820181905260009190848201906040850190845b818110156128e6578351835292840192918401916001016128ca565b50909695505050505050565b6000806000806080858703121561290857600080fd5b8435612913816126d2565b93506020850135612923816126d2565b925060408501359150606085013567ffffffffffffffff81111561294657600080fd5b6129528782880161276a565b91505092959194509250565b6000806040838503121561297157600080fd5b823561297c816126d2565b9150602083013561298c816126d2565b809150509250929050565b600080600080608085870312156129ad57600080fd5b843593506129bd6020860161282c565b9250604085013567ffffffffffffffff808211156129da57600080fd5b6129e68883890161276a565b935060608701359150808211156129fc57600080fd5b506129528782880161276a565b600181811c90821680612a1d57607f821691505b602082108103612a3d57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082612b0457612b04612ac9565b500490565b634e487b7160e01b600052603260045260246000fd5b600060018201612b3157612b31612adf565b5060010190565b60008219821115612b4b57612b4b612adf565b500190565b6000816000190483118215151615612b6a57612b6a612adf565b500290565b60008351612b8181846020880161264e565b835190830190612b9581836020880161264e565b01949350505050565b600060208284031215612bb057600080fd5b81516112be816126d2565b60008251612bcd81846020870161264e565b9190910192915050565b600082821015612be957612be9612adf565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612c4f57612c4f612ac9565b500690565b6bffffffffffffffffffffffff198560601b16815283601482015282151560f81b603482015260008251612c8f81603585016020870161264e565b9190910160350195945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f9c9083018461267a565b600060208284031215612ce457600080fd5b81516112be8161261b565b634e487b7160e01b600052602160045260246000fdfea264697066735822122036e1f312032cf279b8a2ca6cd2f9726862e5a0dcbff4b781470ec845cbca276464736f6c634300080d00334552433732313a207472616e7366657220746f206e6f6e204552433732315265000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000031bcfcc2f1130eee173dbdecea56bf8c03a4a8770000000000000000000000009264c1a30e90420f63836b451d8978dd28f7ce8f000000000000000000000000000000000000000000000000000000000000002f68747470733a2f2f6261636b656e642e626174746c6567726f776c6965732e636f6d2f6170692f6c6f6f74626f782f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000da36a09aac70b405b10a40f87a31d6647aeb20a900000000000000000000000021dd8878ff1053ce28794799be588798d87fd5560000000000000000000000007e3169dddc0f9dcc19138957f3df5e66f695e593000000000000000000000000f9f4ba2ac9e36554db8057a4892da57f83ac9dec

Deployed Bytecode

0x60806040526004361061020e5760003560e01c80638da5cb5b11610118578063b8377644116100a0578063cd7c03261161006f578063cd7c032614610618578063e985e9c514610638578063eb3ee58514610658578063f2fde38b1461066b578063f3fef3a31461068b57600080fd5b8063b83776441461058b578063b88d4fde146105b8578063bedb86fb146105d8578063c87b56dd146105f857600080fd5b8063a22cb465116100e7578063a22cb465146104da578063a5a865dc146104fa578063a945bf801461051b578063b187bd2614610531578063b3e61bd51461055257600080fd5b80638da5cb5b1461047457806395d89b411461049257806397107d6d146104a7578063a0712d68146104c757600080fd5b806342842e0e1161019b5780636c19e7831161016a5780636c19e783146103d457806370a08231146103f4578063715018a614610414578063853828b61461042957806387d0ba4c1461043e57600080fd5b806342842e0e1461035457806355f804b3146103745780635aca1bb6146103945780636352211e146103b457600080fd5b8063095ea7b3116101e2578063095ea7b3146102c657806318160ddd146102e8578063238ac933146102fe57806323b872dd1461031e57806332cb6b0c1461033e57600080fd5b80620e7fa81461021357806301ffc9a71461023c57806306fdde031461026c578063081812fc1461028e575b600080fd5b34801561021f57600080fd5b5061022960095481565b6040519081526020015b60405180910390f35b34801561024857600080fd5b5061025c610257366004612631565b6106ab565b6040519015158152602001610233565b34801561027857600080fd5b506102816106fd565b60405161023391906126a6565b34801561029a57600080fd5b506102ae6102a93660046126b9565b61078f565b6040516001600160a01b039091168152602001610233565b3480156102d257600080fd5b506102e66102e13660046126e7565b610829565b005b3480156102f457600080fd5b5061022960085481565b34801561030a57600080fd5b50600c546102ae906001600160a01b031681565b34801561032a57600080fd5b506102e6610339366004612713565b61093e565b34801561034a57600080fd5b5061022961271081565b34801561036057600080fd5b506102e661036f366004612713565b61096f565b34801561038057600080fd5b506102e661038f3660046127f7565b61098a565b3480156103a057600080fd5b506102e66103af366004612841565b6109cb565b3480156103c057600080fd5b506102ae6103cf3660046126b9565b610a6d565b3480156103e057600080fd5b506102e66103ef36600461285c565b610ae4565b34801561040057600080fd5b5061022961040f36600461285c565b610b86565b34801561042057600080fd5b506102e6610c0d565b34801561043557600080fd5b506102e6610c43565b34801561044a57600080fd5b5061022961045936600461285c565b6001600160a01b03166000908152600f602052604090205490565b34801561048057600080fd5b506006546001600160a01b03166102ae565b34801561049e57600080fd5b50610281610d90565b3480156104b357600080fd5b506102e66104c236600461285c565b610d9f565b6102e66104d53660046126b9565b610deb565b3480156104e657600080fd5b506102e66104f5366004612879565b61103f565b34801561050657600080fd5b5060065461025c90600160a81b900460ff1681565b34801561052757600080fd5b50610229600a5481565b34801561053d57600080fd5b5060065461025c90600160a01b900460ff1681565b34801561055e57600080fd5b5061025c61056d36600461285c565b6001600160a01b031660009081526010602052604090205460ff1690565b34801561059757600080fd5b506105ab6105a636600461285c565b61104a565b60405161023391906128ae565b3480156105c457600080fd5b506102e66105d33660046128f2565b611110565b3480156105e457600080fd5b506102e66105f3366004612841565b611148565b34801561060457600080fd5b506102816106133660046126b9565b6111ea565b34801561062457600080fd5b50600b546102ae906001600160a01b031681565b34801561064457600080fd5b5061025c61065336600461295e565b6112c5565b6102e6610666366004612997565b611385565b34801561067757600080fd5b506102e661068636600461285c565b611863565b34801561069757600080fd5b506102e66106a63660046126e7565b6118fe565b60006001600160e01b031982166380ac58cd60e01b14806106dc57506001600160e01b03198216635b5e139f60e01b145b806106f757506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461070c90612a09565b80601f016020809104026020016040519081016040528092919081815260200182805461073890612a09565b80156107855780601f1061075a57610100808354040283529160200191610785565b820191906000526020600020905b81548152906001019060200180831161076857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661080d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061083482610a6d565b9050806001600160a01b0316836001600160a01b0316036108a15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610804565b336001600160a01b03821614806108bd57506108bd81336112c5565b61092f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610804565b6109398383611a0e565b505050565b6109483382611a7c565b6109645760405162461bcd60e51b815260040161080490612a43565b610939838383611b4b565b61093983838360405180602001604052806000815250611110565b6006546001600160a01b031633146109b45760405162461bcd60e51b815260040161080490612a94565b80516109c7906007906020840190612582565b5050565b6006546001600160a01b031633146109f55760405162461bcd60e51b815260040161080490612a94565b801515600660159054906101000a900460ff16151503610a4f5760405162461bcd60e51b815260206004820152601560248201527443616e6e6f74207365742073616d652076616c756560581b6044820152606401610804565b60068054911515600160a81b0260ff60a81b19909216919091179055565b6000818152600260205260408120546001600160a01b0316806106f75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610804565b6006546001600160a01b03163314610b0e5760405162461bcd60e51b815260040161080490612a94565b600c546001600160a01b03808316911603610b645760405162461bcd60e51b815260206004820152601660248201527520b2323932b9b99030b63932b0b23c9039b4b3b732b960511b6044820152606401610804565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038216610bf15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610804565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610c375760405162461bcd60e51b815260040161080490612a94565b610c416000611ce7565b565b6006546001600160a01b03163314610c6d5760405162461bcd60e51b815260040161080490612a94565b4780610cad5760405162461bcd60e51b815260206004820152600f60248201526e42616c616e6365206973207a65726f60881b6044820152606401610804565b600d54600090610cbd9083612af5565b905060005b600d54811015610939576000600d8281548110610ce157610ce1612b09565b60009182526020822001546040516001600160a01b039091169185919081818185875af1925050503d8060008114610d35576040519150601f19603f3d011682016040523d82523d6000602084013e610d3a565b606091505b5050905080610d7d5760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610804565b5080610d8881612b1f565b915050610cc2565b60606001805461070c90612a09565b6006546001600160a01b03163314610dc95760405162461bcd60e51b815260040161080490612a94565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b600654600160a01b900460ff1615610e335760405162461bcd60e51b815260206004820152600b60248201526a14d85b19481c185d5cd95960aa1b6044820152606401610804565b600654600160a81b900460ff16610e7e5760405162461bcd60e51b815260206004820152600f60248201526e4e6f74207075626c69632073616c6560881b6044820152606401610804565b61271060085410610ebc5760405162461bcd60e51b815260206004820152600860248201526714dbdb19081bdd5d60c21b6044820152606401610804565b600081118015610ecd5750600a8111155b610f135760405162461bcd60e51b815260206004820152601760248201527613585e081c195c881c1d5c98da185cd948195e18d95959604a1b6044820152606401610804565b61271081600854610f249190612b38565b1115610f665760405162461bcd60e51b8152602060048201526011602482015270457863656564206d617820737570706c7960781b6044820152606401610804565b80600a54610f749190612b50565b341015610fb65760405162461bcd60e51b815260206004820152601060248201526f092dce6eaccccd2c6d2cadce8408aa8960831b6044820152606401610804565b60015b818111610fe957610fd73382600854610fd29190612b38565b611d39565b80610fe181612b1f565b915050610fb9565b508060086000828254610ffc9190612b38565b9091555050604080518281526000602082015233917f027932f656fff9a1eaea8561c748e25a7a1162532a177b79261bc01e0e64aca5910160405180910390a250565b6109c7338383611d53565b606060008061105884610b86565b67ffffffffffffffff81111561107057611070612754565b604051908082528060200260200182016040528015611099578160200160208202803683370190505b50905060005b60085481101561110857846001600160a01b03166110bc82610a6d565b6001600160a01b0316036110f657808284815181106110dd576110dd612b09565b6020908102919091010152826110f281612b1f565b9350505b8061110081612b1f565b91505061109f565b509392505050565b61111a3383611a7c565b6111365760405162461bcd60e51b815260040161080490612a43565b61114284848484611e21565b50505050565b6006546001600160a01b031633146111725760405162461bcd60e51b815260040161080490612a94565b801515600660149054906101000a900460ff161515036111cc5760405162461bcd60e51b815260206004820152601560248201527443616e6e6f74207365742073616d652076616c756560581b6044820152606401610804565b60068054911515600160a01b0260ff60a01b19909216919091179055565b6000818152600260205260409020546060906001600160a01b03166112695760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610804565b6000611273611e54565b9050600081511161129357604051806020016040528060008152506112be565b8061129d84611e63565b6040516020016112ae929190612b6f565b6040516020818303038152906040525b9392505050565b600b5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c455279190602401602060405180830381865afa158015611317573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061133b9190612b9e565b6001600160a01b0316036113535760019150506106f7565b6001600160a01b0380851660009081526005602090815260408083209387168352929052205460ff165b949350505050565b600654600160a01b900460ff16156113cd5760405162461bcd60e51b815260206004820152600b60248201526a14d85b19481c185d5cd95960aa1b6044820152606401610804565b600654600160a81b900460ff161561141f5760405162461bcd60e51b8152602060048201526015602482015274141c995cd85b1948185b1c9958591e48195b991959605a1b6044820152606401610804565b6000841161146f5760405162461bcd60e51b815260206004820152601a60248201527f5175616e74697479206d757374206265206772656174657220300000000000006044820152606401610804565b612710600854106114ad5760405162461bcd60e51b815260206004820152600860248201526714dbdb19081bdd5d60c21b6044820152606401610804565b821561154f573360009081526010602052604090205460ff16156115085760405162461bcd60e51b8152602060048201526012602482015271105b1c9958591e48199c99595b5a5b9d195960721b6044820152606401610804565b8360011461154a5760405162461bcd60e51b815260206004820152600f60248201526e13db9b1e480c48199c99595b5a5b9d608a1b6044820152606401610804565b61169f565b600384111561159a5760405162461bcd60e51b815260206004820152601760248201527613585e081c195c881c1d5c98da185cd948195e18d95959604a1b6044820152606401610804565b336000908152600f60205260409020546003906115b8908690612b38565b11156115fc5760405162461bcd60e51b8152602060048201526013602482015272457863656564206d617820776c206d696e747360681b6044820152606401610804565b6127108460085461160d9190612b38565b111561164f5760405162461bcd60e51b8152602060048201526011602482015270457863656564206d617820737570706c7960781b6044820152606401610804565b8360095461165d9190612b50565b34101561169f5760405162461bcd60e51b815260206004820152601060248201526f092dce6eaccccd2c6d2cadce8408aa8960831b6044820152606401610804565b600e826040516116af9190612bbb565b9081526040519081900360200190205460ff16156116fc5760405162461bcd60e51b815260206004820152600a60248201526955736564206e6f6e636560b01b6044820152606401610804565b600061170b3386868686611f64565b600c549091506001600160a01b0380831691161461175c5760405162461bcd60e51b815260206004820152600e60248201526d139bdd08185d5d1a1bdc9a5e995960921b6044820152606401610804565b60015b85811161178a576117783382600854610fd29190612b38565b8061178281612b1f565b91505061175f565b50846008600082825461179d9190612b38565b925050819055506001600e846040516117b69190612bbb565b908152604051908190036020019020805491151560ff1990921691909117905583156117fb57336000908152601060205260409020805460ff19166001179055611820565b336000908152600f60205260408120805487929061181a908490612b38565b90915550505b60408051868152851515602082015233917f027932f656fff9a1eaea8561c748e25a7a1162532a177b79261bc01e0e64aca5910160405180910390a25050505050565b6006546001600160a01b0316331461188d5760405162461bcd60e51b815260040161080490612a94565b6001600160a01b0381166118f25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610804565b6118fb81611ce7565b50565b6006546001600160a01b031633146119285760405162461bcd60e51b815260040161080490612a94565b6000471161196a5760405162461bcd60e51b815260206004820152600f60248201526e42616c616e6365206973207a65726f60881b6044820152606401610804565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146119b7576040519150601f19603f3d011682016040523d82523d6000602084013e6119bc565b606091505b50509050806109395760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610804565b6001600160a01b03163b151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611a4382610a6d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611af55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610804565b6000611b0083610a6d565b9050806001600160a01b0316846001600160a01b03161480611b3b5750836001600160a01b0316611b308461078f565b6001600160a01b0316145b8061137d575061137d81856112c5565b826001600160a01b0316611b5e82610a6d565b6001600160a01b031614611bc25760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610804565b6001600160a01b038216611c245760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610804565b611c2f600082611a0e565b6001600160a01b0383166000908152600360205260408120805460019290611c58908490612bd7565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c86908490612b38565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6109c7828260405180602001604052806000815250611fa6565b816001600160a01b0316836001600160a01b031603611db45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610804565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611e2c848484611b4b565b611e3884848484611fd9565b6111425760405162461bcd60e51b815260040161080490612bee565b60606007805461070c90612a09565b606081600003611e8a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611eb45780611e9e81612b1f565b9150611ead9050600a83612af5565b9150611e8e565b60008167ffffffffffffffff811115611ecf57611ecf612754565b6040519080825280601f01601f191660200182016040528015611ef9576020820181803683370190505b5090505b841561137d57611f0e600183612bd7565b9150611f1b600a86612c40565b611f26906030612b38565b60f81b818381518110611f3b57611f3b612b09565b60200101906001600160f81b031916908160001a905350611f5d600a86612af5565b9450611efd565b6000611f9c86868686604051602001611f809493929190612c54565b60405160208183030381529060405280519060200120836120da565b9695505050505050565b611fb083836120f6565b611fbd6000848484611fd9565b6109395760405162461bcd60e51b815260040161080490612bee565b60006001600160a01b0384163b156120cf57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061201d903390899088908890600401612c9f565b6020604051808303816000875af1925050508015612058575060408051601f3d908101601f1916820190925261205591810190612cd2565b60015b6120b5573d808015612086576040519150601f19603f3d011682016040523d82523d6000602084013e61208b565b606091505b5080516000036120ad5760405162461bcd60e51b815260040161080490612bee565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061137d565b506001949350505050565b60008060006120e98585612238565b91509150611108816122a6565b6001600160a01b03821661214c5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610804565b6000818152600260205260409020546001600160a01b0316156121b15760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610804565b6001600160a01b03821660009081526003602052604081208054600192906121da908490612b38565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600080825160410361226e5760208301516040840151606085015160001a6122628782858561245c565b9450945050505061229f565b8251604003612297576020830151604084015161228c868383612549565b93509350505061229f565b506000905060025b9250929050565b60008160048111156122ba576122ba612cef565b036122c25750565b60018160048111156122d6576122d6612cef565b036123235760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610804565b600281600481111561233757612337612cef565b036123845760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610804565b600381600481111561239857612398612cef565b036123f05760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610804565b600481600481111561240457612404612cef565b036118fb5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610804565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156124935750600090506003612540565b8460ff16601b141580156124ab57508460ff16601c14155b156124bc5750600090506004612540565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612510573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661253957600060019250925050612540565b9150600090505b94509492505050565b6000806001600160ff1b0383168161256660ff86901c601b612b38565b90506125748782888561245c565b935093505050935093915050565b82805461258e90612a09565b90600052602060002090601f0160209004810192826125b057600085556125f6565b82601f106125c957805160ff19168380011785556125f6565b828001600101855582156125f6579182015b828111156125f65782518255916020019190600101906125db565b50612602929150612606565b5090565b5b808211156126025760008155600101612607565b6001600160e01b0319811681146118fb57600080fd5b60006020828403121561264357600080fd5b81356112be8161261b565b60005b83811015612669578181015183820152602001612651565b838111156111425750506000910152565b6000815180845261269281602086016020860161264e565b601f01601f19169290920160200192915050565b6020815260006112be602083018461267a565b6000602082840312156126cb57600080fd5b5035919050565b6001600160a01b03811681146118fb57600080fd5b600080604083850312156126fa57600080fd5b8235612705816126d2565b946020939093013593505050565b60008060006060848603121561272857600080fd5b8335612733816126d2565b92506020840135612743816126d2565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b600082601f83011261277b57600080fd5b813567ffffffffffffffff8082111561279657612796612754565b604051601f8301601f19908116603f011681019082821181831017156127be576127be612754565b816040528381528660208588010111156127d757600080fd5b836020870160208301376000602085830101528094505050505092915050565b60006020828403121561280957600080fd5b813567ffffffffffffffff81111561282057600080fd5b61137d8482850161276a565b8035801515811461283c57600080fd5b919050565b60006020828403121561285357600080fd5b6112be8261282c565b60006020828403121561286e57600080fd5b81356112be816126d2565b6000806040838503121561288c57600080fd5b8235612897816126d2565b91506128a56020840161282c565b90509250929050565b6020808252825182820181905260009190848201906040850190845b818110156128e6578351835292840192918401916001016128ca565b50909695505050505050565b6000806000806080858703121561290857600080fd5b8435612913816126d2565b93506020850135612923816126d2565b925060408501359150606085013567ffffffffffffffff81111561294657600080fd5b6129528782880161276a565b91505092959194509250565b6000806040838503121561297157600080fd5b823561297c816126d2565b9150602083013561298c816126d2565b809150509250929050565b600080600080608085870312156129ad57600080fd5b843593506129bd6020860161282c565b9250604085013567ffffffffffffffff808211156129da57600080fd5b6129e68883890161276a565b935060608701359150808211156129fc57600080fd5b506129528782880161276a565b600181811c90821680612a1d57607f821691505b602082108103612a3d57634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600082612b0457612b04612ac9565b500490565b634e487b7160e01b600052603260045260246000fd5b600060018201612b3157612b31612adf565b5060010190565b60008219821115612b4b57612b4b612adf565b500190565b6000816000190483118215151615612b6a57612b6a612adf565b500290565b60008351612b8181846020880161264e565b835190830190612b9581836020880161264e565b01949350505050565b600060208284031215612bb057600080fd5b81516112be816126d2565b60008251612bcd81846020870161264e565b9190910192915050565b600082821015612be957612be9612adf565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b600082612c4f57612c4f612ac9565b500690565b6bffffffffffffffffffffffff198560601b16815283601482015282151560f81b603482015260008251612c8f81603585016020870161264e565b9190910160350195945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611f9c9083018461267a565b600060208284031215612ce457600080fd5b81516112be8161261b565b634e487b7160e01b600052602160045260246000fdfea264697066735822122036e1f312032cf279b8a2ca6cd2f9726862e5a0dcbff4b781470ec845cbca276464736f6c634300080d0033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000031bcfcc2f1130eee173dbdecea56bf8c03a4a8770000000000000000000000009264c1a30e90420f63836b451d8978dd28f7ce8f000000000000000000000000000000000000000000000000000000000000002f68747470733a2f2f6261636b656e642e626174746c6567726f776c6965732e636f6d2f6170692f6c6f6f74626f782f00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004000000000000000000000000da36a09aac70b405b10a40f87a31d6647aeb20a900000000000000000000000021dd8878ff1053ce28794799be588798d87fd5560000000000000000000000007e3169dddc0f9dcc19138957f3df5e66f695e593000000000000000000000000f9f4ba2ac9e36554db8057a4892da57f83ac9dec

-----Decoded View---------------
Arg [0] : baseURI (string): https://backend.battlegrowlies.com/api/lootbox/
Arg [1] : members (address[]): 0xdA36A09AaC70b405b10a40f87a31d6647AeB20A9,0x21dD8878ff1053ce28794799bE588798D87FD556,0x7E3169dddc0F9Dcc19138957F3df5E66f695E593,0xF9f4BA2ac9e36554DB8057A4892dA57f83AC9deC
Arg [2] : _signer (address): 0x31bcFCc2f1130eee173DbDEceA56bF8C03A4A877
Arg [3] : newProxyRegistryAddress (address): 0x9264C1A30E90420F63836B451d8978dD28f7CE8f

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 00000000000000000000000031bcfcc2f1130eee173dbdecea56bf8c03a4a877
Arg [3] : 0000000000000000000000009264c1a30e90420f63836b451d8978dd28f7ce8f
Arg [4] : 000000000000000000000000000000000000000000000000000000000000002f
Arg [5] : 68747470733a2f2f6261636b656e642e626174746c6567726f776c6965732e63
Arg [6] : 6f6d2f6170692f6c6f6f74626f782f0000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [8] : 000000000000000000000000da36a09aac70b405b10a40f87a31d6647aeb20a9
Arg [9] : 00000000000000000000000021dd8878ff1053ce28794799be588798d87fd556
Arg [10] : 0000000000000000000000007e3169dddc0f9dcc19138957f3df5e66f695e593
Arg [11] : 000000000000000000000000f9f4ba2ac9e36554db8057a4892da57f83ac9dec


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.