ETH Price: $2,669.86 (+1.88%)

Token

Visions of Flight (VFLT)
 

Overview

Max Total Supply

486 VFLT

Holders

392

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
megaboast.eth
Balance
1 VFLT
0xd4ca6131c07dd899decf03f1e0739b369422db7b
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

MINT IS LIVE --- Visit ducksofafeather.xyz --- Join the flock! ---- Division Street and its Ducks of a Feather platform present Visions of Flight, 7200 one-of-a-kind NFTs will be minted to financially benefit participating University of Oregon women student-athletes. Each of t...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
VisionsOfFlight

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 1000 runs

Other Settings:
default evmVersion, MIT license
File 1 of 17 : VisionsOfFlight.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/utils/math/Math.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";

contract VisionsOfFlight is ERC721, Ownable, Pausable {
    using Strings for uint256;

    event TokenMinted (
        address recipient,
        uint256 tokenId
    );

    uint NEXT_TOKEN_ID = 1;
    uint MAX_TOKEN_ID = 7200;

    uint8 MAX_MINTS = 10;
    uint8 MAX_TXS_PER_WALLET = 5;
    mapping (address => uint) txsPerWallet;

    // 0.1 ETH MINT PRICE
    uint MINT_PRICE = 12e16;

    mapping (address => uint) numVouchers;
    mapping (address => bool) claimedPOAPVoucher;
    uint public claimOpensAt;
    uint public saleStartsAt;
    uint public saleEndsAt;
    string baseURI;
   
    bytes32 public merkleRoot;

    address payable divisionStWallet;
    address payable athletesWallet;

    uint8 divisionStShare = 25;

    constructor(
        string memory metadataBaseURI,
        address payable _divisionStWallet,
        address payable _athletesWallet,
        uint _claimOpensAt,
        uint _saleStartsAt,
        uint _saleEndsAt,
        address[] memory athletePremints, 
        address[] memory ffTokenHolders, 
        address[] memory singleVoucherTokenHolders,
        bytes32 _merkleRoot
    ) ERC721("Visions of Flight", "VFLT") {
        divisionStWallet = _divisionStWallet;
        athletesWallet = _athletesWallet;

        claimOpensAt = _claimOpensAt;
        saleStartsAt = _saleStartsAt;
        saleEndsAt = _saleEndsAt;

        merkleRoot = _merkleRoot;

        // mint the first n NFTs directly to athletes on contract
        // instantiation
        for (uint16 i = 0; i < athletePremints.length; i++) {
            mintToken(athletePremints[i]);
        }

        // grant 2x vouchers for each FF NFT
        for (uint16 i = 0; i < ffTokenHolders.length; i++) {
            numVouchers[ffTokenHolders[i]] = numVouchers[ffTokenHolders[i]] + 2;
        }

        // grant single voucher to single-voucher greenlist
        for (uint16 i = 0; i < singleVoucherTokenHolders.length; i++) {
            numVouchers[singleVoucherTokenHolders[i]] = numVouchers[singleVoucherTokenHolders[i]] + 1;
        }

        baseURI = metadataBaseURI;

    }

    function freeMint(bytes32[] calldata proof) public whenNotPaused {
        require(block.timestamp >= claimOpensAt, "Visions of Flight: claim window has not opened");
        require(block.timestamp <= saleEndsAt, "Visions of Flight: sale has ended");
        require(numVouchers[msg.sender] > 0 || hasPOAPVoucher(proof), "Visions of Flight: No freemints available");


        for (uint8 i = 0; i < numVouchers[msg.sender]; i++) {
            mintToken(msg.sender);
        }
        numVouchers[msg.sender] = 0;

        if (hasPOAPVoucher(proof)) {
            mintToken(msg.sender);
            claimedPOAPVoucher[msg.sender] = true;
        }
    }

    function mint(address recipient, uint8 count) public payable whenNotPaused {
        require(block.timestamp >= saleStartsAt, "Visions of Flight: sale has not started");
        require(block.timestamp <= saleEndsAt, "Visions of Flight: sale has ended");

        // validate parameters and price
        require(count > 0 && count <= MAX_MINTS, "Visions of Flight: maximum mint per tx exceeded");
        require(msg.value == count*MINT_PRICE, "Visions of Flight: invalid mint fee");

        // validate txs per wallet
        require(txsPerWallet[msg.sender] < MAX_TXS_PER_WALLET, "Visions of Flight: User has exceeded 5 mint transactions per wallet");
        require(msg.sender == tx.origin, "Visions of Flight: Account is not an EOA");

        for (uint8 i = 0; i < count; i++) {
            mintToken(recipient);
        }

        txsPerWallet[msg.sender] = txsPerWallet[msg.sender] + 1;

        uint divisionStReceives = msg.value * divisionStShare / 100;
        uint athletesReceives = msg.value - divisionStReceives;

        divisionStWallet.transfer(divisionStReceives);
        athletesWallet.transfer(athletesReceives);
    }

    // ============ PUBLIC VIEW FUNCTIONS ============

    function getNumVouchers(address recipient) public view returns (uint) {
        if (block.timestamp <= saleEndsAt) {
            return numVouchers[recipient];
        } else {
            return 0;
        }
    }

    function hasClaimedPOAPVoucher(address recipient) public view returns (bool) {
        return claimedPOAPVoucher[recipient];
    }

    function totalSupply() public view returns (uint) {
        return NEXT_TOKEN_ID - 1;
    }

    // ============ OWNER INTERFACE ============

    function updatePaused(bool _paused) public onlyOwner {
        if (_paused) {
            _pause();
        } else {
            _unpause();
        }
    }

    function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
        merkleRoot = _merkleRoot;
    }

    function updateBaseURI(string calldata __baseURI) public onlyOwner {
        baseURI = __baseURI;
    }

    function updateClaimOpensAt(uint _claimOpensAt) public onlyOwner {
        claimOpensAt = _claimOpensAt;
    }

    function updateSaleStartsAt(uint _saleStartsAt) public onlyOwner {
        saleStartsAt = _saleStartsAt;
    }

    function updateSaleEndsAt(uint _saleEndsAt) public onlyOwner {
        saleEndsAt = _saleEndsAt;
    }

    // ============ INTERNAL INTERFACE ============

    function mintToken(address recipient) internal {
        require(NEXT_TOKEN_ID <= MAX_TOKEN_ID, "Visions of Flight: Sold out");

        _mint(recipient, NEXT_TOKEN_ID);
        emit TokenMinted(recipient, NEXT_TOKEN_ID);
        NEXT_TOKEN_ID = NEXT_TOKEN_ID + 1;
    }

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

    function _generateMerkleLeaf(address account) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked(account));
    }

    function checkPOAPVoucher(address recipient, bytes32[] calldata proof) public view returns (bool) {
        require(!claimedPOAPVoucher[recipient], "Visions of Flight: POAP free mint already claimed");

        if (MerkleProof.verify(proof, merkleRoot, _generateMerkleLeaf(recipient))) {
            return true;
        } else {
            return false;
        }
    }

    function hasPOAPVoucher(bytes32[] calldata proof) internal view returns (bool) {
        require(!claimedPOAPVoucher[msg.sender], "Visions of Flight: POAP free mint already claimed");

        if (MerkleProof.verify(proof, merkleRoot, _generateMerkleLeaf(msg.sender))) {
            return true;
        } else {
            return false;
        }
    }
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        return string(abi.encodePacked(baseURI, tokenId.toString(), ".json"));
    }
}

File 2 of 17 : 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 3 of 17 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 4 of 17 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens 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 amount
    ) 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, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 5 of 17 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

File 6 of 17 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 7 of 17 : ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev 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 {}
}

File 8 of 17 : 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 9 of 17 : 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 10 of 17 : 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 17 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 12 of 17 : 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 13 of 17 : 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 14 of 17 : MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

File 15 of 17 : 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 16 of 17 : 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);
}

File 17 of 17 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a / b + (a % b == 0 ? 0 : 1);
    }
}

Settings
{
  "evmVersion": "istanbul",
  "libraries": {},
  "metadata": {
    "bytecodeHash": "ipfs",
    "useLiteralContent": true
  },
  "optimizer": {
    "enabled": true,
    "runs": 1000
  },
  "remappings": [],
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"metadataBaseURI","type":"string"},{"internalType":"address payable","name":"_divisionStWallet","type":"address"},{"internalType":"address payable","name":"_athletesWallet","type":"address"},{"internalType":"uint256","name":"_claimOpensAt","type":"uint256"},{"internalType":"uint256","name":"_saleStartsAt","type":"uint256"},{"internalType":"uint256","name":"_saleEndsAt","type":"uint256"},{"internalType":"address[]","name":"athletePremints","type":"address[]"},{"internalType":"address[]","name":"ffTokenHolders","type":"address[]"},{"internalType":"address[]","name":"singleVoucherTokenHolders","type":"address[]"},{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"TokenMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"checkPOAPVoucher","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimOpensAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"getNumVouchers","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"hasClaimedPOAPVoucher","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint8","name":"count","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"saleEndsAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleStartsAt","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"string","name":"__baseURI","type":"string"}],"name":"updateBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_claimOpensAt","type":"uint256"}],"name":"updateClaimOpensAt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_paused","type":"bool"}],"name":"updatePaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_saleEndsAt","type":"uint256"}],"name":"updateSaleEndsAt","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_saleStartsAt","type":"uint256"}],"name":"updateSaleStartsAt","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526001600755611c206008556009805461ffff191661050a1790556701aa535d3d0c0000600b556014805460ff60a01b1916601960a01b1790553480156200004a57600080fd5b5060405162003646380380620036468339810160408190526200006d91620007d1565b6040805180820182526011815270159a5cda5bdb9cc81bd988119b1a59da1d607a1b6020808301918252835180850190945260048452631591931560e21b908401528151919291620000c291600091620005f2565b508051620000d8906001906020840190620005f2565b505050620000f5620000ef6200038a60201b60201c565b6200038e565b6006805460ff60a01b19169055601380546001600160a01b03808c166001600160a01b03199283161790925560148054928b1692909116919091179055600e879055600f8690556010859055601281905560005b84518161ffff161015620001a95762000194858261ffff16815181106200018057634e487b7160e01b600052603260045260246000fd5b6020026020010151620003e060201b60201c565b80620001a0816200095e565b91505062000149565b5060005b83518161ffff1610156200028657600c6000858361ffff1681518110620001e457634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000205460026200021b919062000906565b600c6000868461ffff16815181106200024457634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208190555080806200027d906200095e565b915050620001ad565b5060005b82518161ffff1610156200036357600c6000848361ffff1681518110620002c157634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020546001620002f8919062000906565b600c6000858461ffff16815181106200032157634e487b7160e01b600052603260045260246000fd5b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208190555080806200035a906200095e565b9150506200028a565b508951620003799060119060208d0190620005f2565b5050505050505050505050620009c8565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60085460075411156200043a5760405162461bcd60e51b815260206004820152601b60248201527f566973696f6e73206f6620466c696768743a20536f6c64206f7574000000000060448201526064015b60405180910390fd5b6200044e81600754620004aa60201b60201c565b600754604080516001600160a01b038416815260208101929092527fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a8910160405180910390a1600754620004a490600162000906565b60075550565b6001600160a01b038216620005025760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640162000431565b6000818152600260205260409020546001600160a01b031615620005695760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640162000431565b6001600160a01b03821660009081526003602052604081208054600192906200059490849062000906565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054620006009062000921565b90600052602060002090601f0160209004810192826200062457600085556200066f565b82601f106200063f57805160ff19168380011785556200066f565b828001600101855582156200066f579182015b828111156200066f57825182559160200191906001019062000652565b506200067d92915062000681565b5090565b5b808211156200067d576000815560010162000682565b8051620006a581620009af565b919050565b600082601f830112620006bb578081fd5b815160206001600160401b03821115620006d957620006d962000999565b8160051b620006ea828201620008d3565b83815282810190868401838801850189101562000705578687fd5b8693505b85841015620007345780516200071f81620009af565b83526001939093019291840191840162000709565b50979650505050505050565b600082601f83011262000751578081fd5b81516001600160401b038111156200076d576200076d62000999565b602062000783601f8301601f19168201620008d3565b828152858284870101111562000797578384fd5b835b83811015620007b657858101830151828201840152820162000799565b83811115620007c757848385840101525b5095945050505050565b6000806000806000806000806000806101408b8d031215620007f1578586fd5b8a516001600160401b038082111562000808578788fd5b620008168e838f0162000740565b9b506200082660208e0162000698565b9a506200083660408e0162000698565b995060608d0151985060808d0151975060a08d0151965060c08d015191508082111562000861578586fd5b6200086f8e838f01620006aa565b955060e08d015191508082111562000885578485fd5b620008938e838f01620006aa565b94506101008d0151915080821115620008aa578384fd5b50620008b98d828e01620006aa565b9250506101208b015190509295989b9194979a5092959850565b604051601f8201601f191681016001600160401b0381118282101715620008fe57620008fe62000999565b604052919050565b600082198211156200091c576200091c62000983565b500190565b600181811c908216806200093657607f821691505b602082108114156200095857634e487b7160e01b600052602260045260246000fd5b50919050565b600061ffff8083168181141562000979576200097962000983565b6001019392505050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114620009c557600080fd5b50565b612c6e80620009d86000396000f3fe6080604052600436106101fe5760003560e01c8063641629851161011d578063931688cb116100b0578063b88d4fde1161007f578063c87b56dd11610064578063c87b56dd146105c2578063e985e9c5146105e2578063f2fde38b1461062b57600080fd5b8063b88d4fde14610582578063c4b72062146105a257600080fd5b8063931688cb1461051757806395d89b4114610537578063a22cb4651461054c578063ad1a2ab81461056c57600080fd5b8063719ce454116100ec578063719ce454146104a35780637cb64759146104b957806388d15d50146104d95780638da5cb5b146104f957600080fd5b8063641629851461043b578063691562a01461045b57806370a082311461046e578063715018a61461048e57600080fd5b80632eb4a7ab116101955780635b90a34b116101645780635b90a34b146103bc5780635c975abb146103dc5780635dd7b59d146103fb5780636352211e1461041b57600080fd5b80632eb4a7ab1461035057806342842e0e1461036657806345763d0c146103865780635073b6071461039c57600080fd5b8063095ea7b3116101d1578063095ea7b3146102b457806318160ddd146102d45780631fff7c41146102f757806323b872dd1461033057600080fd5b806301ffc9a71461020357806306fdde0314610238578063081812fc1461025a57806308cdc2a814610292575b600080fd5b34801561020f57600080fd5b5061022361021e3660046128ba565b61064b565b60405190151581526020015b60405180910390f35b34801561024457600080fd5b5061024d6106e8565b60405161022f9190612ab5565b34801561026657600080fd5b5061027a6102753660046128a2565b61077a565b6040516001600160a01b03909116815260200161022f565b34801561029e57600080fd5b506102b26102ad366004612888565b610814565b005b3480156102c057600080fd5b506102b26102cf3660046127e4565b610887565b3480156102e057600080fd5b506102e96109d7565b60405190815260200161022f565b34801561030357600080fd5b5061022361031236600461260e565b6001600160a01b03166000908152600d602052604090205460ff1690565b34801561033c57600080fd5b506102b261034b36600461265a565b6109ed565b34801561035c57600080fd5b506102e960125481565b34801561037257600080fd5b506102b261038136600461265a565b610a74565b34801561039257600080fd5b506102e9600f5481565b3480156103a857600080fd5b506102b26103b73660046128a2565b610a8f565b3480156103c857600080fd5b506102236103d736600461276a565b610aee565b3480156103e857600080fd5b50600654600160a01b900460ff16610223565b34801561040757600080fd5b506102b26104163660046128a2565b610c0e565b34801561042757600080fd5b5061027a6104363660046128a2565b610c6d565b34801561044757600080fd5b506102e961045636600461260e565b610cf8565b6102b261046936600461280d565b610d2c565b34801561047a57600080fd5b506102e961048936600461260e565b611193565b34801561049a57600080fd5b506102b261122d565b3480156104af57600080fd5b506102e960105481565b3480156104c557600080fd5b506102b26104d43660046128a2565b611293565b3480156104e557600080fd5b506102b26104f4366004612848565b6112f2565b34801561050557600080fd5b506006546001600160a01b031661027a565b34801561052357600080fd5b506102b26105323660046128f2565b611527565b34801561054357600080fd5b5061024d61158d565b34801561055857600080fd5b506102b26105673660046127bb565b61159c565b34801561057857600080fd5b506102e9600e5481565b34801561058e57600080fd5b506102b261059d366004612695565b6115a7565b3480156105ae57600080fd5b506102b26105bd3660046128a2565b611635565b3480156105ce57600080fd5b5061024d6105dd3660046128a2565b611694565b3480156105ee57600080fd5b506102236105fd366004612628565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561063757600080fd5b506102b261064636600461260e565b611753565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806106ae57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806106e257507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b6060600080546106f790612b56565b80601f016020809104026020016040519081016040528092919081815260200182805461072390612b56565b80156107705780601f1061074557610100808354040283529160200191610770565b820191906000526020600020905b81548152906001019060200180831161075357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107f85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6006546001600160a01b0316331461086e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ef565b801561087f5761087c611832565b50565b61087c6118d7565b600061089282610c6d565b9050806001600160a01b0316836001600160a01b0316141561091c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016107ef565b336001600160a01b038216148061095657506001600160a01b038116600090815260056020908152604080832033845290915290205460ff165b6109c85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107ef565b6109d28383611964565b505050565b600060016007546109e89190612b13565b905090565b6109f733826119df565b610a695760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016107ef565b6109d2838383611ad6565b6109d2838383604051806020016040528060008152506115a7565b6006546001600160a01b03163314610ae95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ef565b600e55565b6001600160a01b0383166000908152600d602052604081205460ff1615610b7d5760405162461bcd60e51b815260206004820152603160248201527f566973696f6e73206f6620466c696768743a20504f41502066726565206d696e60448201527f7420616c726561647920636c61696d656400000000000000000000000000000060648201526084016107ef565b610bf6838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506012546040805160608b901b6bffffffffffffffffffffffff191660208083019190915282516014818403018152603490920190925280519101209092509050611cb0565b15610c0357506001610c07565b5060005b9392505050565b6006546001600160a01b03163314610c685760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ef565b600f55565b6000818152600260205260408120546001600160a01b0316806106e25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016107ef565b60006010544211610d1f57506001600160a01b03166000908152600c602052604090205490565b506000919050565b919050565b600654600160a01b900460ff1615610d795760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016107ef565b600f54421015610df15760405162461bcd60e51b815260206004820152602760248201527f566973696f6e73206f6620466c696768743a2073616c6520686173206e6f742060448201527f737461727465640000000000000000000000000000000000000000000000000060648201526084016107ef565b601054421115610e4d5760405162461bcd60e51b815260206004820152602160248201527f566973696f6e73206f6620466c696768743a2073616c652068617320656e64656044820152601960fa1b60648201526084016107ef565b60008160ff16118015610e69575060095460ff90811690821611155b610edb5760405162461bcd60e51b815260206004820152602f60248201527f566973696f6e73206f6620466c696768743a206d6178696d756d206d696e742060448201527f706572207478206578636565646564000000000000000000000000000000000060648201526084016107ef565b600b54610eeb9060ff8316612af4565b3414610f5f5760405162461bcd60e51b815260206004820152602360248201527f566973696f6e73206f6620466c696768743a20696e76616c6964206d696e742060448201527f666565000000000000000000000000000000000000000000000000000000000060648201526084016107ef565b600954336000908152600a602052604090205461010090910460ff16116110145760405162461bcd60e51b815260206004820152604360248201527f566973696f6e73206f6620466c696768743a205573657220686173206578636560448201527f656465642035206d696e74207472616e73616374696f6e73207065722077616c60648201527f6c65740000000000000000000000000000000000000000000000000000000000608482015260a4016107ef565b3332146110895760405162461bcd60e51b815260206004820152602860248201527f566973696f6e73206f6620466c696768743a204163636f756e74206973206e6f60448201527f7420616e20454f4100000000000000000000000000000000000000000000000060648201526084016107ef565b60005b8160ff168160ff1610156110b5576110a383611cc6565b806110ad81612bac565b91505061108c565b50336000908152600a60205260409020546110d1906001612ac8565b336000908152600a60205260408120919091556014546064906110fe90600160a01b900460ff1634612af4565b6111089190612ae0565b905060006111168234612b13565b6013546040519192506001600160a01b03169083156108fc029084906000818181858888f19350505050158015611151573d6000803e3d6000fd5b506014546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505015801561118c573d6000803e3d6000fd5b5050505050565b60006001600160a01b0382166112115760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016107ef565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146112875760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ef565b6112916000611d80565b565b6006546001600160a01b031633146112ed5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ef565b601255565b600654600160a01b900460ff161561133f5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016107ef565b600e544210156113b75760405162461bcd60e51b815260206004820152602e60248201527f566973696f6e73206f6620466c696768743a20636c61696d2077696e646f772060448201527f686173206e6f74206f70656e656400000000000000000000000000000000000060648201526084016107ef565b6010544211156114135760405162461bcd60e51b815260206004820152602160248201527f566973696f6e73206f6620466c696768743a2073616c652068617320656e64656044820152601960fa1b60648201526084016107ef565b336000908152600c602052604090205415158061143557506114358282611ddf565b6114a75760405162461bcd60e51b815260206004820152602960248201527f566973696f6e73206f6620466c696768743a204e6f20667265656d696e74732060448201527f617661696c61626c65000000000000000000000000000000000000000000000060648201526084016107ef565b60005b336000908152600c602052604090205460ff821610156114df576114cd33611cc6565b806114d781612bac565b9150506114aa565b50336000908152600c60205260408120556114fa8282611ddf565b156115235761150833611cc6565b336000908152600d60205260409020805460ff191660011790555b5050565b6006546001600160a01b031633146115815760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ef565b6109d260118383612504565b6060600180546106f790612b56565b611523338383611ef2565b6115b133836119df565b6116235760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016107ef565b61162f84848484611fc1565b50505050565b6006546001600160a01b0316331461168f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ef565b601055565b6000818152600260205260409020546060906001600160a01b03166117215760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016107ef565b601161172c8361204a565b60405160200161173d9291906129a7565b6040516020818303038152906040529050919050565b6006546001600160a01b031633146117ad5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ef565b6001600160a01b0381166118295760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016107ef565b61087c81611d80565b600654600160a01b900460ff161561187f5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016107ef565b6006805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586118ba3390565b6040516001600160a01b03909116815260200160405180910390a1565b600654600160a01b900460ff166119305760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f742070617573656400000000000000000000000060448201526064016107ef565b6006805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa336118ba565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03841690811790915581906119a682610c6d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611a585760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107ef565b6000611a6383610c6d565b9050806001600160a01b0316846001600160a01b03161480611a9e5750836001600160a01b0316611a938461077a565b6001600160a01b0316145b80611ace57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ae982610c6d565b6001600160a01b031614611b655760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016107ef565b6001600160a01b038216611be05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016107ef565b611beb600082611964565b6001600160a01b0383166000908152600360205260408120805460019290611c14908490612b13565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c42908490612ac8565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600082611cbd8584612198565b14949350505050565b6008546007541115611d1a5760405162461bcd60e51b815260206004820152601b60248201527f566973696f6e73206f6620466c696768743a20536f6c64206f7574000000000060448201526064016107ef565b611d2681600754612252565b600754604080516001600160a01b038416815260208101929092527fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a8910160405180910390a1600754611d7a906001612ac8565b60075550565b600680546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b336000908152600d602052604081205460ff1615611e655760405162461bcd60e51b815260206004820152603160248201527f566973696f6e73206f6620466c696768743a20504f41502066726565206d696e60448201527f7420616c726561647920636c61696d656400000000000000000000000000000060648201526084016107ef565b611edd83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601254604080513360601b6bffffffffffffffffffffffff191660208083019190915282516014818403018152603490920190925280519101209092509050611cb0565b15611eea575060016106e2565b5060006106e2565b816001600160a01b0316836001600160a01b03161415611f545760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107ef565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611fcc848484611ad6565b611fd8848484846123a1565b61162f5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016107ef565b60608161208a57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156120b4578061209e81612b91565b91506120ad9050600a83612ae0565b915061208e565b60008167ffffffffffffffff8111156120dd57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612107576020820181803683370190505b5090505b8415611ace5761211c600183612b13565b9150612129600a86612bcc565b612134906030612ac8565b60f81b81838151811061215757634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612191600a86612ae0565b945061210b565b600081815b845181101561224a5760008582815181106121c857634e487b7160e01b600052603260045260246000fd5b6020026020010151905080831161220a576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612237565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061224281612b91565b91505061219d565b509392505050565b6001600160a01b0382166122a85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107ef565b6000818152600260205260409020546001600160a01b03161561230d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107ef565b6001600160a01b0382166000908152600360205260408120805460019290612336908490612ac8565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b156124f957604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906123e5903390899088908890600401612a79565b602060405180830381600087803b1580156123ff57600080fd5b505af192505050801561242f575060408051601f3d908101601f1916820190925261242c918101906128d6565b60015b6124df573d80801561245d576040519150601f19603f3d011682016040523d82523d6000602084013e612462565b606091505b5080516124d75760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016107ef565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ace565b506001949350505050565b82805461251090612b56565b90600052602060002090601f0160209004810192826125325760008555612578565b82601f1061254b5782800160ff19823516178555612578565b82800160010185558215612578579182015b8281111561257857823582559160200191906001019061255d565b50612584929150612588565b5090565b5b808211156125845760008155600101612589565b80356001600160a01b0381168114610d2757600080fd5b60008083601f8401126125c5578081fd5b50813567ffffffffffffffff8111156125dc578182fd5b6020830191508360208260051b85010111156125f757600080fd5b9250929050565b80358015158114610d2757600080fd5b60006020828403121561261f578081fd5b610c078261259d565b6000806040838503121561263a578081fd5b6126438361259d565b91506126516020840161259d565b90509250929050565b60008060006060848603121561266e578081fd5b6126778461259d565b92506126856020850161259d565b9150604084013590509250925092565b600080600080608085870312156126aa578081fd5b6126b38561259d565b93506126c16020860161259d565b925060408501359150606085013567ffffffffffffffff808211156126e4578283fd5b818701915087601f8301126126f7578283fd5b81358181111561270957612709612c0c565b604051601f8201601f19908116603f0116810190838211818310171561273157612731612c0c565b816040528281528a6020848701011115612749578586fd5b82602086016020830137918201602001949094529598949750929550505050565b60008060006040848603121561277e578283fd5b6127878461259d565b9250602084013567ffffffffffffffff8111156127a2578283fd5b6127ae868287016125b4565b9497909650939450505050565b600080604083850312156127cd578182fd5b6127d68361259d565b9150612651602084016125fe565b600080604083850312156127f6578182fd5b6127ff8361259d565b946020939093013593505050565b6000806040838503121561281f578182fd5b6128288361259d565b9150602083013560ff8116811461283d578182fd5b809150509250929050565b6000806020838503121561285a578182fd5b823567ffffffffffffffff811115612870578283fd5b61287c858286016125b4565b90969095509350505050565b600060208284031215612899578081fd5b610c07826125fe565b6000602082840312156128b3578081fd5b5035919050565b6000602082840312156128cb578081fd5b8135610c0781612c22565b6000602082840312156128e7578081fd5b8151610c0781612c22565b60008060208385031215612904578182fd5b823567ffffffffffffffff8082111561291b578384fd5b818501915085601f83011261292e578384fd5b81358181111561293c578485fd5b86602082850101111561294d578485fd5b60209290920196919550909350505050565b60008151808452612977816020860160208601612b2a565b601f01601f19169290920160200192915050565b6000815161299d818560208601612b2a565b9290920192915050565b600080845482600182811c9150808316806129c357607f831692505b60208084108214156129e357634e487b7160e01b87526022600452602487fd5b8180156129f75760018114612a0857612a34565b60ff19861689528489019650612a34565b60008b815260209020885b86811015612a2c5781548b820152908501908301612a13565b505084890196505b505050505050612a70612a47828661298b565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000815260050190565b95945050505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612aab608083018461295f565b9695505050505050565b602081526000610c07602083018461295f565b60008219821115612adb57612adb612be0565b500190565b600082612aef57612aef612bf6565b500490565b6000816000190483118215151615612b0e57612b0e612be0565b500290565b600082821015612b2557612b25612be0565b500390565b60005b83811015612b45578181015183820152602001612b2d565b8381111561162f5750506000910152565b600181811c90821680612b6a57607f821691505b60208210811415612b8b57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612ba557612ba5612be0565b5060010190565b600060ff821660ff811415612bc357612bc3612be0565b60010192915050565b600082612bdb57612bdb612bf6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461087c57600080fdfea2646970667358221220e4030817c038037f649f263060c68df558973e7790208e07a578d564bc03605b64736f6c63430008040033000000000000000000000000000000000000000000000000000000000000014000000000000000000000000015b7f743e2bcba33320e26d145d7628149d733370000000000000000000000001a003ae61b44a3ed1fafbf8549856a4da9c7312e0000000000000000000000000000000000000000000000000000000062bdc8800000000000000000000000000000000000000000000000000000000062bdf2b00000000000000000000000000000000000000000000000000000000062d067b000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000003400000000000000000000000000000000000000000000000000000000000001260315c873909bdc0f6a1136edd5af5db8e6ea6fa066085efafc790fc6b34efcf710000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d54747050734a62716261435a5566424b5031465235657467616251637952465665566b5a574e53534e4734632f00000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000291f716cae9a8209747dc40894e8d9c118e662870000000000000000000000005ef058997cb0c673e9785790975b9b68b1d2bc9a000000000000000000000000f60f420e44532f6c652e14a0622c4758c78fcc1f0000000000000000000000000dc9dae35801061d99fa6fe0b18a34d216b7a0ee000000000000000000000000593257ba0247dde04e0cacbf1d4fe71fdae4bdbf000000000000000000000000067d68bdcbb652edad4b6430ef16a2f6ed6fd6d8000000000000000000000000a32a306cbe7c035592aa00b39138847a844ed8720000000000000000000000004ac1070d9913d2b0c42724e8035342c5d93eee90000000000000000000000000610329b3ab401e08793a4930f54d5573e8fa6b59000000000000000000000000ff0163926cd93c18a2eced7c379e05396bc5b3e5000000000000000000000000332678b3ddeb89a6e4fea39a83d5a64edafcf8e70000000000000000000000002e01c912c12cd6f64fa0a6e2dfdd59c6b649a27b00000000000000000000000000000000000000000000000000000000000000780000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb0000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb0000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb0000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb0000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb0000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb0000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb0000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb000000000000000000000000352e32ad9791c5cc8d8614cfd0748fa6500400fc000000000000000000000000352e32ad9791c5cc8d8614cfd0748fa6500400fc000000000000000000000000352e32ad9791c5cc8d8614cfd0748fa6500400fc000000000000000000000000352e32ad9791c5cc8d8614cfd0748fa6500400fc000000000000000000000000352e32ad9791c5cc8d8614cfd0748fa6500400fc000000000000000000000000352e32ad9791c5cc8d8614cfd0748fa6500400fc000000000000000000000000352e32ad9791c5cc8d8614cfd0748fa6500400fc000000000000000000000000352e32ad9791c5cc8d8614cfd0748fa6500400fc000000000000000000000000e300c56e979f53e2f24d5a360fe20bbebd673ae8000000000000000000000000e300c56e979f53e2f24d5a360fe20bbebd673ae8000000000000000000000000e300c56e979f53e2f24d5a360fe20bbebd673ae8000000000000000000000000e300c56e979f53e2f24d5a360fe20bbebd673ae800000000000000000000000003423785a55deba994f9455b698270c92f737b9400000000000000000000000003423785a55deba994f9455b698270c92f737b9400000000000000000000000003423785a55deba994f9455b698270c92f737b94000000000000000000000000d55fa743b5441d6ec80cad1a1a2563417d2381ee000000000000000000000000d55fa743b5441d6ec80cad1a1a2563417d2381ee000000000000000000000000d55fa743b5441d6ec80cad1a1a2563417d2381ee00000000000000000000000023d118d6b6ba1f7b1ca4dde13e26e6e1bd1b303900000000000000000000000023d118d6b6ba1f7b1ca4dde13e26e6e1bd1b303900000000000000000000000002970c31a80f7c4b022cd30c6f9e6c1c5b6e5ef400000000000000000000000002970c31a80f7c4b022cd30c6f9e6c1c5b6e5ef4000000000000000000000000054838fb00e7b33318b43fc9511eabfed192652b000000000000000000000000054838fb00e7b33318b43fc9511eabfed192652b0000000000000000000000000da78c9603b3d4d8fc4e9d2ef166fc93f4ea62380000000000000000000000000da78c9603b3d4d8fc4e9d2ef166fc93f4ea623800000000000000000000000066c76d369a45137c97313f8284b5459a2837b79a00000000000000000000000066c76d369a45137c97313f8284b5459a2837b79a0000000000000000000000009532d6f484da2930323f1a87cc29c3dd0c181e5a0000000000000000000000009532d6f484da2930323f1a87cc29c3dd0c181e5a000000000000000000000000acae35b0d856b3baff838d32beedfddc77729a3f000000000000000000000000acae35b0d856b3baff838d32beedfddc77729a3f00000000000000000000000012d0e76e2ab87a3f18c7b25cd56903eb96d00e0200000000000000000000000013d84744bd721ecdb0d5141f8c371644ece0382400000000000000000000000017c54d3f8bbdbf9ec3a395d67ea166b2ddf55b8e00000000000000000000000019146c86e34681074169e13b4bcaa6aa60e50b930000000000000000000000001dbb0a0c62dc6d320b30b120941091058d7651030000000000000000000000001f4d0f5874226fced4ec9792d95848526a0f1099000000000000000000000000201f948e98513abe8dc70047ba98a050fe67e9fb000000000000000000000000206fa2409ab411c416ea6003b97cb48fe3519c4a00000000000000000000000023eed9811095e71c261f2b6e95ffe4ed9642dbe10000000000000000000000002aaba4b94a805f0fea696dc11de324c2320ff4e10000000000000000000000002b5ac9107e0ffadcb5fa9bc9aaf42c9094693d470000000000000000000000002e951331013aa200a3fe439ccab4e0d28af4b27c0000000000000000000000003728f48f31b367b5ffeead814b10c4d0003b25d1000000000000000000000000387aad140df043d80c160a33d409b58cc9f03ec60000000000000000000000003c446158c8e6c145949b3a8e7479f4391e8738420000000000000000000000003cba27c5cdfef9df1bddb28738a2ca95a921a80300000000000000000000000042e250824bdf98f3e450784b0c1cdc3ac2f157e20000000000000000000000004aaa5dfa811b3ed71cdd6dccd09395dc08ef2c200000000000000000000000004d2bd3f5814b1fee14e2795a429aefedb5816fe700000000000000000000000052eb77844bd497aa3fe5f09256b4ba27472a22d500000000000000000000000052efdaa6d5f53c95fa7430641f4c51d78707f68c00000000000000000000000054c1316c11ee8086bdcf051680025f61c276e58a000000000000000000000000602012829e8b20a48bcd14e7a6a02afaedf0394e00000000000000000000000061626570902dfbdac61bc49d3842836ba93a0ff700000000000000000000000062a313eeb18fd8881c6832e7e4ab7602737743b0000000000000000000000000657e9191c533cb5c9b3d5b1b740bcdf297c256d30000000000000000000000006813e9cfb7319e0927ad3ba6dbf4c37a1fc0014a000000000000000000000000689717c0b1ab0f188235cfa487ced32feebf9698000000000000000000000000702c4904d5ced92367368f8c48c03957016eaea6000000000000000000000000725ded692c12948d5eb9efede9885ad369f590a6000000000000000000000000751f5ee4cebb80d2dbcb366d4f802b34e459f4c100000000000000000000000075a1e0a311a2486217d94c716d3f48861b54a753000000000000000000000000761f655d32aeb9d6eedf8e9d274b226537e49a3c00000000000000000000000077147b66c38025efed2ae359aa3ad3f253f7739c000000000000000000000000799b52e309d6d0e956ba1ebf6bf162846a8528dd0000000000000000000000007c90c6cacb389f149297fffee6255cba093bc4c20000000000000000000000007e641561cfa049d8b3067ac142952d3071d7b12f00000000000000000000000084679c195239c58a2dc9068f67a74b5d334a2b87000000000000000000000000894418ceb7216d87bc8912d1363976bf2d5fb45a0000000000000000000000008a4ce52587a29e58528c2c04e1e7c490ea4d69060000000000000000000000009094b9de66790e0a5ab0e3299d38afb037be458b000000000000000000000000025d2eba8300d2c18f9b3fe02b0cf5af910e2fd50000000000000000000000009ae2fd38f29db2581f2a28d7eed3ac9bb8ea1227000000000000000000000000a081ae42802e0be86f5a6dd9274adf50c9986a1d000000000000000000000000a09a2d4fd83786651aca4800270d2301336edc74000000000000000000000000a0ac662f58d3507a6f4a37f8532df201d9010fe7000000000000000000000000a17b38ad200c9f2f7fb0a207ae5148c26f210d42000000000000000000000000a3c04160d9ed4aefe11703e6584c43e97401beb2000000000000000000000000a7652f355c12a5a24ac1865218361704d02cc0a4000000000000000000000000a8bad4743bbdd8817d0042f82e350c29b728ec720000000000000000000000000ce4ff834866fff1486439bfe6e2dac6173d814e000000000000000000000000b107891dcb0864035a1b03374cb43bb76631b5b5000000000000000000000000b3276a67634206590d3e0f7192b4df34ec184eb9000000000000000000000000b48581628330fa73070a1661dfd899bbb9990e4f000000000000000000000000bae0108a66c13450a5ff6bcf253a03b57bb29bcc000000000000000000000000bd40ad5c8f59d140869504a55295ae650078fc41000000000000000000000000bd66d837a0f034e88edea79f7b9d61ccdd6fb0cc000000000000000000000000c4b57ce643bcfaeff739b71f27b45059df992398000000000000000000000000c5f59709974262c4afacc5386287820bdbc7eb3a000000000000000000000000c9ed37c994444e6d22f674b0a036d9a41b998650000000000000000000000000cd21d7cb36f0bd063c99b9fc7565335fa24029d5000000000000000000000000cd8f56c841e5253667e9318c9b1a82462622b918000000000000000000000000cdd11e788ffee7a1a5e032ecf01fcc441ee8cfd7000000000000000000000000d11efe96527fda776b1530ad157c8160533cb5e4000000000000000000000000d435b22d96bfe40752e8b01596c1e95b3fef3afa0000000000000000000000001007fe81bc3e683d4ab739095b2ab0bf60c29b9b000000000000000000000000d7e2cc2093dc3c8de78227b4291315f601925039000000000000000000000000d88f08d57189bc1f1498d6851d45b9eca432ba26000000000000000000000000d940a6f51b98caf2aa6f89f53e61dcc9bcefb12f000000000000000000000000da3d8e3ee7a9599cfdf9235bb3dadaa5749ccfc600000000000000000000000012b8b6fa80634cde28ec5d3318b5db9165347fc6000000000000000000000000e4bbcbff51e61d0d95fcc5016609ac8354b177c4000000000000000000000000e8c8dda5be69e623a45536081716de00de789034000000000000000000000000e8e657fa217010fa28b6a4fff81545fa64f7e955000000000000000000000000ef096d11b4f5e0de86dab01ac8da0bebab81406e000000000000000000000000f23a873b5bc29d9269ad4a50f093477f4599c007000000000000000000000000fc93e57e1ec7271522b5b42c7ea364ce2ae968b8000000000000000000000000fcf1f9119bf7b2ec1977f53923247013a156f638000000000000000000000000fd325e438ab4e2bd3c2c2ecd8568bebbca4336be000000000000000000000000fded90a3b1348425577688866f798f94d77a0d02000000000000000000000000000000000000000000000000000000000000004300000000000000000000000043804905c02f551ec5420a88005bc66a1baf3ab00000000000000000000000009c6f3006085575d711a2b37f639047e9232c17590000000000000000000000008b9549b746b7b52cdfe1190453d889062867ebe0000000000000000000000000b5706fa06f213cdb18e1447fe3cb2bcf61f7c02000000000000000000000000030557e4c31c8ba250c1fc61f37dcc91e9c55f299000000000000000000000000dc100a60577c7494ad9a9f65f4a305fe2c7a11800000000000000000000000002f2967f82c24da4490a3c9b7ceb9b7c4d20f97860000000000000000000000009c90d785526ee998442fd356f206d46b71e37479000000000000000000000000d298eb462b39c34aab8de3b21038f6d36c4e98900000000000000000000000002eb98b35be91826417fe60c2d0cc2864b6024a9c000000000000000000000000dd188ef668c415efa27ccd449197c9fd2cd502ee0000000000000000000000003a8b42d45a312e3197804630d819bfdd48ac1897000000000000000000000000c69bcc156740ee8d4b0bd9fe4aca3e6d2a7ad93a0000000000000000000000002a0a01021e858b3edd41a82868bf57fc327337000000000000000000000000000b3c9e6477688fbd8d6fa56db7c51c2447af8c7c000000000000000000000000c47c0be8b55c2affe2bc1f925dd7a18f10614a0700000000000000000000000019d8da2674e8a025154153297ea3ab918debf96d0000000000000000000000001f40986d93857acdcf0584eacd0efd53c40aab760000000000000000000000002bae3b4c13c9bbb75d172399a91785c49357878100000000000000000000000038380d0955fb1424601ee29b251b96a282e65f5a0000000000000000000000004472bd2ab2fb0ef5a9f4a0125546b11fdd027b010000000000000000000000004c0f844d663c5cafdbb1dabe242e0beb007f7bd9000000000000000000000000a0a050eda4be33fdce2f3390293ed65540fedb47000000000000000000000000c705fa770fcc01ddda4f5b3855a41fd17112811a00000000000000000000000054a80e0417008db88036f4fb2c4646264717f7a60000000000000000000000003aae5cb048f87c8633890c961a43a70108aff5db00000000000000000000000004ece72dc3c89ee8e666d0cf1f39256a9a1f4a25000000000000000000000000c3fff4fa1634c71a93a8530808c2152e8beab323000000000000000000000000daae9bee68e1368b5db8f783db13e0b83555d0f8000000000000000000000000c5e068e8ec9f59a7aafea1acfb8a99cff339dff400000000000000000000000094c685f0e159f54b6d02a1627471fbdd0648a9ca000000000000000000000000d0883a8413510e78ac18c7a5cd565bab5651cf53000000000000000000000000386da3dfff661e9924e50261c6953db1e5f29107000000000000000000000000a115201e245f16cca90ee1039290b690dddb5ef50000000000000000000000007b6f2f3032664691586aedfeadbd60d6f5d88da6000000000000000000000000def5dce85966199f96a6de42ecb492c73ace9f7d0000000000000000000000008a5b26a334dc45c76d2e9ee9e1378388e507382d000000000000000000000000f2e487c77f7227366542a059dae2b0d3d5ef1ad70000000000000000000000004f64f72bf580b150f675859ec0ee4ac5458c0e180000000000000000000000007b1bde06c90e6cf5047e5b7510001d324eafb92000000000000000000000000039bfe97b1f92fcdd614122083ba12e0691dcebd7000000000000000000000000932a9749a8844354448c235971ccb8d0f4e2bff9000000000000000000000000ec24ed76470f498c485a43a1d79fee0b4a16939000000000000000000000000063a237e409c8d341b7fb449e10b1b1eabd7f4300000000000000000000000000bcfff26d3cd1ff70a0bfb6e7c0bc55674387b4580000000000000000000000008b6cf03a3f560c035ab15b10530a8e08eec76854000000000000000000000000a0c6e1fb83e1c63de3ac2fde45d7dfba8b538bd2000000000000000000000000883b79f78bb18b8a90769c494e5528b2f6abc0f000000000000000000000000089d274bd6bf00d2e910d7778c98a35a186211b380000000000000000000000003296b3565544036c3277798e20fcb9c14f094d920000000000000000000000009c4cdbf75985e330794af11195f07124d6a7b35d0000000000000000000000003954b79f1ed5b26642a72edd233bd72b27bb65170000000000000000000000002cea3877170c1abe48a6e3ab392f893f3a74293c0000000000000000000000005a6f7cd6580bd96c170b12812dbc6faf44b0bef8000000000000000000000000ea6a4da15e9cb92c3f48522f4c05e34da9e9968c000000000000000000000000521792372f13224a72ec8a3c64cd1c2167c1eff2000000000000000000000000bc23d67d4f42ff85ffe9590d3253d048d0da93b0000000000000000000000000be5837b0a6ebd3a4ea573deb783749addef428910000000000000000000000003ab208d3ce512f2ac0aa821eecf2b816a96799b000000000000000000000000023d0e888f6c83d2753c8e9d6774e38a86c80c031000000000000000000000000b3563c5c23383b4f6cadc6ad21d294b307cbc447000000000000000000000000d6b8d714d98057dac37034eaa26dd013b18d81da0000000000000000000000004c612f4af79838de28964396de5d1dd47668bac30000000000000000000000007067804a78b19de62aafe50866fbe0ed7d7b132c000000000000000000000000ca68a84ed0073f856faa3ae01465a83307311801000000000000000000000000d22dbca9a2decbcfbdfa98eee401a33482d577cd000000000000000000000000d1daac5a9eb775305fd3c9a03173251504aa2724

Deployed Bytecode

0x6080604052600436106101fe5760003560e01c8063641629851161011d578063931688cb116100b0578063b88d4fde1161007f578063c87b56dd11610064578063c87b56dd146105c2578063e985e9c5146105e2578063f2fde38b1461062b57600080fd5b8063b88d4fde14610582578063c4b72062146105a257600080fd5b8063931688cb1461051757806395d89b4114610537578063a22cb4651461054c578063ad1a2ab81461056c57600080fd5b8063719ce454116100ec578063719ce454146104a35780637cb64759146104b957806388d15d50146104d95780638da5cb5b146104f957600080fd5b8063641629851461043b578063691562a01461045b57806370a082311461046e578063715018a61461048e57600080fd5b80632eb4a7ab116101955780635b90a34b116101645780635b90a34b146103bc5780635c975abb146103dc5780635dd7b59d146103fb5780636352211e1461041b57600080fd5b80632eb4a7ab1461035057806342842e0e1461036657806345763d0c146103865780635073b6071461039c57600080fd5b8063095ea7b3116101d1578063095ea7b3146102b457806318160ddd146102d45780631fff7c41146102f757806323b872dd1461033057600080fd5b806301ffc9a71461020357806306fdde0314610238578063081812fc1461025a57806308cdc2a814610292575b600080fd5b34801561020f57600080fd5b5061022361021e3660046128ba565b61064b565b60405190151581526020015b60405180910390f35b34801561024457600080fd5b5061024d6106e8565b60405161022f9190612ab5565b34801561026657600080fd5b5061027a6102753660046128a2565b61077a565b6040516001600160a01b03909116815260200161022f565b34801561029e57600080fd5b506102b26102ad366004612888565b610814565b005b3480156102c057600080fd5b506102b26102cf3660046127e4565b610887565b3480156102e057600080fd5b506102e96109d7565b60405190815260200161022f565b34801561030357600080fd5b5061022361031236600461260e565b6001600160a01b03166000908152600d602052604090205460ff1690565b34801561033c57600080fd5b506102b261034b36600461265a565b6109ed565b34801561035c57600080fd5b506102e960125481565b34801561037257600080fd5b506102b261038136600461265a565b610a74565b34801561039257600080fd5b506102e9600f5481565b3480156103a857600080fd5b506102b26103b73660046128a2565b610a8f565b3480156103c857600080fd5b506102236103d736600461276a565b610aee565b3480156103e857600080fd5b50600654600160a01b900460ff16610223565b34801561040757600080fd5b506102b26104163660046128a2565b610c0e565b34801561042757600080fd5b5061027a6104363660046128a2565b610c6d565b34801561044757600080fd5b506102e961045636600461260e565b610cf8565b6102b261046936600461280d565b610d2c565b34801561047a57600080fd5b506102e961048936600461260e565b611193565b34801561049a57600080fd5b506102b261122d565b3480156104af57600080fd5b506102e960105481565b3480156104c557600080fd5b506102b26104d43660046128a2565b611293565b3480156104e557600080fd5b506102b26104f4366004612848565b6112f2565b34801561050557600080fd5b506006546001600160a01b031661027a565b34801561052357600080fd5b506102b26105323660046128f2565b611527565b34801561054357600080fd5b5061024d61158d565b34801561055857600080fd5b506102b26105673660046127bb565b61159c565b34801561057857600080fd5b506102e9600e5481565b34801561058e57600080fd5b506102b261059d366004612695565b6115a7565b3480156105ae57600080fd5b506102b26105bd3660046128a2565b611635565b3480156105ce57600080fd5b5061024d6105dd3660046128a2565b611694565b3480156105ee57600080fd5b506102236105fd366004612628565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561063757600080fd5b506102b261064636600461260e565b611753565b60006001600160e01b031982167f80ac58cd0000000000000000000000000000000000000000000000000000000014806106ae57506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806106e257507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b6060600080546106f790612b56565b80601f016020809104026020016040519081016040528092919081815260200182805461072390612b56565b80156107705780601f1061074557610100808354040283529160200191610770565b820191906000526020600020905b81548152906001019060200180831161075357829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107f85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6006546001600160a01b0316331461086e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ef565b801561087f5761087c611832565b50565b61087c6118d7565b600061089282610c6d565b9050806001600160a01b0316836001600160a01b0316141561091c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f720000000000000000000000000000000000000000000000000000000000000060648201526084016107ef565b336001600160a01b038216148061095657506001600160a01b038116600090815260056020908152604080832033845290915290205460ff165b6109c85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107ef565b6109d28383611964565b505050565b600060016007546109e89190612b13565b905090565b6109f733826119df565b610a695760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016107ef565b6109d2838383611ad6565b6109d2838383604051806020016040528060008152506115a7565b6006546001600160a01b03163314610ae95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ef565b600e55565b6001600160a01b0383166000908152600d602052604081205460ff1615610b7d5760405162461bcd60e51b815260206004820152603160248201527f566973696f6e73206f6620466c696768743a20504f41502066726565206d696e60448201527f7420616c726561647920636c61696d656400000000000000000000000000000060648201526084016107ef565b610bf6838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506012546040805160608b901b6bffffffffffffffffffffffff191660208083019190915282516014818403018152603490920190925280519101209092509050611cb0565b15610c0357506001610c07565b5060005b9392505050565b6006546001600160a01b03163314610c685760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ef565b600f55565b6000818152600260205260408120546001600160a01b0316806106e25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e000000000000000000000000000000000000000000000060648201526084016107ef565b60006010544211610d1f57506001600160a01b03166000908152600c602052604090205490565b506000919050565b919050565b600654600160a01b900460ff1615610d795760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016107ef565b600f54421015610df15760405162461bcd60e51b815260206004820152602760248201527f566973696f6e73206f6620466c696768743a2073616c6520686173206e6f742060448201527f737461727465640000000000000000000000000000000000000000000000000060648201526084016107ef565b601054421115610e4d5760405162461bcd60e51b815260206004820152602160248201527f566973696f6e73206f6620466c696768743a2073616c652068617320656e64656044820152601960fa1b60648201526084016107ef565b60008160ff16118015610e69575060095460ff90811690821611155b610edb5760405162461bcd60e51b815260206004820152602f60248201527f566973696f6e73206f6620466c696768743a206d6178696d756d206d696e742060448201527f706572207478206578636565646564000000000000000000000000000000000060648201526084016107ef565b600b54610eeb9060ff8316612af4565b3414610f5f5760405162461bcd60e51b815260206004820152602360248201527f566973696f6e73206f6620466c696768743a20696e76616c6964206d696e742060448201527f666565000000000000000000000000000000000000000000000000000000000060648201526084016107ef565b600954336000908152600a602052604090205461010090910460ff16116110145760405162461bcd60e51b815260206004820152604360248201527f566973696f6e73206f6620466c696768743a205573657220686173206578636560448201527f656465642035206d696e74207472616e73616374696f6e73207065722077616c60648201527f6c65740000000000000000000000000000000000000000000000000000000000608482015260a4016107ef565b3332146110895760405162461bcd60e51b815260206004820152602860248201527f566973696f6e73206f6620466c696768743a204163636f756e74206973206e6f60448201527f7420616e20454f4100000000000000000000000000000000000000000000000060648201526084016107ef565b60005b8160ff168160ff1610156110b5576110a383611cc6565b806110ad81612bac565b91505061108c565b50336000908152600a60205260409020546110d1906001612ac8565b336000908152600a60205260408120919091556014546064906110fe90600160a01b900460ff1634612af4565b6111089190612ae0565b905060006111168234612b13565b6013546040519192506001600160a01b03169083156108fc029084906000818181858888f19350505050158015611151573d6000803e3d6000fd5b506014546040516001600160a01b039091169082156108fc029083906000818181858888f1935050505015801561118c573d6000803e3d6000fd5b5050505050565b60006001600160a01b0382166112115760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f20616464726573730000000000000000000000000000000000000000000060648201526084016107ef565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146112875760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ef565b6112916000611d80565b565b6006546001600160a01b031633146112ed5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ef565b601255565b600654600160a01b900460ff161561133f5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016107ef565b600e544210156113b75760405162461bcd60e51b815260206004820152602e60248201527f566973696f6e73206f6620466c696768743a20636c61696d2077696e646f772060448201527f686173206e6f74206f70656e656400000000000000000000000000000000000060648201526084016107ef565b6010544211156114135760405162461bcd60e51b815260206004820152602160248201527f566973696f6e73206f6620466c696768743a2073616c652068617320656e64656044820152601960fa1b60648201526084016107ef565b336000908152600c602052604090205415158061143557506114358282611ddf565b6114a75760405162461bcd60e51b815260206004820152602960248201527f566973696f6e73206f6620466c696768743a204e6f20667265656d696e74732060448201527f617661696c61626c65000000000000000000000000000000000000000000000060648201526084016107ef565b60005b336000908152600c602052604090205460ff821610156114df576114cd33611cc6565b806114d781612bac565b9150506114aa565b50336000908152600c60205260408120556114fa8282611ddf565b156115235761150833611cc6565b336000908152600d60205260409020805460ff191660011790555b5050565b6006546001600160a01b031633146115815760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ef565b6109d260118383612504565b6060600180546106f790612b56565b611523338383611ef2565b6115b133836119df565b6116235760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656400000000000000000000000000000060648201526084016107ef565b61162f84848484611fc1565b50505050565b6006546001600160a01b0316331461168f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ef565b601055565b6000818152600260205260409020546060906001600160a01b03166117215760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016107ef565b601161172c8361204a565b60405160200161173d9291906129a7565b6040516020818303038152906040529050919050565b6006546001600160a01b031633146117ad5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107ef565b6001600160a01b0381166118295760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016107ef565b61087c81611d80565b600654600160a01b900460ff161561187f5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016107ef565b6006805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586118ba3390565b6040516001600160a01b03909116815260200160405180910390a1565b600654600160a01b900460ff166119305760405162461bcd60e51b815260206004820152601460248201527f5061757361626c653a206e6f742070617573656400000000000000000000000060448201526064016107ef565b6006805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa336118ba565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03841690811790915581906119a682610c6d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611a585760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107ef565b6000611a6383610c6d565b9050806001600160a01b0316846001600160a01b03161480611a9e5750836001600160a01b0316611a938461077a565b6001600160a01b0316145b80611ace57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ae982610c6d565b6001600160a01b031614611b655760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e000000000000000000000000000000000000000000000060648201526084016107ef565b6001600160a01b038216611be05760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016107ef565b611beb600082611964565b6001600160a01b0383166000908152600360205260408120805460019290611c14908490612b13565b90915550506001600160a01b0382166000908152600360205260408120805460019290611c42908490612ac8565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600082611cbd8584612198565b14949350505050565b6008546007541115611d1a5760405162461bcd60e51b815260206004820152601b60248201527f566973696f6e73206f6620466c696768743a20536f6c64206f7574000000000060448201526064016107ef565b611d2681600754612252565b600754604080516001600160a01b038416815260208101929092527fb9144c96c86541f6fa89c9f2f02495cccf4b08cd6643e26d34ee00aa586558a8910160405180910390a1600754611d7a906001612ac8565b60075550565b600680546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b336000908152600d602052604081205460ff1615611e655760405162461bcd60e51b815260206004820152603160248201527f566973696f6e73206f6620466c696768743a20504f41502066726565206d696e60448201527f7420616c726561647920636c61696d656400000000000000000000000000000060648201526084016107ef565b611edd83838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050601254604080513360601b6bffffffffffffffffffffffff191660208083019190915282516014818403018152603490920190925280519101209092509050611cb0565b15611eea575060016106e2565b5060006106e2565b816001600160a01b0316836001600160a01b03161415611f545760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107ef565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611fcc848484611ad6565b611fd8848484846123a1565b61162f5760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016107ef565b60608161208a57505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b81156120b4578061209e81612b91565b91506120ad9050600a83612ae0565b915061208e565b60008167ffffffffffffffff8111156120dd57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612107576020820181803683370190505b5090505b8415611ace5761211c600183612b13565b9150612129600a86612bcc565b612134906030612ac8565b60f81b81838151811061215757634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350612191600a86612ae0565b945061210b565b600081815b845181101561224a5760008582815181106121c857634e487b7160e01b600052603260045260246000fd5b6020026020010151905080831161220a576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612237565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061224281612b91565b91505061219d565b509392505050565b6001600160a01b0382166122a85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107ef565b6000818152600260205260409020546001600160a01b03161561230d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107ef565b6001600160a01b0382166000908152600360205260408120805460019290612336908490612ac8565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b156124f957604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906123e5903390899088908890600401612a79565b602060405180830381600087803b1580156123ff57600080fd5b505af192505050801561242f575060408051601f3d908101601f1916820190925261242c918101906128d6565b60015b6124df573d80801561245d576040519150601f19603f3d011682016040523d82523d6000602084013e612462565b606091505b5080516124d75760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e746572000000000000000000000000000060648201526084016107ef565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ace565b506001949350505050565b82805461251090612b56565b90600052602060002090601f0160209004810192826125325760008555612578565b82601f1061254b5782800160ff19823516178555612578565b82800160010185558215612578579182015b8281111561257857823582559160200191906001019061255d565b50612584929150612588565b5090565b5b808211156125845760008155600101612589565b80356001600160a01b0381168114610d2757600080fd5b60008083601f8401126125c5578081fd5b50813567ffffffffffffffff8111156125dc578182fd5b6020830191508360208260051b85010111156125f757600080fd5b9250929050565b80358015158114610d2757600080fd5b60006020828403121561261f578081fd5b610c078261259d565b6000806040838503121561263a578081fd5b6126438361259d565b91506126516020840161259d565b90509250929050565b60008060006060848603121561266e578081fd5b6126778461259d565b92506126856020850161259d565b9150604084013590509250925092565b600080600080608085870312156126aa578081fd5b6126b38561259d565b93506126c16020860161259d565b925060408501359150606085013567ffffffffffffffff808211156126e4578283fd5b818701915087601f8301126126f7578283fd5b81358181111561270957612709612c0c565b604051601f8201601f19908116603f0116810190838211818310171561273157612731612c0c565b816040528281528a6020848701011115612749578586fd5b82602086016020830137918201602001949094529598949750929550505050565b60008060006040848603121561277e578283fd5b6127878461259d565b9250602084013567ffffffffffffffff8111156127a2578283fd5b6127ae868287016125b4565b9497909650939450505050565b600080604083850312156127cd578182fd5b6127d68361259d565b9150612651602084016125fe565b600080604083850312156127f6578182fd5b6127ff8361259d565b946020939093013593505050565b6000806040838503121561281f578182fd5b6128288361259d565b9150602083013560ff8116811461283d578182fd5b809150509250929050565b6000806020838503121561285a578182fd5b823567ffffffffffffffff811115612870578283fd5b61287c858286016125b4565b90969095509350505050565b600060208284031215612899578081fd5b610c07826125fe565b6000602082840312156128b3578081fd5b5035919050565b6000602082840312156128cb578081fd5b8135610c0781612c22565b6000602082840312156128e7578081fd5b8151610c0781612c22565b60008060208385031215612904578182fd5b823567ffffffffffffffff8082111561291b578384fd5b818501915085601f83011261292e578384fd5b81358181111561293c578485fd5b86602082850101111561294d578485fd5b60209290920196919550909350505050565b60008151808452612977816020860160208601612b2a565b601f01601f19169290920160200192915050565b6000815161299d818560208601612b2a565b9290920192915050565b600080845482600182811c9150808316806129c357607f831692505b60208084108214156129e357634e487b7160e01b87526022600452602487fd5b8180156129f75760018114612a0857612a34565b60ff19861689528489019650612a34565b60008b815260209020885b86811015612a2c5781548b820152908501908301612a13565b505084890196505b505050505050612a70612a47828661298b565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000815260050190565b95945050505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152612aab608083018461295f565b9695505050505050565b602081526000610c07602083018461295f565b60008219821115612adb57612adb612be0565b500190565b600082612aef57612aef612bf6565b500490565b6000816000190483118215151615612b0e57612b0e612be0565b500290565b600082821015612b2557612b25612be0565b500390565b60005b83811015612b45578181015183820152602001612b2d565b8381111561162f5750506000910152565b600181811c90821680612b6a57607f821691505b60208210811415612b8b57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612ba557612ba5612be0565b5060010190565b600060ff821660ff811415612bc357612bc3612be0565b60010192915050565b600082612bdb57612bdb612bf6565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461087c57600080fdfea2646970667358221220e4030817c038037f649f263060c68df558973e7790208e07a578d564bc03605b64736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000014000000000000000000000000015b7f743e2bcba33320e26d145d7628149d733370000000000000000000000001a003ae61b44a3ed1fafbf8549856a4da9c7312e0000000000000000000000000000000000000000000000000000000062bdc8800000000000000000000000000000000000000000000000000000000062bdf2b00000000000000000000000000000000000000000000000000000000062d067b000000000000000000000000000000000000000000000000000000000000001a000000000000000000000000000000000000000000000000000000000000003400000000000000000000000000000000000000000000000000000000000001260315c873909bdc0f6a1136edd5af5db8e6ea6fa066085efafc790fc6b34efcf710000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d54747050734a62716261435a5566424b5031465235657467616251637952465665566b5a574e53534e4734632f00000000000000000000000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000291f716cae9a8209747dc40894e8d9c118e662870000000000000000000000005ef058997cb0c673e9785790975b9b68b1d2bc9a000000000000000000000000f60f420e44532f6c652e14a0622c4758c78fcc1f0000000000000000000000000dc9dae35801061d99fa6fe0b18a34d216b7a0ee000000000000000000000000593257ba0247dde04e0cacbf1d4fe71fdae4bdbf000000000000000000000000067d68bdcbb652edad4b6430ef16a2f6ed6fd6d8000000000000000000000000a32a306cbe7c035592aa00b39138847a844ed8720000000000000000000000004ac1070d9913d2b0c42724e8035342c5d93eee90000000000000000000000000610329b3ab401e08793a4930f54d5573e8fa6b59000000000000000000000000ff0163926cd93c18a2eced7c379e05396bc5b3e5000000000000000000000000332678b3ddeb89a6e4fea39a83d5a64edafcf8e70000000000000000000000002e01c912c12cd6f64fa0a6e2dfdd59c6b649a27b00000000000000000000000000000000000000000000000000000000000000780000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb0000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb0000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb0000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb0000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb0000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb0000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb0000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb000000000000000000000000352e32ad9791c5cc8d8614cfd0748fa6500400fc000000000000000000000000352e32ad9791c5cc8d8614cfd0748fa6500400fc000000000000000000000000352e32ad9791c5cc8d8614cfd0748fa6500400fc000000000000000000000000352e32ad9791c5cc8d8614cfd0748fa6500400fc000000000000000000000000352e32ad9791c5cc8d8614cfd0748fa6500400fc000000000000000000000000352e32ad9791c5cc8d8614cfd0748fa6500400fc000000000000000000000000352e32ad9791c5cc8d8614cfd0748fa6500400fc000000000000000000000000352e32ad9791c5cc8d8614cfd0748fa6500400fc000000000000000000000000e300c56e979f53e2f24d5a360fe20bbebd673ae8000000000000000000000000e300c56e979f53e2f24d5a360fe20bbebd673ae8000000000000000000000000e300c56e979f53e2f24d5a360fe20bbebd673ae8000000000000000000000000e300c56e979f53e2f24d5a360fe20bbebd673ae800000000000000000000000003423785a55deba994f9455b698270c92f737b9400000000000000000000000003423785a55deba994f9455b698270c92f737b9400000000000000000000000003423785a55deba994f9455b698270c92f737b94000000000000000000000000d55fa743b5441d6ec80cad1a1a2563417d2381ee000000000000000000000000d55fa743b5441d6ec80cad1a1a2563417d2381ee000000000000000000000000d55fa743b5441d6ec80cad1a1a2563417d2381ee00000000000000000000000023d118d6b6ba1f7b1ca4dde13e26e6e1bd1b303900000000000000000000000023d118d6b6ba1f7b1ca4dde13e26e6e1bd1b303900000000000000000000000002970c31a80f7c4b022cd30c6f9e6c1c5b6e5ef400000000000000000000000002970c31a80f7c4b022cd30c6f9e6c1c5b6e5ef4000000000000000000000000054838fb00e7b33318b43fc9511eabfed192652b000000000000000000000000054838fb00e7b33318b43fc9511eabfed192652b0000000000000000000000000da78c9603b3d4d8fc4e9d2ef166fc93f4ea62380000000000000000000000000da78c9603b3d4d8fc4e9d2ef166fc93f4ea623800000000000000000000000066c76d369a45137c97313f8284b5459a2837b79a00000000000000000000000066c76d369a45137c97313f8284b5459a2837b79a0000000000000000000000009532d6f484da2930323f1a87cc29c3dd0c181e5a0000000000000000000000009532d6f484da2930323f1a87cc29c3dd0c181e5a000000000000000000000000acae35b0d856b3baff838d32beedfddc77729a3f000000000000000000000000acae35b0d856b3baff838d32beedfddc77729a3f00000000000000000000000012d0e76e2ab87a3f18c7b25cd56903eb96d00e0200000000000000000000000013d84744bd721ecdb0d5141f8c371644ece0382400000000000000000000000017c54d3f8bbdbf9ec3a395d67ea166b2ddf55b8e00000000000000000000000019146c86e34681074169e13b4bcaa6aa60e50b930000000000000000000000001dbb0a0c62dc6d320b30b120941091058d7651030000000000000000000000001f4d0f5874226fced4ec9792d95848526a0f1099000000000000000000000000201f948e98513abe8dc70047ba98a050fe67e9fb000000000000000000000000206fa2409ab411c416ea6003b97cb48fe3519c4a00000000000000000000000023eed9811095e71c261f2b6e95ffe4ed9642dbe10000000000000000000000002aaba4b94a805f0fea696dc11de324c2320ff4e10000000000000000000000002b5ac9107e0ffadcb5fa9bc9aaf42c9094693d470000000000000000000000002e951331013aa200a3fe439ccab4e0d28af4b27c0000000000000000000000003728f48f31b367b5ffeead814b10c4d0003b25d1000000000000000000000000387aad140df043d80c160a33d409b58cc9f03ec60000000000000000000000003c446158c8e6c145949b3a8e7479f4391e8738420000000000000000000000003cba27c5cdfef9df1bddb28738a2ca95a921a80300000000000000000000000042e250824bdf98f3e450784b0c1cdc3ac2f157e20000000000000000000000004aaa5dfa811b3ed71cdd6dccd09395dc08ef2c200000000000000000000000004d2bd3f5814b1fee14e2795a429aefedb5816fe700000000000000000000000052eb77844bd497aa3fe5f09256b4ba27472a22d500000000000000000000000052efdaa6d5f53c95fa7430641f4c51d78707f68c00000000000000000000000054c1316c11ee8086bdcf051680025f61c276e58a000000000000000000000000602012829e8b20a48bcd14e7a6a02afaedf0394e00000000000000000000000061626570902dfbdac61bc49d3842836ba93a0ff700000000000000000000000062a313eeb18fd8881c6832e7e4ab7602737743b0000000000000000000000000657e9191c533cb5c9b3d5b1b740bcdf297c256d30000000000000000000000006813e9cfb7319e0927ad3ba6dbf4c37a1fc0014a000000000000000000000000689717c0b1ab0f188235cfa487ced32feebf9698000000000000000000000000702c4904d5ced92367368f8c48c03957016eaea6000000000000000000000000725ded692c12948d5eb9efede9885ad369f590a6000000000000000000000000751f5ee4cebb80d2dbcb366d4f802b34e459f4c100000000000000000000000075a1e0a311a2486217d94c716d3f48861b54a753000000000000000000000000761f655d32aeb9d6eedf8e9d274b226537e49a3c00000000000000000000000077147b66c38025efed2ae359aa3ad3f253f7739c000000000000000000000000799b52e309d6d0e956ba1ebf6bf162846a8528dd0000000000000000000000007c90c6cacb389f149297fffee6255cba093bc4c20000000000000000000000007e641561cfa049d8b3067ac142952d3071d7b12f00000000000000000000000084679c195239c58a2dc9068f67a74b5d334a2b87000000000000000000000000894418ceb7216d87bc8912d1363976bf2d5fb45a0000000000000000000000008a4ce52587a29e58528c2c04e1e7c490ea4d69060000000000000000000000009094b9de66790e0a5ab0e3299d38afb037be458b000000000000000000000000025d2eba8300d2c18f9b3fe02b0cf5af910e2fd50000000000000000000000009ae2fd38f29db2581f2a28d7eed3ac9bb8ea1227000000000000000000000000a081ae42802e0be86f5a6dd9274adf50c9986a1d000000000000000000000000a09a2d4fd83786651aca4800270d2301336edc74000000000000000000000000a0ac662f58d3507a6f4a37f8532df201d9010fe7000000000000000000000000a17b38ad200c9f2f7fb0a207ae5148c26f210d42000000000000000000000000a3c04160d9ed4aefe11703e6584c43e97401beb2000000000000000000000000a7652f355c12a5a24ac1865218361704d02cc0a4000000000000000000000000a8bad4743bbdd8817d0042f82e350c29b728ec720000000000000000000000000ce4ff834866fff1486439bfe6e2dac6173d814e000000000000000000000000b107891dcb0864035a1b03374cb43bb76631b5b5000000000000000000000000b3276a67634206590d3e0f7192b4df34ec184eb9000000000000000000000000b48581628330fa73070a1661dfd899bbb9990e4f000000000000000000000000bae0108a66c13450a5ff6bcf253a03b57bb29bcc000000000000000000000000bd40ad5c8f59d140869504a55295ae650078fc41000000000000000000000000bd66d837a0f034e88edea79f7b9d61ccdd6fb0cc000000000000000000000000c4b57ce643bcfaeff739b71f27b45059df992398000000000000000000000000c5f59709974262c4afacc5386287820bdbc7eb3a000000000000000000000000c9ed37c994444e6d22f674b0a036d9a41b998650000000000000000000000000cd21d7cb36f0bd063c99b9fc7565335fa24029d5000000000000000000000000cd8f56c841e5253667e9318c9b1a82462622b918000000000000000000000000cdd11e788ffee7a1a5e032ecf01fcc441ee8cfd7000000000000000000000000d11efe96527fda776b1530ad157c8160533cb5e4000000000000000000000000d435b22d96bfe40752e8b01596c1e95b3fef3afa0000000000000000000000001007fe81bc3e683d4ab739095b2ab0bf60c29b9b000000000000000000000000d7e2cc2093dc3c8de78227b4291315f601925039000000000000000000000000d88f08d57189bc1f1498d6851d45b9eca432ba26000000000000000000000000d940a6f51b98caf2aa6f89f53e61dcc9bcefb12f000000000000000000000000da3d8e3ee7a9599cfdf9235bb3dadaa5749ccfc600000000000000000000000012b8b6fa80634cde28ec5d3318b5db9165347fc6000000000000000000000000e4bbcbff51e61d0d95fcc5016609ac8354b177c4000000000000000000000000e8c8dda5be69e623a45536081716de00de789034000000000000000000000000e8e657fa217010fa28b6a4fff81545fa64f7e955000000000000000000000000ef096d11b4f5e0de86dab01ac8da0bebab81406e000000000000000000000000f23a873b5bc29d9269ad4a50f093477f4599c007000000000000000000000000fc93e57e1ec7271522b5b42c7ea364ce2ae968b8000000000000000000000000fcf1f9119bf7b2ec1977f53923247013a156f638000000000000000000000000fd325e438ab4e2bd3c2c2ecd8568bebbca4336be000000000000000000000000fded90a3b1348425577688866f798f94d77a0d02000000000000000000000000000000000000000000000000000000000000004300000000000000000000000043804905c02f551ec5420a88005bc66a1baf3ab00000000000000000000000009c6f3006085575d711a2b37f639047e9232c17590000000000000000000000008b9549b746b7b52cdfe1190453d889062867ebe0000000000000000000000000b5706fa06f213cdb18e1447fe3cb2bcf61f7c02000000000000000000000000030557e4c31c8ba250c1fc61f37dcc91e9c55f299000000000000000000000000dc100a60577c7494ad9a9f65f4a305fe2c7a11800000000000000000000000002f2967f82c24da4490a3c9b7ceb9b7c4d20f97860000000000000000000000009c90d785526ee998442fd356f206d46b71e37479000000000000000000000000d298eb462b39c34aab8de3b21038f6d36c4e98900000000000000000000000002eb98b35be91826417fe60c2d0cc2864b6024a9c000000000000000000000000dd188ef668c415efa27ccd449197c9fd2cd502ee0000000000000000000000003a8b42d45a312e3197804630d819bfdd48ac1897000000000000000000000000c69bcc156740ee8d4b0bd9fe4aca3e6d2a7ad93a0000000000000000000000002a0a01021e858b3edd41a82868bf57fc327337000000000000000000000000000b3c9e6477688fbd8d6fa56db7c51c2447af8c7c000000000000000000000000c47c0be8b55c2affe2bc1f925dd7a18f10614a0700000000000000000000000019d8da2674e8a025154153297ea3ab918debf96d0000000000000000000000001f40986d93857acdcf0584eacd0efd53c40aab760000000000000000000000002bae3b4c13c9bbb75d172399a91785c49357878100000000000000000000000038380d0955fb1424601ee29b251b96a282e65f5a0000000000000000000000004472bd2ab2fb0ef5a9f4a0125546b11fdd027b010000000000000000000000004c0f844d663c5cafdbb1dabe242e0beb007f7bd9000000000000000000000000a0a050eda4be33fdce2f3390293ed65540fedb47000000000000000000000000c705fa770fcc01ddda4f5b3855a41fd17112811a00000000000000000000000054a80e0417008db88036f4fb2c4646264717f7a60000000000000000000000003aae5cb048f87c8633890c961a43a70108aff5db00000000000000000000000004ece72dc3c89ee8e666d0cf1f39256a9a1f4a25000000000000000000000000c3fff4fa1634c71a93a8530808c2152e8beab323000000000000000000000000daae9bee68e1368b5db8f783db13e0b83555d0f8000000000000000000000000c5e068e8ec9f59a7aafea1acfb8a99cff339dff400000000000000000000000094c685f0e159f54b6d02a1627471fbdd0648a9ca000000000000000000000000d0883a8413510e78ac18c7a5cd565bab5651cf53000000000000000000000000386da3dfff661e9924e50261c6953db1e5f29107000000000000000000000000a115201e245f16cca90ee1039290b690dddb5ef50000000000000000000000007b6f2f3032664691586aedfeadbd60d6f5d88da6000000000000000000000000def5dce85966199f96a6de42ecb492c73ace9f7d0000000000000000000000008a5b26a334dc45c76d2e9ee9e1378388e507382d000000000000000000000000f2e487c77f7227366542a059dae2b0d3d5ef1ad70000000000000000000000004f64f72bf580b150f675859ec0ee4ac5458c0e180000000000000000000000007b1bde06c90e6cf5047e5b7510001d324eafb92000000000000000000000000039bfe97b1f92fcdd614122083ba12e0691dcebd7000000000000000000000000932a9749a8844354448c235971ccb8d0f4e2bff9000000000000000000000000ec24ed76470f498c485a43a1d79fee0b4a16939000000000000000000000000063a237e409c8d341b7fb449e10b1b1eabd7f4300000000000000000000000000bcfff26d3cd1ff70a0bfb6e7c0bc55674387b4580000000000000000000000008b6cf03a3f560c035ab15b10530a8e08eec76854000000000000000000000000a0c6e1fb83e1c63de3ac2fde45d7dfba8b538bd2000000000000000000000000883b79f78bb18b8a90769c494e5528b2f6abc0f000000000000000000000000089d274bd6bf00d2e910d7778c98a35a186211b380000000000000000000000003296b3565544036c3277798e20fcb9c14f094d920000000000000000000000009c4cdbf75985e330794af11195f07124d6a7b35d0000000000000000000000003954b79f1ed5b26642a72edd233bd72b27bb65170000000000000000000000002cea3877170c1abe48a6e3ab392f893f3a74293c0000000000000000000000005a6f7cd6580bd96c170b12812dbc6faf44b0bef8000000000000000000000000ea6a4da15e9cb92c3f48522f4c05e34da9e9968c000000000000000000000000521792372f13224a72ec8a3c64cd1c2167c1eff2000000000000000000000000bc23d67d4f42ff85ffe9590d3253d048d0da93b0000000000000000000000000be5837b0a6ebd3a4ea573deb783749addef428910000000000000000000000003ab208d3ce512f2ac0aa821eecf2b816a96799b000000000000000000000000023d0e888f6c83d2753c8e9d6774e38a86c80c031000000000000000000000000b3563c5c23383b4f6cadc6ad21d294b307cbc447000000000000000000000000d6b8d714d98057dac37034eaa26dd013b18d81da0000000000000000000000004c612f4af79838de28964396de5d1dd47668bac30000000000000000000000007067804a78b19de62aafe50866fbe0ed7d7b132c000000000000000000000000ca68a84ed0073f856faa3ae01465a83307311801000000000000000000000000d22dbca9a2decbcfbdfa98eee401a33482d577cd000000000000000000000000d1daac5a9eb775305fd3c9a03173251504aa2724

-----Decoded View---------------
Arg [0] : metadataBaseURI (string): ipfs://QmTtpPsJbqbaCZUfBKP1FR5etgabQcyRFVeVkZWNSSNG4c/
Arg [1] : _divisionStWallet (address): 0x15b7f743e2bcBA33320e26d145D7628149D73337
Arg [2] : _athletesWallet (address): 0x1a003aE61B44A3eD1fAfBf8549856a4Da9c7312E
Arg [3] : _claimOpensAt (uint256): 1656604800
Arg [4] : _saleStartsAt (uint256): 1656615600
Arg [5] : _saleEndsAt (uint256): 1657825200
Arg [6] : athletePremints (address[]): 0x291f716Cae9A8209747dC40894e8D9c118e66287,0x5EF058997Cb0C673e9785790975b9b68B1D2BC9a,0xF60f420e44532f6C652E14A0622C4758C78fcC1F,0x0DC9dAe35801061d99FA6Fe0B18a34d216B7a0Ee,0x593257BA0247DDE04e0cACbf1D4fE71fdaE4BDBF,0x067d68BdcbB652EdAD4B6430ef16a2f6eD6FD6d8,0xA32A306Cbe7C035592aA00B39138847a844eD872,0x4ac1070d9913d2b0c42724e8035342c5D93EeE90,0x610329B3Ab401e08793A4930f54d5573E8fA6b59,0xFf0163926cd93c18a2eCED7c379E05396bC5B3E5,0x332678B3ddeb89a6e4fea39a83D5A64EDafcf8E7,0x2e01C912c12CD6f64Fa0A6e2dFDD59c6B649A27B
Arg [7] : ffTokenHolders (address[]): 0x6e3AA85dB95BBA36276a37ED93B12B7AB0782aFB,0x6e3AA85dB95BBA36276a37ED93B12B7AB0782aFB,0x6e3AA85dB95BBA36276a37ED93B12B7AB0782aFB,0x6e3AA85dB95BBA36276a37ED93B12B7AB0782aFB,0x6e3AA85dB95BBA36276a37ED93B12B7AB0782aFB,0x6e3AA85dB95BBA36276a37ED93B12B7AB0782aFB,0x6e3AA85dB95BBA36276a37ED93B12B7AB0782aFB,0x6e3AA85dB95BBA36276a37ED93B12B7AB0782aFB,0x352e32Ad9791C5cc8d8614cfD0748FA6500400fC,0x352e32Ad9791C5cc8d8614cfD0748FA6500400fC,0x352e32Ad9791C5cc8d8614cfD0748FA6500400fC,0x352e32Ad9791C5cc8d8614cfD0748FA6500400fC,0x352e32Ad9791C5cc8d8614cfD0748FA6500400fC,0x352e32Ad9791C5cc8d8614cfD0748FA6500400fC,0x352e32Ad9791C5cc8d8614cfD0748FA6500400fC,0x352e32Ad9791C5cc8d8614cfD0748FA6500400fC,0xe300C56E979f53e2F24d5A360fE20bBeBD673ae8,0xe300C56E979f53e2F24d5A360fE20bBeBD673ae8,0xe300C56E979f53e2F24d5A360fE20bBeBD673ae8,0xe300C56E979f53e2F24d5A360fE20bBeBD673ae8,0x03423785A55debA994f9455b698270c92F737b94,0x03423785A55debA994f9455b698270c92F737b94,0x03423785A55debA994f9455b698270c92F737b94,0xD55Fa743B5441d6Ec80CaD1A1a2563417D2381ee,0xD55Fa743B5441d6Ec80CaD1A1a2563417D2381ee,0xD55Fa743B5441d6Ec80CaD1A1a2563417D2381ee,0x23D118d6b6bA1F7B1cA4dde13E26E6E1BD1b3039,0x23D118d6b6bA1F7B1cA4dde13E26E6E1BD1b3039,0x02970C31A80F7c4b022cd30c6F9e6C1C5b6E5eF4,0x02970C31A80F7c4b022cd30c6F9e6C1C5b6E5eF4,0x054838FB00e7B33318B43fC9511eABFED192652b,0x054838FB00e7B33318B43fC9511eABFED192652b,0x0DA78C9603b3D4D8fC4E9D2Ef166Fc93F4Ea6238,0x0DA78C9603b3D4D8fC4E9D2Ef166Fc93F4Ea6238,0x66C76d369a45137c97313f8284b5459A2837b79A,0x66C76d369a45137c97313f8284b5459A2837b79A,0x9532d6F484da2930323F1a87cC29c3Dd0c181E5a,0x9532d6F484da2930323F1a87cC29c3Dd0c181E5a,0xacAe35B0d856b3bAff838d32BeEdFDDc77729a3f,0xacAe35B0d856b3bAff838d32BeEdFDDc77729a3f,0x12d0E76e2aB87A3f18C7B25cD56903eB96d00E02,0x13d84744BD721eCDB0D5141F8c371644ece03824,0x17c54d3F8BBDbF9eC3A395D67ea166B2dDF55b8E,0x19146C86E34681074169e13b4BCAa6Aa60E50B93,0x1dbB0a0C62DC6d320b30b120941091058d765103,0x1f4d0F5874226Fced4Ec9792d95848526a0f1099,0x201F948e98513aBE8dc70047bA98A050fE67E9fB,0x206fa2409AB411c416eA6003b97Cb48fE3519c4a,0x23EeD9811095E71C261F2B6e95ffE4eD9642Dbe1,0x2AaBa4b94A805F0feA696dC11DE324C2320ff4e1,0x2b5aC9107e0FfADCB5fa9bc9AAf42C9094693d47,0x2e951331013aa200A3fE439cCAb4E0D28AF4b27c,0x3728F48F31B367b5ffeeaD814B10C4D0003B25D1,0x387aAD140dF043D80C160a33D409B58cC9f03ec6,0x3C446158C8e6c145949B3A8e7479F4391E873842,0x3cba27c5CDfEF9DF1BDDB28738A2cA95A921a803,0x42E250824bDf98F3E450784b0C1CDC3ac2f157E2,0x4AAA5dFA811B3eD71cDd6dCcD09395DC08ef2c20,0x4D2bd3f5814B1feE14E2795a429AefedB5816fE7,0x52eb77844BD497Aa3Fe5F09256b4bA27472a22d5,0x52EfDAA6D5F53c95fA7430641F4C51d78707F68c,0x54C1316c11Ee8086BDCF051680025f61c276e58a,0x602012829e8B20a48BCd14e7a6A02aFAeDf0394E,0x61626570902DFBDAc61bc49D3842836Ba93a0Ff7,0x62a313eeB18FD8881c6832E7e4ab7602737743b0,0x657e9191c533Cb5c9B3D5b1b740BcDf297C256D3,0x6813E9cfB7319e0927ad3ba6DBf4C37a1FC0014a,0x689717c0B1Ab0f188235CfA487CeD32fEEbF9698,0x702C4904D5CeD92367368F8C48C03957016eAea6,0x725deD692C12948d5EB9EfeDE9885AD369f590A6,0x751F5Ee4cEBb80D2dBCB366d4f802B34e459F4C1,0x75A1E0a311A2486217d94C716D3f48861B54A753,0x761F655D32aEB9d6EEDf8E9D274b226537E49a3c,0x77147B66C38025eFEd2AE359Aa3aD3F253f7739C,0x799b52E309D6d0e956ba1EbF6bF162846A8528DD,0x7c90C6CACb389F149297FfFeE6255CBa093bC4C2,0x7e641561cfA049D8b3067aC142952d3071D7b12F,0x84679C195239c58A2dC9068f67A74B5d334A2B87,0x894418ceb7216D87bC8912d1363976BF2D5fb45a,0x8A4ce52587a29e58528C2c04E1E7C490ea4d6906,0x9094b9De66790E0a5aB0e3299D38AFB037be458B,0x025d2Eba8300D2C18f9b3Fe02b0Cf5Af910E2fd5,0x9AE2fD38F29DB2581f2a28D7EEd3AC9bb8eA1227,0xa081AE42802E0Be86f5A6dD9274ADf50C9986a1D,0xA09a2D4fd83786651aca4800270D2301336Edc74,0xA0Ac662F58d3507A6F4A37F8532dF201d9010fE7,0xa17b38AD200C9F2F7Fb0a207Ae5148c26f210D42,0xa3c04160d9eD4aefE11703E6584c43E97401beb2,0xa7652F355c12a5A24aC1865218361704d02cC0a4,0xA8BAd4743Bbdd8817D0042f82e350C29B728ec72,0x0ce4fF834866fff1486439bFe6E2daC6173d814E,0xB107891dCb0864035a1B03374Cb43Bb76631b5b5,0xB3276A67634206590D3E0F7192B4dF34EC184EB9,0xb48581628330Fa73070A1661DFd899bBb9990e4F,0xbAE0108A66c13450a5fF6BcF253a03b57Bb29bCc,0xbD40Ad5c8F59D140869504a55295Ae650078fc41,0xBD66d837A0f034e88EdeA79F7b9d61ccdd6fB0CC,0xC4b57cE643BcFaEff739b71f27b45059Df992398,0xc5F59709974262c4AFacc5386287820bDBC7eB3A,0xc9eD37c994444E6d22f674b0a036D9a41B998650,0xcd21d7CB36f0BD063C99B9Fc7565335Fa24029D5,0xCd8f56c841e5253667e9318C9B1A82462622B918,0xcdd11E788fFEE7A1A5E032ecF01FCc441eE8CfD7,0xd11EFe96527fdA776B1530ad157C8160533cB5e4,0xD435b22D96bFE40752e8b01596C1E95b3FeF3aFA,0x1007FE81BC3e683D4ab739095B2Ab0Bf60c29B9b,0xd7E2CC2093dC3c8DE78227b4291315f601925039,0xd88F08D57189Bc1f1498D6851d45b9EcA432bA26,0xd940a6F51b98CAF2AA6f89F53E61dCc9bCEFb12f,0xDa3d8e3ee7A9599cfDf9235bB3dadAA5749CCfC6,0x12b8b6FA80634CDe28eC5d3318B5DB9165347fc6,0xe4bBCbFf51e61D0D95FcC5016609aC8354B177C4,0xe8c8dDa5BE69e623A45536081716De00de789034,0xE8e657Fa217010fA28b6a4ffF81545fA64F7E955,0xEF096d11B4F5e0De86daB01ac8Da0bEbaB81406e,0xF23A873B5Bc29D9269Ad4a50F093477f4599C007,0xfC93E57E1ec7271522B5B42C7ea364cE2ae968b8,0xFcf1F9119Bf7b2Ec1977F53923247013a156F638,0xFD325e438ab4e2Bd3C2c2EcD8568BEBbCa4336be,0xfDeD90A3B1348425577688866f798f94d77A0D02
Arg [8] : singleVoucherTokenHolders (address[]): 0x43804905C02f551ec5420A88005Bc66a1BAF3ab0,0x9c6f3006085575D711a2b37f639047E9232c1759,0x8b9549B746B7B52Cdfe1190453D889062867ebE0,0xB5706Fa06F213cdb18E1447FE3cB2BCF61F7c020,0x30557e4c31c8BA250c1fC61f37dcC91e9c55F299,0xDC100a60577C7494AD9A9F65F4A305fe2C7a1180,0x2F2967F82c24DA4490a3c9b7ceb9B7c4D20f9786,0x9c90d785526Ee998442FD356F206d46B71e37479,0xD298EB462B39c34AAb8De3b21038f6d36C4E9890,0x2eb98b35Be91826417Fe60c2D0cC2864B6024a9C,0xDd188ef668c415eFa27CCd449197c9fD2Cd502ee,0x3A8b42d45A312E3197804630d819BfDd48aC1897,0xC69BcC156740ee8D4b0bD9Fe4aca3e6D2A7aD93a,0x2A0A01021e858b3Edd41A82868Bf57FC32733700,0x0b3C9e6477688FBD8D6fa56dB7C51C2447Af8C7C,0xC47c0be8B55c2AffE2bC1f925dD7A18f10614A07,0x19D8da2674E8A025154153297ea3AB918DebF96d,0x1f40986d93857AcDcf0584eACD0eFD53c40AAB76,0x2BaE3b4C13c9bbB75D172399a91785C493578781,0x38380D0955Fb1424601Ee29b251B96A282e65F5A,0x4472Bd2ab2FB0eF5A9f4a0125546B11fDd027B01,0x4c0f844d663C5cAfdbb1DaBe242E0bEB007f7BD9,0xA0a050eda4BE33fdcE2F3390293ed65540feDB47,0xC705fA770fcC01dDDa4f5B3855A41fd17112811A,0x54A80e0417008dB88036F4Fb2C4646264717f7a6,0x3AaE5cB048f87c8633890C961A43A70108afF5dB,0x04ecE72Dc3C89ee8E666D0cf1f39256a9A1f4A25,0xC3FFf4FA1634c71A93A8530808c2152E8BEaB323,0xDAaE9BEe68E1368b5db8f783DB13E0B83555D0f8,0xc5E068e8Ec9F59a7AafEa1AcfB8a99CfF339Dff4,0x94c685F0E159F54B6D02a1627471fbdd0648a9CA,0xd0883A8413510e78AC18c7a5cd565Bab5651cF53,0x386dA3dFFF661e9924E50261c6953DB1e5f29107,0xa115201E245f16CcA90Ee1039290b690dddB5ef5,0x7B6f2f3032664691586AEDfeadBd60D6F5d88DA6,0xDef5dce85966199F96a6dE42EcB492c73ACE9F7d,0x8A5b26A334DC45C76D2e9ee9e1378388E507382D,0xf2e487C77F7227366542a059DaE2B0d3D5eF1aD7,0x4f64F72BF580b150F675859eC0Ee4ac5458C0e18,0x7B1BDe06C90e6cf5047E5B7510001D324EafB920,0x39bFE97b1F92FCdd614122083BA12e0691dCEBD7,0x932a9749a8844354448c235971ccB8D0f4e2bff9,0xec24eD76470F498c485A43A1D79FEE0b4a169390,0x63a237e409C8D341B7fB449e10B1b1EabD7F4300,0xBcfFF26D3cD1Ff70A0BfB6e7C0Bc55674387b458,0x8b6cf03a3f560C035ab15B10530A8E08Eec76854,0xa0c6E1fb83e1C63dE3aC2fdE45d7DFBa8B538bd2,0x883b79f78bb18b8a90769C494e5528b2f6aBC0f0,0x89d274BD6BF00d2E910d7778c98A35a186211b38,0x3296b3565544036c3277798E20FCb9C14F094d92,0x9C4CDBf75985E330794AF11195F07124D6a7B35D,0x3954B79f1eD5B26642a72Edd233bd72b27bB6517,0x2Cea3877170C1ABE48a6e3aB392f893f3A74293c,0x5a6F7CD6580Bd96C170b12812dbc6Faf44B0BEF8,0xEa6A4DA15e9Cb92c3f48522f4c05E34Da9e9968C,0x521792372f13224a72eC8a3C64CD1C2167C1EFF2,0xbC23d67d4F42FF85fFE9590D3253D048d0Da93b0,0xBE5837B0A6eBD3a4Ea573Deb783749AddeF42891,0x3ab208D3CE512F2ac0Aa821Eecf2B816A96799B0,0x23D0E888F6c83d2753C8e9d6774e38a86c80C031,0xb3563c5c23383b4F6Cadc6Ad21D294B307Cbc447,0xd6b8d714d98057Dac37034Eaa26Dd013B18D81Da,0x4C612F4AF79838DE28964396DE5D1DD47668baC3,0x7067804a78B19De62aaFE50866fBe0Ed7d7b132C,0xCa68A84ed0073f856FAA3ae01465A83307311801,0xD22dbCA9A2dECBcFBdfa98EEE401A33482D577cd,0xD1DAaC5A9EB775305fd3C9a03173251504AA2724
Arg [9] : _merkleRoot (bytes32): 0x315c873909bdc0f6a1136edd5af5db8e6ea6fa066085efafc790fc6b34efcf71

-----Encoded View---------------
215 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [1] : 00000000000000000000000015b7f743e2bcba33320e26d145d7628149d73337
Arg [2] : 0000000000000000000000001a003ae61b44a3ed1fafbf8549856a4da9c7312e
Arg [3] : 0000000000000000000000000000000000000000000000000000000062bdc880
Arg [4] : 0000000000000000000000000000000000000000000000000000000062bdf2b0
Arg [5] : 0000000000000000000000000000000000000000000000000000000062d067b0
Arg [6] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000340
Arg [8] : 0000000000000000000000000000000000000000000000000000000000001260
Arg [9] : 315c873909bdc0f6a1136edd5af5db8e6ea6fa066085efafc790fc6b34efcf71
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [11] : 697066733a2f2f516d54747050734a62716261435a5566424b50314652356574
Arg [12] : 67616251637952465665566b5a574e53534e4734632f00000000000000000000
Arg [13] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [14] : 000000000000000000000000291f716cae9a8209747dc40894e8d9c118e66287
Arg [15] : 0000000000000000000000005ef058997cb0c673e9785790975b9b68b1d2bc9a
Arg [16] : 000000000000000000000000f60f420e44532f6c652e14a0622c4758c78fcc1f
Arg [17] : 0000000000000000000000000dc9dae35801061d99fa6fe0b18a34d216b7a0ee
Arg [18] : 000000000000000000000000593257ba0247dde04e0cacbf1d4fe71fdae4bdbf
Arg [19] : 000000000000000000000000067d68bdcbb652edad4b6430ef16a2f6ed6fd6d8
Arg [20] : 000000000000000000000000a32a306cbe7c035592aa00b39138847a844ed872
Arg [21] : 0000000000000000000000004ac1070d9913d2b0c42724e8035342c5d93eee90
Arg [22] : 000000000000000000000000610329b3ab401e08793a4930f54d5573e8fa6b59
Arg [23] : 000000000000000000000000ff0163926cd93c18a2eced7c379e05396bc5b3e5
Arg [24] : 000000000000000000000000332678b3ddeb89a6e4fea39a83d5a64edafcf8e7
Arg [25] : 0000000000000000000000002e01c912c12cd6f64fa0a6e2dfdd59c6b649a27b
Arg [26] : 0000000000000000000000000000000000000000000000000000000000000078
Arg [27] : 0000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb
Arg [28] : 0000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb
Arg [29] : 0000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb
Arg [30] : 0000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb
Arg [31] : 0000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb
Arg [32] : 0000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb
Arg [33] : 0000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb
Arg [34] : 0000000000000000000000006e3aa85db95bba36276a37ed93b12b7ab0782afb
Arg [35] : 000000000000000000000000352e32ad9791c5cc8d8614cfd0748fa6500400fc
Arg [36] : 000000000000000000000000352e32ad9791c5cc8d8614cfd0748fa6500400fc
Arg [37] : 000000000000000000000000352e32ad9791c5cc8d8614cfd0748fa6500400fc
Arg [38] : 000000000000000000000000352e32ad9791c5cc8d8614cfd0748fa6500400fc
Arg [39] : 000000000000000000000000352e32ad9791c5cc8d8614cfd0748fa6500400fc
Arg [40] : 000000000000000000000000352e32ad9791c5cc8d8614cfd0748fa6500400fc
Arg [41] : 000000000000000000000000352e32ad9791c5cc8d8614cfd0748fa6500400fc
Arg [42] : 000000000000000000000000352e32ad9791c5cc8d8614cfd0748fa6500400fc
Arg [43] : 000000000000000000000000e300c56e979f53e2f24d5a360fe20bbebd673ae8
Arg [44] : 000000000000000000000000e300c56e979f53e2f24d5a360fe20bbebd673ae8
Arg [45] : 000000000000000000000000e300c56e979f53e2f24d5a360fe20bbebd673ae8
Arg [46] : 000000000000000000000000e300c56e979f53e2f24d5a360fe20bbebd673ae8
Arg [47] : 00000000000000000000000003423785a55deba994f9455b698270c92f737b94
Arg [48] : 00000000000000000000000003423785a55deba994f9455b698270c92f737b94
Arg [49] : 00000000000000000000000003423785a55deba994f9455b698270c92f737b94
Arg [50] : 000000000000000000000000d55fa743b5441d6ec80cad1a1a2563417d2381ee
Arg [51] : 000000000000000000000000d55fa743b5441d6ec80cad1a1a2563417d2381ee
Arg [52] : 000000000000000000000000d55fa743b5441d6ec80cad1a1a2563417d2381ee
Arg [53] : 00000000000000000000000023d118d6b6ba1f7b1ca4dde13e26e6e1bd1b3039
Arg [54] : 00000000000000000000000023d118d6b6ba1f7b1ca4dde13e26e6e1bd1b3039
Arg [55] : 00000000000000000000000002970c31a80f7c4b022cd30c6f9e6c1c5b6e5ef4
Arg [56] : 00000000000000000000000002970c31a80f7c4b022cd30c6f9e6c1c5b6e5ef4
Arg [57] : 000000000000000000000000054838fb00e7b33318b43fc9511eabfed192652b
Arg [58] : 000000000000000000000000054838fb00e7b33318b43fc9511eabfed192652b
Arg [59] : 0000000000000000000000000da78c9603b3d4d8fc4e9d2ef166fc93f4ea6238
Arg [60] : 0000000000000000000000000da78c9603b3d4d8fc4e9d2ef166fc93f4ea6238
Arg [61] : 00000000000000000000000066c76d369a45137c97313f8284b5459a2837b79a
Arg [62] : 00000000000000000000000066c76d369a45137c97313f8284b5459a2837b79a
Arg [63] : 0000000000000000000000009532d6f484da2930323f1a87cc29c3dd0c181e5a
Arg [64] : 0000000000000000000000009532d6f484da2930323f1a87cc29c3dd0c181e5a
Arg [65] : 000000000000000000000000acae35b0d856b3baff838d32beedfddc77729a3f
Arg [66] : 000000000000000000000000acae35b0d856b3baff838d32beedfddc77729a3f
Arg [67] : 00000000000000000000000012d0e76e2ab87a3f18c7b25cd56903eb96d00e02
Arg [68] : 00000000000000000000000013d84744bd721ecdb0d5141f8c371644ece03824
Arg [69] : 00000000000000000000000017c54d3f8bbdbf9ec3a395d67ea166b2ddf55b8e
Arg [70] : 00000000000000000000000019146c86e34681074169e13b4bcaa6aa60e50b93
Arg [71] : 0000000000000000000000001dbb0a0c62dc6d320b30b120941091058d765103
Arg [72] : 0000000000000000000000001f4d0f5874226fced4ec9792d95848526a0f1099
Arg [73] : 000000000000000000000000201f948e98513abe8dc70047ba98a050fe67e9fb
Arg [74] : 000000000000000000000000206fa2409ab411c416ea6003b97cb48fe3519c4a
Arg [75] : 00000000000000000000000023eed9811095e71c261f2b6e95ffe4ed9642dbe1
Arg [76] : 0000000000000000000000002aaba4b94a805f0fea696dc11de324c2320ff4e1
Arg [77] : 0000000000000000000000002b5ac9107e0ffadcb5fa9bc9aaf42c9094693d47
Arg [78] : 0000000000000000000000002e951331013aa200a3fe439ccab4e0d28af4b27c
Arg [79] : 0000000000000000000000003728f48f31b367b5ffeead814b10c4d0003b25d1
Arg [80] : 000000000000000000000000387aad140df043d80c160a33d409b58cc9f03ec6
Arg [81] : 0000000000000000000000003c446158c8e6c145949b3a8e7479f4391e873842
Arg [82] : 0000000000000000000000003cba27c5cdfef9df1bddb28738a2ca95a921a803
Arg [83] : 00000000000000000000000042e250824bdf98f3e450784b0c1cdc3ac2f157e2
Arg [84] : 0000000000000000000000004aaa5dfa811b3ed71cdd6dccd09395dc08ef2c20
Arg [85] : 0000000000000000000000004d2bd3f5814b1fee14e2795a429aefedb5816fe7
Arg [86] : 00000000000000000000000052eb77844bd497aa3fe5f09256b4ba27472a22d5
Arg [87] : 00000000000000000000000052efdaa6d5f53c95fa7430641f4c51d78707f68c
Arg [88] : 00000000000000000000000054c1316c11ee8086bdcf051680025f61c276e58a
Arg [89] : 000000000000000000000000602012829e8b20a48bcd14e7a6a02afaedf0394e
Arg [90] : 00000000000000000000000061626570902dfbdac61bc49d3842836ba93a0ff7
Arg [91] : 00000000000000000000000062a313eeb18fd8881c6832e7e4ab7602737743b0
Arg [92] : 000000000000000000000000657e9191c533cb5c9b3d5b1b740bcdf297c256d3
Arg [93] : 0000000000000000000000006813e9cfb7319e0927ad3ba6dbf4c37a1fc0014a
Arg [94] : 000000000000000000000000689717c0b1ab0f188235cfa487ced32feebf9698
Arg [95] : 000000000000000000000000702c4904d5ced92367368f8c48c03957016eaea6
Arg [96] : 000000000000000000000000725ded692c12948d5eb9efede9885ad369f590a6
Arg [97] : 000000000000000000000000751f5ee4cebb80d2dbcb366d4f802b34e459f4c1
Arg [98] : 00000000000000000000000075a1e0a311a2486217d94c716d3f48861b54a753
Arg [99] : 000000000000000000000000761f655d32aeb9d6eedf8e9d274b226537e49a3c
Arg [100] : 00000000000000000000000077147b66c38025efed2ae359aa3ad3f253f7739c
Arg [101] : 000000000000000000000000799b52e309d6d0e956ba1ebf6bf162846a8528dd
Arg [102] : 0000000000000000000000007c90c6cacb389f149297fffee6255cba093bc4c2
Arg [103] : 0000000000000000000000007e641561cfa049d8b3067ac142952d3071d7b12f
Arg [104] : 00000000000000000000000084679c195239c58a2dc9068f67a74b5d334a2b87
Arg [105] : 000000000000000000000000894418ceb7216d87bc8912d1363976bf2d5fb45a
Arg [106] : 0000000000000000000000008a4ce52587a29e58528c2c04e1e7c490ea4d6906
Arg [107] : 0000000000000000000000009094b9de66790e0a5ab0e3299d38afb037be458b
Arg [108] : 000000000000000000000000025d2eba8300d2c18f9b3fe02b0cf5af910e2fd5
Arg [109] : 0000000000000000000000009ae2fd38f29db2581f2a28d7eed3ac9bb8ea1227
Arg [110] : 000000000000000000000000a081ae42802e0be86f5a6dd9274adf50c9986a1d
Arg [111] : 000000000000000000000000a09a2d4fd83786651aca4800270d2301336edc74
Arg [112] : 000000000000000000000000a0ac662f58d3507a6f4a37f8532df201d9010fe7
Arg [113] : 000000000000000000000000a17b38ad200c9f2f7fb0a207ae5148c26f210d42
Arg [114] : 000000000000000000000000a3c04160d9ed4aefe11703e6584c43e97401beb2
Arg [115] : 000000000000000000000000a7652f355c12a5a24ac1865218361704d02cc0a4
Arg [116] : 000000000000000000000000a8bad4743bbdd8817d0042f82e350c29b728ec72
Arg [117] : 0000000000000000000000000ce4ff834866fff1486439bfe6e2dac6173d814e
Arg [118] : 000000000000000000000000b107891dcb0864035a1b03374cb43bb76631b5b5
Arg [119] : 000000000000000000000000b3276a67634206590d3e0f7192b4df34ec184eb9
Arg [120] : 000000000000000000000000b48581628330fa73070a1661dfd899bbb9990e4f
Arg [121] : 000000000000000000000000bae0108a66c13450a5ff6bcf253a03b57bb29bcc
Arg [122] : 000000000000000000000000bd40ad5c8f59d140869504a55295ae650078fc41
Arg [123] : 000000000000000000000000bd66d837a0f034e88edea79f7b9d61ccdd6fb0cc
Arg [124] : 000000000000000000000000c4b57ce643bcfaeff739b71f27b45059df992398
Arg [125] : 000000000000000000000000c5f59709974262c4afacc5386287820bdbc7eb3a
Arg [126] : 000000000000000000000000c9ed37c994444e6d22f674b0a036d9a41b998650
Arg [127] : 000000000000000000000000cd21d7cb36f0bd063c99b9fc7565335fa24029d5
Arg [128] : 000000000000000000000000cd8f56c841e5253667e9318c9b1a82462622b918
Arg [129] : 000000000000000000000000cdd11e788ffee7a1a5e032ecf01fcc441ee8cfd7
Arg [130] : 000000000000000000000000d11efe96527fda776b1530ad157c8160533cb5e4
Arg [131] : 000000000000000000000000d435b22d96bfe40752e8b01596c1e95b3fef3afa
Arg [132] : 0000000000000000000000001007fe81bc3e683d4ab739095b2ab0bf60c29b9b
Arg [133] : 000000000000000000000000d7e2cc2093dc3c8de78227b4291315f601925039
Arg [134] : 000000000000000000000000d88f08d57189bc1f1498d6851d45b9eca432ba26
Arg [135] : 000000000000000000000000d940a6f51b98caf2aa6f89f53e61dcc9bcefb12f
Arg [136] : 000000000000000000000000da3d8e3ee7a9599cfdf9235bb3dadaa5749ccfc6
Arg [137] : 00000000000000000000000012b8b6fa80634cde28ec5d3318b5db9165347fc6
Arg [138] : 000000000000000000000000e4bbcbff51e61d0d95fcc5016609ac8354b177c4
Arg [139] : 000000000000000000000000e8c8dda5be69e623a45536081716de00de789034
Arg [140] : 000000000000000000000000e8e657fa217010fa28b6a4fff81545fa64f7e955
Arg [141] : 000000000000000000000000ef096d11b4f5e0de86dab01ac8da0bebab81406e
Arg [142] : 000000000000000000000000f23a873b5bc29d9269ad4a50f093477f4599c007
Arg [143] : 000000000000000000000000fc93e57e1ec7271522b5b42c7ea364ce2ae968b8
Arg [144] : 000000000000000000000000fcf1f9119bf7b2ec1977f53923247013a156f638
Arg [145] : 000000000000000000000000fd325e438ab4e2bd3c2c2ecd8568bebbca4336be
Arg [146] : 000000000000000000000000fded90a3b1348425577688866f798f94d77a0d02
Arg [147] : 0000000000000000000000000000000000000000000000000000000000000043
Arg [148] : 00000000000000000000000043804905c02f551ec5420a88005bc66a1baf3ab0
Arg [149] : 0000000000000000000000009c6f3006085575d711a2b37f639047e9232c1759
Arg [150] : 0000000000000000000000008b9549b746b7b52cdfe1190453d889062867ebe0
Arg [151] : 000000000000000000000000b5706fa06f213cdb18e1447fe3cb2bcf61f7c020
Arg [152] : 00000000000000000000000030557e4c31c8ba250c1fc61f37dcc91e9c55f299
Arg [153] : 000000000000000000000000dc100a60577c7494ad9a9f65f4a305fe2c7a1180
Arg [154] : 0000000000000000000000002f2967f82c24da4490a3c9b7ceb9b7c4d20f9786
Arg [155] : 0000000000000000000000009c90d785526ee998442fd356f206d46b71e37479
Arg [156] : 000000000000000000000000d298eb462b39c34aab8de3b21038f6d36c4e9890
Arg [157] : 0000000000000000000000002eb98b35be91826417fe60c2d0cc2864b6024a9c
Arg [158] : 000000000000000000000000dd188ef668c415efa27ccd449197c9fd2cd502ee
Arg [159] : 0000000000000000000000003a8b42d45a312e3197804630d819bfdd48ac1897
Arg [160] : 000000000000000000000000c69bcc156740ee8d4b0bd9fe4aca3e6d2a7ad93a
Arg [161] : 0000000000000000000000002a0a01021e858b3edd41a82868bf57fc32733700
Arg [162] : 0000000000000000000000000b3c9e6477688fbd8d6fa56db7c51c2447af8c7c
Arg [163] : 000000000000000000000000c47c0be8b55c2affe2bc1f925dd7a18f10614a07
Arg [164] : 00000000000000000000000019d8da2674e8a025154153297ea3ab918debf96d
Arg [165] : 0000000000000000000000001f40986d93857acdcf0584eacd0efd53c40aab76
Arg [166] : 0000000000000000000000002bae3b4c13c9bbb75d172399a91785c493578781
Arg [167] : 00000000000000000000000038380d0955fb1424601ee29b251b96a282e65f5a
Arg [168] : 0000000000000000000000004472bd2ab2fb0ef5a9f4a0125546b11fdd027b01
Arg [169] : 0000000000000000000000004c0f844d663c5cafdbb1dabe242e0beb007f7bd9
Arg [170] : 000000000000000000000000a0a050eda4be33fdce2f3390293ed65540fedb47
Arg [171] : 000000000000000000000000c705fa770fcc01ddda4f5b3855a41fd17112811a
Arg [172] : 00000000000000000000000054a80e0417008db88036f4fb2c4646264717f7a6
Arg [173] : 0000000000000000000000003aae5cb048f87c8633890c961a43a70108aff5db
Arg [174] : 00000000000000000000000004ece72dc3c89ee8e666d0cf1f39256a9a1f4a25
Arg [175] : 000000000000000000000000c3fff4fa1634c71a93a8530808c2152e8beab323
Arg [176] : 000000000000000000000000daae9bee68e1368b5db8f783db13e0b83555d0f8
Arg [177] : 000000000000000000000000c5e068e8ec9f59a7aafea1acfb8a99cff339dff4
Arg [178] : 00000000000000000000000094c685f0e159f54b6d02a1627471fbdd0648a9ca
Arg [179] : 000000000000000000000000d0883a8413510e78ac18c7a5cd565bab5651cf53
Arg [180] : 000000000000000000000000386da3dfff661e9924e50261c6953db1e5f29107
Arg [181] : 000000000000000000000000a115201e245f16cca90ee1039290b690dddb5ef5
Arg [182] : 0000000000000000000000007b6f2f3032664691586aedfeadbd60d6f5d88da6
Arg [183] : 000000000000000000000000def5dce85966199f96a6de42ecb492c73ace9f7d
Arg [184] : 0000000000000000000000008a5b26a334dc45c76d2e9ee9e1378388e507382d
Arg [185] : 000000000000000000000000f2e487c77f7227366542a059dae2b0d3d5ef1ad7
Arg [186] : 0000000000000000000000004f64f72bf580b150f675859ec0ee4ac5458c0e18
Arg [187] : 0000000000000000000000007b1bde06c90e6cf5047e5b7510001d324eafb920
Arg [188] : 00000000000000000000000039bfe97b1f92fcdd614122083ba12e0691dcebd7
Arg [189] : 000000000000000000000000932a9749a8844354448c235971ccb8d0f4e2bff9
Arg [190] : 000000000000000000000000ec24ed76470f498c485a43a1d79fee0b4a169390
Arg [191] : 00000000000000000000000063a237e409c8d341b7fb449e10b1b1eabd7f4300
Arg [192] : 000000000000000000000000bcfff26d3cd1ff70a0bfb6e7c0bc55674387b458
Arg [193] : 0000000000000000000000008b6cf03a3f560c035ab15b10530a8e08eec76854
Arg [194] : 000000000000000000000000a0c6e1fb83e1c63de3ac2fde45d7dfba8b538bd2
Arg [195] : 000000000000000000000000883b79f78bb18b8a90769c494e5528b2f6abc0f0
Arg [196] : 00000000000000000000000089d274bd6bf00d2e910d7778c98a35a186211b38
Arg [197] : 0000000000000000000000003296b3565544036c3277798e20fcb9c14f094d92
Arg [198] : 0000000000000000000000009c4cdbf75985e330794af11195f07124d6a7b35d
Arg [199] : 0000000000000000000000003954b79f1ed5b26642a72edd233bd72b27bb6517
Arg [200] : 0000000000000000000000002cea3877170c1abe48a6e3ab392f893f3a74293c
Arg [201] : 0000000000000000000000005a6f7cd6580bd96c170b12812dbc6faf44b0bef8
Arg [202] : 000000000000000000000000ea6a4da15e9cb92c3f48522f4c05e34da9e9968c
Arg [203] : 000000000000000000000000521792372f13224a72ec8a3c64cd1c2167c1eff2
Arg [204] : 000000000000000000000000bc23d67d4f42ff85ffe9590d3253d048d0da93b0
Arg [205] : 000000000000000000000000be5837b0a6ebd3a4ea573deb783749addef42891
Arg [206] : 0000000000000000000000003ab208d3ce512f2ac0aa821eecf2b816a96799b0
Arg [207] : 00000000000000000000000023d0e888f6c83d2753c8e9d6774e38a86c80c031
Arg [208] : 000000000000000000000000b3563c5c23383b4f6cadc6ad21d294b307cbc447
Arg [209] : 000000000000000000000000d6b8d714d98057dac37034eaa26dd013b18d81da
Arg [210] : 0000000000000000000000004c612f4af79838de28964396de5d1dd47668bac3
Arg [211] : 0000000000000000000000007067804a78b19de62aafe50866fbe0ed7d7b132c
Arg [212] : 000000000000000000000000ca68a84ed0073f856faa3ae01465a83307311801
Arg [213] : 000000000000000000000000d22dbca9a2decbcfbdfa98eee401a33482d577cd
Arg [214] : 000000000000000000000000d1daac5a9eb775305fd3c9a03173251504aa2724


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.