ETH Price: $3,396.60 (-1.50%)
Gas: 2 Gwei

Token

Women and Weapons (WAW)
 

Overview

Max Total Supply

10,000 WAW

Holders

5,815

Market

Volume (24H)

0.044 ETH

Min Price (24H)

$37.36 @ 0.011000 ETH

Max Price (24H)

$37.36 @ 0.011000 ETH
Balance
1 WAW
0x6590AbCDDfD3bb6C40e0B2006CEB67E84eD10BbA
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

10,000 diverse, beautiful, and badass women on the ETH Blockchain.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DropspaceSale

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 13 : DropspaceSale.sol
//SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.4;

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

contract DropspaceSale is IDropspaceSale, ERC721, Ownable {
    using SafeMath for uint256;
    using Strings for uint256;

    uint256 public override totalSupply = 0;
    uint256 public override mintLimit;
    uint256 public override mintPrice;
    uint256 public override supplyLimit;

    string public override baseURI;

    bool public override smartContractAllowance = false;
    bool public override saleActive;
    bool public override presaleActive;
    bool public override whitelistSaleActive;

    address payable public override withdrawalWallet;
    address payable public override devWallet;
    address public override ticketAddress;

    uint256 devSaleShare;
    uint256 ownerSaleShare;

    mapping(uint256 => bool) public override usedTickets;
    mapping(address => bool) public override whitelist;

    constructor(
        uint256 _supplyLimit, 
        uint256 _mintLimit,
        uint256 _mintPrice,
        uint256 _devSaleShare,
        address payable _withdrawalWallet,
        address payable _devWallet,
        address _ticketAddress,
        string memory _name,
        string memory _ticker,
        string memory _baseURI
    ) ERC721(_name, _ticker) {
        supplyLimit = _supplyLimit;
        mintLimit = _mintLimit;
        mintPrice = _mintPrice;
        withdrawalWallet = _withdrawalWallet;
        devWallet = _devWallet;
        ticketAddress = _ticketAddress;
        baseURI = _baseURI;
        devSaleShare = _devSaleShare;
        ownerSaleShare = uint256(10000).sub(devSaleShare);
    }

    modifier onlyWithdrawalWallet() {
        require(address(withdrawalWallet) == _msgSender(), 
            "DropspaceSale: caller is not the withdrawal wallet");
        _;
    }

    function emergencyWithdraw() external onlyOwner override {
        payable(owner()).transfer(address(this).balance);
    }

    function changeSupplyLimit(uint256 _supplyLimit) external onlyOwner override {
        supplyLimit = _supplyLimit;
        emit SupplyLimitChanged(_supplyLimit);
    }

    function setMintPrice(uint256 _mintPrice) external onlyOwner override {
        mintPrice = _mintPrice;
        emit MintPriceChanged(_mintPrice);
    }

    function setWhitelistStatus(address _user, bool _status) external onlyOwner override {
        whitelist[_user] = _status;
        emit WhitelistStatusChanged(_user, _status);
    }

    function addWhitelist(address[] memory _userList) external onlyOwner override {
        for(uint256 i = 0; i < _userList.length; i++) {
            whitelist[_userList[i]] = true;
            emit WhiteListAdded(_userList[i], true);
        }
    }

    function setDevSaleShare(uint256 _devSaleShare) external override onlyOwner {
        devSaleShare = _devSaleShare;
        ownerSaleShare = uint256(10000).sub(devSaleShare);
        emit DevShareSaleChanged(devSaleShare);
    }

    function toggleSaleActive() external onlyOwner override {
        saleActive = !saleActive;
        emit ToggleSaleState(saleActive);
    }

    function toggleWhitelistSaleActive() external onlyOwner override {
        whitelistSaleActive = !whitelistSaleActive;
        emit ToggleWhitelistSaleState(whitelistSaleActive);
    }

    function setBaseURI(string memory _baseURI) external onlyOwner override {
        baseURI = _baseURI;
        emit BaseURIChanged(baseURI);
    }

    function setSmartContractAllowance(bool _smartContractAllowance) external onlyOwner override {
        smartContractAllowance = _smartContractAllowance;
        emit SmartContractAllowanceChanged(smartContractAllowance);
    }

    function setWithdrawalWallet(address payable _withdrawalWallet) external onlyOwner override {
        withdrawalWallet = _withdrawalWallet;
        emit WithdrawalWalletChanged(withdrawalWallet);
    }

    function setDevWallet(address payable _devWallet) external onlyOwner override {
        devWallet = _devWallet;
        emit DevWalletChanged(devWallet);
    }

    function setMintLimit(uint256 _mintLimit) external onlyOwner override {
        mintLimit = _mintLimit;
        emit MintLimitChanged(mintLimit);
    }

    function withdraw() external onlyOwner override  {
        uint256 contractBalance = address(this).balance;
        devWallet.transfer(contractBalance.mul(devSaleShare).div(10000));
        withdrawalWallet.transfer(contractBalance.mul(ownerSaleShare).div(10000));
    }

    function reserve(uint256 _amount) external onlyOwner override {
        _mint(_amount);
        emit Reserve(_amount);
    }

    function buy(uint256 _amount) external override payable {
        require(saleActive, "Dropspace::buy: Sale is not active.");
        require(_amount <= mintLimit, "Dropspace::buy: Too many tokens for one transaction.");
        require(msg.value >= mintPrice.mul(_amount), "Dropspace::buy: Insufficient payment.");

        if (!smartContractAllowance) {
            require(tx.origin == msg.sender, "Dropspace::buy: Smart contracts are not allowed to buy.");
        }

        _mint(_amount);
    }

    function _mint(uint256 _amount) internal {
        require(totalSupply.add(_amount) <= supplyLimit, "Not enough tokens left.");

        uint256 newId = totalSupply;
        for(uint i = 0; i < _amount; i++) {
            newId = newId.add(1);
            totalSupply = totalSupply.add(1);

            _safeMint(msg.sender, newId);
            emit Mint(msg.sender, newId, tokenURI(newId));
        }
    }

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

        return bytes(baseURI).length > 0 ? 
            string(abi.encodePacked(baseURI, _tokenId.toString())) : "";
    }

    function togglePresaleActive() external onlyOwner override {
        presaleActive = !presaleActive;
        emit TogglePresaleState(presaleActive);
    }

    function setTicketAddress(address _ticketAddress) external onlyOwner override {
        require(_ticketAddress != address(0), "DropSpaceSale::setTicketAddress: Invalid address.");
        ticketAddress = _ticketAddress;
        emit TicketAddressChanged(_ticketAddress);
    }

    function presaleBuy(uint256 _ticketId, uint _amount) external payable override {
        require(presaleActive, "Dropspace::presaleBuy: Presale is not Active.");
        require(ERC721(ticketAddress).ownerOf(_ticketId) == msg.sender, "Dropspace::presaleBuy: invalid ticket.");
        require(!usedTickets[_ticketId], "Dropspace::presaleBuy: Ticket already used.");
        require(_amount <= mintLimit, "Dropspace::presaleBuy: Too many tokens for one transaction.");
        require(msg.value >= mintPrice.mul(_amount), "Dropspace::presaleBuy: Insufficient payment.");

        usedTickets[_ticketId] = true;
        _mint(_amount);
        emit PresaleBuy(msg.sender, _ticketId, _amount);
    }

    function whitelistBuy(uint256 _amount) external payable override {
        require(whitelistSaleActive, "DropSpaceSale::whitelistBuy: Whitelist Buy is not Active.");
        require(_amount <= mintLimit, "Dropspace::presaleBuy: Too many tokens for one transaction.");
        require(msg.value >= mintPrice.mul(_amount), "Dropspace::presaleBuy: Insufficient payment.");
        require(whitelist[msg.sender], "Dropspace::whitelistBuy: You are not whitelisted."); 

        emit WhitelistBuy(msg.sender, _amount);
        _mint(_amount);
    }

    function clearTicket(uint256 _ticketId) external override onlyOwner{
        require(usedTickets[_ticketId], "Dropspace::clearTicket: Ticket is not used");
        usedTickets[_ticketId] = false;
        emit TicketCleared(_ticketId);
    }

    receive() external override payable {}
}

File 2 of 13 : IDropspaceSale.sol
// SPDX-License-Identifier: Unlicense

pragma solidity ^0.8.4;

interface IDropspaceSale {
    // OWNER ONLY
    function toggleSaleActive() external;
    function togglePresaleActive() external;
    function setBaseURI(string memory _baseURI) external;
    function setWithdrawalWallet(address payable _withdrawalWallet) external;
    function setDevWallet(address payable _devWallet) external;
    function setDevSaleShare(uint256 _devSaleShare) external;
    function setMintLimit(uint256 _mintLimit) external;
    function setSmartContractAllowance(bool _smartContractAllowance) external;
    function setTicketAddress(address _ticketAddress) external;
    function reserve(uint256 _amount) external;
    function withdraw() external;
    function toggleWhitelistSaleActive() external;
    function setWhitelistStatus(address _user, bool _status) external;
    function addWhitelist(address[] memory _userList) external;
    function clearTicket(uint256 _ticketId) external;
    function changeSupplyLimit(uint256 _supplyLimit) external;
    function emergencyWithdraw() external;
    function setMintPrice(uint256 _mintPrice) external;    

    // EXTERNAL
    function buy(uint256 _amount) external payable;
    function presaleBuy(uint256 _ticketId, uint256 _amount) external payable;
    function whitelistBuy(uint256 _amount) external payable;

    // VIEW
    function totalSupply() view external returns(uint256);
    function supplyLimit() view external returns(uint256);
    function mintPrice() view external returns(uint256);
    function mintLimit() view external returns(uint256);
    function baseURI() view external returns(string memory);
    function saleActive() view external returns(bool);
    function presaleActive() view external returns(bool);
    function whitelistSaleActive() view external returns(bool);
    function smartContractAllowance() view external returns(bool);
    function devWallet() view external returns(address payable);
    function withdrawalWallet() view external returns(address payable);
    function ticketAddress() view external returns(address);
    function usedTickets(uint256 _ticketId) view external returns(bool);
    function whitelist(address _user) view external returns(bool);
    


    // EVENTS
    event Reserve(uint256 _amount);
    event Mint(address indexed _user, uint256 indexed _tokenId, string _tokenURI);
    event ToggleSaleState(bool _state);
    event BaseURIChanged(string _baseURI);
    event WithdrawalWalletChanged(address payable _newWithdrawalWallet);
    event DevWalletChanged(address payable _newDevWallet);
    event DevShareSaleChanged(uint256 _devSaleShare);
    event MintLimitChanged(uint256 _newMintLimit);
    event MintPriceChanged(uint256 _mintPrice);
    event SmartContractAllowanceChanged(bool _newSmartContractAllowance);
    event TogglePresaleState(bool _preSaleState);
    event TicketAddressChanged(address _ticketAddress);
    event PresaleBuy(address _user, uint256 _ticketId, uint256 _amount);
    event WhitelistBuy(address _user, uint256 _amount);
    event WhitelistStatusChanged(address _user, bool _status);
    event ToggleWhitelistSaleState(bool _whitelistSaleActive);
    event SupplyLimitChanged(uint256 _supplyLimit);
    event TicketCleared(uint256 _ticketId);
    event WhiteListAdded(address _user, bool _status);

    receive() external payable;
}

File 3 of 13 : ERC721.sol
// SPDX-License-Identifier: MIT

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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 4 of 13 : Ownable.sol
// SPDX-License-Identifier: MIT

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() {
        _setOwner(_msgSender());
    }

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 5 of 13 : SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 6 of 13 : Strings.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

File 7 of 13 : IERC721.sol
// SPDX-License-Identifier: MIT

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 8 of 13 : IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 9 of 13 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 10 of 13 : Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 11 of 13 : Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 12 of 13 : ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 13 of 13 : IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_supplyLimit","type":"uint256"},{"internalType":"uint256","name":"_mintLimit","type":"uint256"},{"internalType":"uint256","name":"_mintPrice","type":"uint256"},{"internalType":"uint256","name":"_devSaleShare","type":"uint256"},{"internalType":"address payable","name":"_withdrawalWallet","type":"address"},{"internalType":"address payable","name":"_devWallet","type":"address"},{"internalType":"address","name":"_ticketAddress","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_ticker","type":"string"},{"internalType":"string","name":"_baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_baseURI","type":"string"}],"name":"BaseURIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_devSaleShare","type":"uint256"}],"name":"DevShareSaleChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address payable","name":"_newDevWallet","type":"address"}],"name":"DevWalletChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_user","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"_tokenURI","type":"string"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_newMintLimit","type":"uint256"}],"name":"MintLimitChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"MintPriceChanged","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":"_user","type":"address"},{"indexed":false,"internalType":"uint256","name":"_ticketId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"PresaleBuy","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"Reserve","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_newSmartContractAllowance","type":"bool"}],"name":"SmartContractAllowanceChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_supplyLimit","type":"uint256"}],"name":"SupplyLimitChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_ticketAddress","type":"address"}],"name":"TicketAddressChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_ticketId","type":"uint256"}],"name":"TicketCleared","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_preSaleState","type":"bool"}],"name":"TogglePresaleState","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_state","type":"bool"}],"name":"ToggleSaleState","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_whitelistSaleActive","type":"bool"}],"name":"ToggleWhitelistSaleState","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":"_user","type":"address"},{"indexed":false,"internalType":"bool","name":"_status","type":"bool"}],"name":"WhiteListAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_user","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"WhitelistBuy","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_user","type":"address"},{"indexed":false,"internalType":"bool","name":"_status","type":"bool"}],"name":"WhitelistStatusChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address payable","name":"_newWithdrawalWallet","type":"address"}],"name":"WithdrawalWalletChanged","type":"event"},{"inputs":[{"internalType":"address[]","name":"_userList","type":"address[]"}],"name":"addWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supplyLimit","type":"uint256"}],"name":"changeSupplyLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_ticketId","type":"uint256"}],"name":"clearTicket","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_ticketId","type":"uint256"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"presaleBuy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"reserve","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":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_devSaleShare","type":"uint256"}],"name":"setDevSaleShare","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_devWallet","type":"address"}],"name":"setDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintLimit","type":"uint256"}],"name":"setMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_smartContractAllowance","type":"bool"}],"name":"setSmartContractAllowance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_ticketAddress","type":"address"}],"name":"setTicketAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setWhitelistStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_withdrawalWallet","type":"address"}],"name":"setWithdrawalWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"smartContractAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"supplyLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ticketAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePresaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhitelistSaleActive","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"","type":"uint256"}],"name":"usedTickets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"whitelistBuy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawalWallet","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

608060405260006007556000600c60006101000a81548160ff0219169083151502179055503480156200003157600080fd5b50604051620063b1380380620063b1833981810160405281019062000057919062000426565b8282816000908051906020019062000071929190620002bf565b5080600190805190602001906200008a929190620002bf565b505050620000ad620000a1620001d960201b60201c565b620001e160201b60201c565b89600a81905550886008819055508760098190555085600c60046101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555083600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600b90805190602001906200019d929190620002bf565b5086600f81905550620001c3600f54612710620002a760201b62002fab1790919060201c565b60108190555050505050505050505050620007db565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183620002b79190620005c0565b905092915050565b828054620002cd9062000683565b90600052602060002090601f016020900481019282620002f157600085556200033d565b82601f106200030c57805160ff19168380011785556200033d565b828001600101855582156200033d579182015b828111156200033c5782518255916020019190600101906200031f565b5b5090506200034c919062000350565b5090565b5b808211156200036b57600081600090555060010162000351565b5090565b60006200038662000380846200058a565b62000561565b9050828152602081018484840111156200039f57600080fd5b620003ac8482856200064d565b509392505050565b600081519050620003c5816200078d565b92915050565b600081519050620003dc81620007a7565b92915050565b600082601f830112620003f457600080fd5b8151620004068482602086016200036f565b91505092915050565b6000815190506200042081620007c1565b92915050565b6000806000806000806000806000806101408b8d0312156200044757600080fd5b6000620004578d828e016200040f565b9a505060206200046a8d828e016200040f565b99505060406200047d8d828e016200040f565b9850506060620004908d828e016200040f565b9750506080620004a38d828e01620003cb565b96505060a0620004b68d828e01620003cb565b95505060c0620004c98d828e01620003b4565b94505060e08b015167ffffffffffffffff811115620004e757600080fd5b620004f58d828e01620003e2565b9350506101008b015167ffffffffffffffff8111156200051457600080fd5b620005228d828e01620003e2565b9250506101208b015167ffffffffffffffff8111156200054157600080fd5b6200054f8d828e01620003e2565b9150509295989b9194979a5092959850565b60006200056d62000580565b90506200057b8282620006b9565b919050565b6000604051905090565b600067ffffffffffffffff821115620005a857620005a76200074d565b5b620005b3826200077c565b9050602081019050919050565b6000620005cd8262000643565b9150620005da8362000643565b925082821015620005f057620005ef620006ef565b5b828203905092915050565b6000620006088262000623565b9050919050565b60006200061c8262000623565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200066d57808201518184015260208101905062000650565b838111156200067d576000848401525b50505050565b600060028204905060018216806200069c57607f821691505b60208210811415620006b357620006b26200071e565b5b50919050565b620006c4826200077c565b810181811067ffffffffffffffff82111715620006e657620006e56200074d565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6200079881620005fb565b8114620007a457600080fd5b50565b620007b2816200060f565b8114620007be57600080fd5b50565b620007cc8162000643565b8114620007d857600080fd5b50565b615bc680620007eb6000396000f3fe6080604052600436106102e85760003560e01c80636c0360eb11610190578063a22cb465116100dc578063d96a094a11610095578063ed9a5bbb1161006f578063ed9a5bbb14610aa6578063edac985b14610acf578063f2fde38b14610af8578063f4a0a52814610b21576102ef565b8063d96a094a14610a36578063db2e21bc14610a52578063e985e9c514610a69576102ef565b8063a22cb4651461093e578063ab26320e14610967578063b88d4fde14610990578063b89fe999146109b9578063c87b56dd146109d0578063d44e357314610a0d576102ef565b806389b0649b1161014957806395d89b411161012357806395d89b4114610882578063996517cf146108ad5780639b19251a146108d85780639e6a1d7d14610915576102ef565b806389b0649b146108155780638da5cb5b1461082c5780638ea5220f14610857576102ef565b80636c0360eb1461070757806370a0823114610732578063715018a61461076f57806371efdc211461078657806375796f76146107c3578063819b25ba146107ec576102ef565b80633100a5351161024f57806355f804b3116102085780636352211e116101e25780636352211e14610649578063646d7a7f146106865780636817c76c146106b157806368428a1b146106dc576102ef565b806355f804b3146105cc57806357a8e3fe146105f55780635c4e7e0614610620576102ef565b80633100a535146104f45780633ad7f56c1461050b5780633ccfd60b1461053657806342842e0e1461054d5780634a7d80b31461057657806353135ca0146105a1576102ef565b80630c424284116102a15780630c4242841461040757806318160ddd1461043057806319d1997a1461045b5780631f53ac021461048657806323b872dd146104af5780632ac7a2b3146104d8576102ef565b806301ffc9a7146102f457806306fdde0314610331578063081812fc1461035c57806308e9928714610399578063095ea7b3146103c25780630983061c146103eb576102ef565b366102ef57005b600080fd5b34801561030057600080fd5b5061031b600480360381019061031691906141ae565b610b4a565b60405161032891906149cd565b60405180910390f35b34801561033d57600080fd5b50610346610c2c565b60405161035391906149e8565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e9190614241565b610cbe565b60405161039091906148c2565b60405180910390f35b3480156103a557600080fd5b506103c060048036038101906103bb9190614185565b610d43565b005b3480156103ce57600080fd5b506103e960048036038101906103e49190614108565b610e22565b005b6104056004803603810190610400919061426a565b610f3a565b005b34801561041357600080fd5b5061042e600480360381019061042991906140cc565b611212565b005b34801561043c57600080fd5b50610445611322565b6040516104529190614dec565b60405180910390f35b34801561046757600080fd5b50610470611328565b60405161047d9190614dec565b60405180910390f35b34801561049257600080fd5b506104ad60048036038101906104a89190613f9d565b61132e565b005b3480156104bb57600080fd5b506104d660048036038101906104d19190614002565b611447565b005b6104f260048036038101906104ed9190614241565b6114a7565b005b34801561050057600080fd5b50610509611663565b005b34801561051757600080fd5b50610520611751565b60405161052d91906149cd565b60405180910390f35b34801561054257600080fd5b5061054b611764565b005b34801561055957600080fd5b50610574600480360381019061056f9190614002565b61190a565b005b34801561058257600080fd5b5061058b61192a565b60405161059891906148dd565b60405180910390f35b3480156105ad57600080fd5b506105b6611950565b6040516105c391906149cd565b60405180910390f35b3480156105d857600080fd5b506105f360048036038101906105ee9190614200565b611963565b005b34801561060157600080fd5b5061060a611a31565b60405161061791906148c2565b60405180910390f35b34801561062c57600080fd5b5061064760048036038101906106429190614241565b611a57565b005b34801561065557600080fd5b50610670600480360381019061066b9190614241565b611b33565b60405161067d91906148c2565b60405180910390f35b34801561069257600080fd5b5061069b611be5565b6040516106a891906149cd565b60405180910390f35b3480156106bd57600080fd5b506106c6611bf8565b6040516106d39190614dec565b60405180910390f35b3480156106e857600080fd5b506106f1611bfe565b6040516106fe91906149cd565b60405180910390f35b34801561071357600080fd5b5061071c611c11565b60405161072991906149e8565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190613f4b565b611c9f565b6040516107669190614dec565b60405180910390f35b34801561077b57600080fd5b50610784611d57565b005b34801561079257600080fd5b506107ad60048036038101906107a89190614241565b611ddf565b6040516107ba91906149cd565b60405180910390f35b3480156107cf57600080fd5b506107ea60048036038101906107e59190613f9d565b611dff565b005b3480156107f857600080fd5b50610813600480360381019061080e9190614241565b611f18565b005b34801561082157600080fd5b5061082a611fd7565b005b34801561083857600080fd5b506108416120c5565b60405161084e91906148c2565b60405180910390f35b34801561086357600080fd5b5061086c6120ef565b60405161087991906148dd565b60405180910390f35b34801561088e57600080fd5b50610897612115565b6040516108a491906149e8565b60405180910390f35b3480156108b957600080fd5b506108c26121a7565b6040516108cf9190614dec565b60405180910390f35b3480156108e457600080fd5b506108ff60048036038101906108fa9190613f4b565b6121ad565b60405161090c91906149cd565b60405180910390f35b34801561092157600080fd5b5061093c60048036038101906109379190614241565b6121cd565b005b34801561094a57600080fd5b50610965600480360381019061096091906140cc565b61228c565b005b34801561097357600080fd5b5061098e60048036038101906109899190614241565b61240d565b005b34801561099c57600080fd5b506109b760048036038101906109b29190614051565b61254f565b005b3480156109c557600080fd5b506109ce6125b1565b005b3480156109dc57600080fd5b506109f760048036038101906109f29190614241565b61269f565b604051610a0491906149e8565b60405180910390f35b348015610a1957600080fd5b50610a346004803603810190610a2f9190614241565b612747565b005b610a506004803603810190610a4b9190614241565b612804565b005b348015610a5e57600080fd5b50610a6761297e565b005b348015610a7557600080fd5b50610a906004803603810190610a8b9190613fc6565b612a4a565b604051610a9d91906149cd565b60405180910390f35b348015610ab257600080fd5b50610acd6004803603810190610ac89190613f4b565b612ade565b005b348015610adb57600080fd5b50610af66004803603810190610af19190614144565b612c45565b005b348015610b0457600080fd5b50610b1f6004803603810190610b1a9190613f4b565b612df6565b005b348015610b2d57600080fd5b50610b486004803603810190610b439190614241565b612eee565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c1557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c255750610c2482612fc1565b5b9050919050565b606060008054610c3b906150ef565b80601f0160208091040260200160405190810160405280929190818152602001828054610c67906150ef565b8015610cb45780601f10610c8957610100808354040283529160200191610cb4565b820191906000526020600020905b815481529060010190602001808311610c9757829003601f168201915b5050505050905090565b6000610cc98261302b565b610d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cff90614c2c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610d4b613097565b73ffffffffffffffffffffffffffffffffffffffff16610d696120c5565b73ffffffffffffffffffffffffffffffffffffffff1614610dbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db690614c4c565b60405180910390fd5b80600c60006101000a81548160ff0219169083151502179055507f2a5bfbb68782e57b3242e612145304c845af3404e2d328a12dd2e7c078cd0117600c60009054906101000a900460ff16604051610e1791906149cd565b60405180910390a150565b6000610e2d82611b33565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9590614d0c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ebd613097565b73ffffffffffffffffffffffffffffffffffffffff161480610eec5750610eeb81610ee6613097565b612a4a565b5b610f2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2290614b6c565b60405180910390fd5b610f35838361309f565b505050565b600c60029054906101000a900460ff16610f89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8090614d2c565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b8152600401610ffb9190614dec565b60206040518083038186803b15801561101357600080fd5b505afa158015611027573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061104b9190613f74565b73ffffffffffffffffffffffffffffffffffffffff16146110a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109890614a2c565b60405180910390fd5b6011600083815260200190815260200160002060009054906101000a900460ff1615611102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f990614bec565b60405180910390fd5b600854811115611147576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113e90614d8c565b60405180910390fd5b61115c8160095461315890919063ffffffff16565b34101561119e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119590614b2c565b60405180910390fd5b60016011600084815260200190815260200160002060006101000a81548160ff0219169083151502179055506111d38161316e565b7fb77d41b776d1d5cc75b500402614335da616afa8aa95b49325e22db7f1ca86cc33838360405161120693929190614996565b60405180910390a15050565b61121a613097565b73ffffffffffffffffffffffffffffffffffffffff166112386120c5565b73ffffffffffffffffffffffffffffffffffffffff161461128e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128590614c4c565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f8daaf060c3306c38e068a75c054bf96ecd85a3db1252712c4d93632744c42e0d8282604051611316929190614944565b60405180910390a15050565b60075481565b600a5481565b611336613097565b73ffffffffffffffffffffffffffffffffffffffff166113546120c5565b73ffffffffffffffffffffffffffffffffffffffff16146113aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a190614c4c565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f268c00f4ec08b34fdde24b52e47a09d62f3f3837eb3b8ac7206cefb3bb5e5345600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660405161143c91906148dd565b60405180910390a150565b611458611452613097565b82613284565b611497576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148e90614d6c565b60405180910390fd5b6114a2838383613362565b505050565b600c60039054906101000a900460ff166114f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ed90614dac565b60405180910390fd5b60085481111561153b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153290614d8c565b60405180910390fd5b6115508160095461315890919063ffffffff16565b341015611592576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158990614b2c565b60405180910390fd5b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661161e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161590614cac565b60405180910390fd5b7f8714612a507e7fcd9f26d997e561a61611f4bad945c787b8865dc23823ef037b338260405161164f92919061496d565b60405180910390a16116608161316e565b50565b61166b613097565b73ffffffffffffffffffffffffffffffffffffffff166116896120c5565b73ffffffffffffffffffffffffffffffffffffffff16146116df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d690614c4c565b60405180910390fd5b600c60019054906101000a900460ff1615600c60016101000a81548160ff0219169083151502179055507f5a454f976028c400c4159ac85c61452441fcf06b9888c7c780c5980e3c3123dd600c60019054906101000a900460ff1660405161174791906149cd565b60405180910390a1565b600c60039054906101000a900460ff1681565b61176c613097565b73ffffffffffffffffffffffffffffffffffffffff1661178a6120c5565b73ffffffffffffffffffffffffffffffffffffffff16146117e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d790614c4c565b60405180910390fd5b6000479050600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc61184a61271061183c600f548661315890919063ffffffff16565b6135be90919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015611875573d6000803e3d6000fd5b50600c60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6118db6127106118cd6010548661315890919063ffffffff16565b6135be90919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015611906573d6000803e3d6000fd5b5050565b6119258383836040518060200160405280600081525061254f565b505050565b600c60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c60029054906101000a900460ff1681565b61196b613097565b73ffffffffffffffffffffffffffffffffffffffff166119896120c5565b73ffffffffffffffffffffffffffffffffffffffff16146119df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d690614c4c565b60405180910390fd5b80600b90805190602001906119f5929190613caf565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf6600b604051611a269190614a0a565b60405180910390a150565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611a5f613097565b73ffffffffffffffffffffffffffffffffffffffff16611a7d6120c5565b73ffffffffffffffffffffffffffffffffffffffff1614611ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aca90614c4c565b60405180910390fd5b80600f81905550611af1600f54612710612fab90919063ffffffff16565b6010819055507fd20ab7c161b1f8ebfab00e747660c0fa31ae9123063e580b5be0aeab18623db2600f54604051611b289190614dec565b60405180910390a150565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd390614bac565b60405180910390fd5b80915050919050565b600c60009054906101000a900460ff1681565b60095481565b600c60019054906101000a900460ff1681565b600b8054611c1e906150ef565b80601f0160208091040260200160405190810160405280929190818152602001828054611c4a906150ef565b8015611c975780601f10611c6c57610100808354040283529160200191611c97565b820191906000526020600020905b815481529060010190602001808311611c7a57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0790614b8c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611d5f613097565b73ffffffffffffffffffffffffffffffffffffffff16611d7d6120c5565b73ffffffffffffffffffffffffffffffffffffffff1614611dd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dca90614c4c565b60405180910390fd5b611ddd60006135d4565b565b60116020528060005260406000206000915054906101000a900460ff1681565b611e07613097565b73ffffffffffffffffffffffffffffffffffffffff16611e256120c5565b73ffffffffffffffffffffffffffffffffffffffff1614611e7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7290614c4c565b60405180910390fd5b80600c60046101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fb470355146314037ce5186813b4b7c65bff2b87f98d44ff063570d0e22d65ba3600c60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff16604051611f0d91906148dd565b60405180910390a150565b611f20613097565b73ffffffffffffffffffffffffffffffffffffffff16611f3e6120c5565b73ffffffffffffffffffffffffffffffffffffffff1614611f94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8b90614c4c565b60405180910390fd5b611f9d8161316e565b7fdb7b64a879507c32bda4d0cf22dee29ed875c7157ecbbc10fe11bf14fab06d1281604051611fcc9190614dec565b60405180910390a150565b611fdf613097565b73ffffffffffffffffffffffffffffffffffffffff16611ffd6120c5565b73ffffffffffffffffffffffffffffffffffffffff1614612053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204a90614c4c565b60405180910390fd5b600c60029054906101000a900460ff1615600c60026101000a81548160ff0219169083151502179055507f38822fae85453c65b78e1b7d02e45cae5eb0d7961e34226fb29c49dab9d3a357600c60029054906101000a900460ff166040516120bb91906149cd565b60405180910390a1565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060018054612124906150ef565b80601f0160208091040260200160405190810160405280929190818152602001828054612150906150ef565b801561219d5780601f106121725761010080835404028352916020019161219d565b820191906000526020600020905b81548152906001019060200180831161218057829003601f168201915b5050505050905090565b60085481565b60126020528060005260406000206000915054906101000a900460ff1681565b6121d5613097565b73ffffffffffffffffffffffffffffffffffffffff166121f36120c5565b73ffffffffffffffffffffffffffffffffffffffff1614612249576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224090614c4c565b60405180910390fd5b806008819055507f9ae30a041b5f2244849dc754c675b09aef4ad230b48995476fd6e6415d1fe8ab6008546040516122819190614dec565b60405180910390a150565b612294613097565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f990614b0c565b60405180910390fd5b806005600061230f613097565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166123bc613097565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161240191906149cd565b60405180910390a35050565b612415613097565b73ffffffffffffffffffffffffffffffffffffffff166124336120c5565b73ffffffffffffffffffffffffffffffffffffffff1614612489576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248090614c4c565b60405180910390fd5b6011600082815260200190815260200160002060009054906101000a900460ff166124e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e090614d4c565b60405180910390fd5b60006011600083815260200190815260200160002060006101000a81548160ff0219169083151502179055507f256e63760868166c3f047c49d3e1614c1ca6c620d715c552c54ddb4ba428719c816040516125449190614dec565b60405180910390a150565b61256061255a613097565b83613284565b61259f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259690614d6c565b60405180910390fd5b6125ab8484848461369a565b50505050565b6125b9613097565b73ffffffffffffffffffffffffffffffffffffffff166125d76120c5565b73ffffffffffffffffffffffffffffffffffffffff161461262d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262490614c4c565b60405180910390fd5b600c60039054906101000a900460ff1615600c60036101000a81548160ff0219169083151502179055507ffabb6e4b24bd8ac3a08555e569d13590c5006dc61e4aae65e74296d3df6759ed600c60039054906101000a900460ff1660405161269591906149cd565b60405180910390a1565b60606126aa8261302b565b6126e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e090614c8c565b60405180910390fd5b6000600b80546126f8906150ef565b9050116127145760405180602001604052806000815250612740565b600b61271f836136f6565b60405160200161273092919061489e565b6040516020818303038152906040525b9050919050565b61274f613097565b73ffffffffffffffffffffffffffffffffffffffff1661276d6120c5565b73ffffffffffffffffffffffffffffffffffffffff16146127c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ba90614c4c565b60405180910390fd5b80600a819055507f178f2d92de18f124251b08e25bacba56eda0716625c1e799fc6c8ed1ee7d1d07816040516127f99190614dec565b60405180910390a150565b600c60019054906101000a900460ff16612853576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284a90614dcc565b60405180910390fd5b600854811115612898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288f90614bcc565b60405180910390fd5b6128ad8160095461315890919063ffffffff16565b3410156128ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e690614cec565b60405180910390fd5b600c60009054906101000a900460ff16612972573373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614612971576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296890614a8c565b60405180910390fd5b5b61297b8161316e565b50565b612986613097565b73ffffffffffffffffffffffffffffffffffffffff166129a46120c5565b73ffffffffffffffffffffffffffffffffffffffff16146129fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f190614c4c565b60405180910390fd5b612a026120c5565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015612a47573d6000803e3d6000fd5b50565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612ae6613097565b73ffffffffffffffffffffffffffffffffffffffff16612b046120c5565b73ffffffffffffffffffffffffffffffffffffffff1614612b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5190614c4c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc190614ccc565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f4846b8d14a603fbd3567c63384f41a947d787c004e59ce39ee755d0485ae5ed881604051612c3a91906148c2565b60405180910390a150565b612c4d613097565b73ffffffffffffffffffffffffffffffffffffffff16612c6b6120c5565b73ffffffffffffffffffffffffffffffffffffffff1614612cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb890614c4c565b60405180910390fd5b60005b8151811015612df257600160126000848481518110612d0c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507faec42ac7f1bb8651906ae6522f50a19429e124e8ea678ef59fd27750759288a2828281518110612dbf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516001604051612dd7929190614944565b60405180910390a18080612dea90615152565b915050612cc4565b5050565b612dfe613097565b73ffffffffffffffffffffffffffffffffffffffff16612e1c6120c5565b73ffffffffffffffffffffffffffffffffffffffff1614612e72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e6990614c4c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed990614a6c565b60405180910390fd5b612eeb816135d4565b50565b612ef6613097565b73ffffffffffffffffffffffffffffffffffffffff16612f146120c5565b73ffffffffffffffffffffffffffffffffffffffff1614612f6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6190614c4c565b60405180910390fd5b806009819055507f25b1f9f6b6e61dfca5575239769e4450ed2e49176670837f5d1a82a9a2fc693f81604051612fa09190614dec565b60405180910390a150565b60008183612fb99190614ff3565b905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661311283611b33565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081836131669190614f99565b905092915050565b600a54613186826007546138a390919063ffffffff16565b11156131c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131be90614acc565b60405180910390fd5b6000600754905060005b8281101561327f576131ed6001836138a390919063ffffffff16565b915061320560016007546138a390919063ffffffff16565b60078190555061321533836138b9565b813373ffffffffffffffffffffffffffffffffffffffff167f85a66b9141978db9980f7e0ce3b468cebf4f7999f32b23091c5c03e798b1ba7a6132578561269f565b60405161326491906149e8565b60405180910390a3808061327790615152565b9150506131d1565b505050565b600061328f8261302b565b6132ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132c590614b4c565b60405180910390fd5b60006132d983611b33565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061334857508373ffffffffffffffffffffffffffffffffffffffff1661333084610cbe565b73ffffffffffffffffffffffffffffffffffffffff16145b8061335957506133588185612a4a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661338282611b33565b73ffffffffffffffffffffffffffffffffffffffff16146133d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133cf90614c6c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613448576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161343f90614aec565b60405180910390fd5b6134538383836138d7565b61345e60008261309f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134ae9190614ff3565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135059190614f12565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081836135cc9190614f68565b905092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6136a5848484613362565b6136b1848484846138dc565b6136f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136e790614a4c565b60405180910390fd5b50505050565b6060600082141561373e576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061389e565b600082905060005b6000821461377057808061375990615152565b915050600a826137699190614f68565b9150613746565b60008167ffffffffffffffff8111156137b2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156137e45781602001600182028036833780820191505090505b5090505b60008514613897576001826137fd9190614ff3565b9150600a8561380c919061519b565b60306138189190614f12565b60f81b818381518110613854577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856138909190614f68565b94506137e8565b8093505050505b919050565b600081836138b19190614f12565b905092915050565b6138d3828260405180602001604052806000815250613a73565b5050565b505050565b60006138fd8473ffffffffffffffffffffffffffffffffffffffff16613ace565b15613a66578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613926613097565b8786866040518563ffffffff1660e01b815260040161394894939291906148f8565b602060405180830381600087803b15801561396257600080fd5b505af192505050801561399357506040513d601f19601f8201168201806040525081019061399091906141d7565b60015b613a16573d80600081146139c3576040519150601f19603f3d011682016040523d82523d6000602084013e6139c8565b606091505b50600081511415613a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a0590614a4c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613a6b565b600190505b949350505050565b613a7d8383613ae1565b613a8a60008484846138dc565b613ac9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ac090614a4c565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b4890614c0c565b60405180910390fd5b613b5a8161302b565b15613b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b9190614aac565b60405180910390fd5b613ba6600083836138d7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613bf69190614f12565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613cbb906150ef565b90600052602060002090601f016020900481019282613cdd5760008555613d24565b82601f10613cf657805160ff1916838001178555613d24565b82800160010185558215613d24579182015b82811115613d23578251825591602001919060010190613d08565b5b509050613d319190613d35565b5090565b5b80821115613d4e576000816000905550600101613d36565b5090565b6000613d65613d6084614e2c565b614e07565b90508083825260208201905082856020860282011115613d8457600080fd5b60005b85811015613db45781613d9a8882613e3a565b845260208401935060208301925050600181019050613d87565b5050509392505050565b6000613dd1613dcc84614e58565b614e07565b905082815260208101848484011115613de957600080fd5b613df48482856150ad565b509392505050565b6000613e0f613e0a84614e89565b614e07565b905082815260208101848484011115613e2757600080fd5b613e328482856150ad565b509392505050565b600081359050613e4981615b1d565b92915050565b600081519050613e5e81615b1d565b92915050565b600081359050613e7381615b34565b92915050565b600082601f830112613e8a57600080fd5b8135613e9a848260208601613d52565b91505092915050565b600081359050613eb281615b4b565b92915050565b600081359050613ec781615b62565b92915050565b600081519050613edc81615b62565b92915050565b600082601f830112613ef357600080fd5b8135613f03848260208601613dbe565b91505092915050565b600082601f830112613f1d57600080fd5b8135613f2d848260208601613dfc565b91505092915050565b600081359050613f4581615b79565b92915050565b600060208284031215613f5d57600080fd5b6000613f6b84828501613e3a565b91505092915050565b600060208284031215613f8657600080fd5b6000613f9484828501613e4f565b91505092915050565b600060208284031215613faf57600080fd5b6000613fbd84828501613e64565b91505092915050565b60008060408385031215613fd957600080fd5b6000613fe785828601613e3a565b9250506020613ff885828601613e3a565b9150509250929050565b60008060006060848603121561401757600080fd5b600061402586828701613e3a565b935050602061403686828701613e3a565b925050604061404786828701613f36565b9150509250925092565b6000806000806080858703121561406757600080fd5b600061407587828801613e3a565b945050602061408687828801613e3a565b935050604061409787828801613f36565b925050606085013567ffffffffffffffff8111156140b457600080fd5b6140c087828801613ee2565b91505092959194509250565b600080604083850312156140df57600080fd5b60006140ed85828601613e3a565b92505060206140fe85828601613ea3565b9150509250929050565b6000806040838503121561411b57600080fd5b600061412985828601613e3a565b925050602061413a85828601613f36565b9150509250929050565b60006020828403121561415657600080fd5b600082013567ffffffffffffffff81111561417057600080fd5b61417c84828501613e79565b91505092915050565b60006020828403121561419757600080fd5b60006141a584828501613ea3565b91505092915050565b6000602082840312156141c057600080fd5b60006141ce84828501613eb8565b91505092915050565b6000602082840312156141e957600080fd5b60006141f784828501613ecd565b91505092915050565b60006020828403121561421257600080fd5b600082013567ffffffffffffffff81111561422c57600080fd5b61423884828501613f0c565b91505092915050565b60006020828403121561425357600080fd5b600061426184828501613f36565b91505092915050565b6000806040838503121561427d57600080fd5b600061428b85828601613f36565b925050602061429c85828601613f36565b9150509250929050565b6142af81615039565b82525050565b6142be81615027565b82525050565b6142cd8161504b565b82525050565b60006142de82614ecf565b6142e88185614ee5565b93506142f88185602086016150bc565b61430181615288565b840191505092915050565b600061431782614eda565b6143218185614ef6565b93506143318185602086016150bc565b61433a81615288565b840191505092915050565b600061435082614eda565b61435a8185614f07565b935061436a8185602086016150bc565b80840191505092915050565b60008154614383816150ef565b61438d8186614ef6565b945060018216600081146143a857600181146143ba576143ed565b60ff19831686526020860193506143ed565b6143c385614eba565b60005b838110156143e5578154818901526001820191506020810190506143c6565b808801955050505b50505092915050565b60008154614403816150ef565b61440d8186614f07565b9450600182166000811461442857600181146144395761446c565b60ff1983168652818601935061446c565b61444285614eba565b60005b8381101561446457815481890152600182019150602081019050614445565b838801955050505b50505092915050565b6000614482602683614ef6565b915061448d82615299565b604082019050919050565b60006144a5603283614ef6565b91506144b0826152e8565b604082019050919050565b60006144c8602683614ef6565b91506144d382615337565b604082019050919050565b60006144eb603783614ef6565b91506144f682615386565b604082019050919050565b600061450e601c83614ef6565b9150614519826153d5565b602082019050919050565b6000614531601783614ef6565b915061453c826153fe565b602082019050919050565b6000614554602483614ef6565b915061455f82615427565b604082019050919050565b6000614577601983614ef6565b915061458282615476565b602082019050919050565b600061459a602c83614ef6565b91506145a58261549f565b604082019050919050565b60006145bd602c83614ef6565b91506145c8826154ee565b604082019050919050565b60006145e0603883614ef6565b91506145eb8261553d565b604082019050919050565b6000614603602a83614ef6565b915061460e8261558c565b604082019050919050565b6000614626602983614ef6565b9150614631826155db565b604082019050919050565b6000614649603483614ef6565b91506146548261562a565b604082019050919050565b600061466c602b83614ef6565b915061467782615679565b604082019050919050565b600061468f602083614ef6565b915061469a826156c8565b602082019050919050565b60006146b2602c83614ef6565b91506146bd826156f1565b604082019050919050565b60006146d5602083614ef6565b91506146e082615740565b602082019050919050565b60006146f8602983614ef6565b915061470382615769565b604082019050919050565b600061471b602f83614ef6565b9150614726826157b8565b604082019050919050565b600061473e603183614ef6565b915061474982615807565b604082019050919050565b6000614761603183614ef6565b915061476c82615856565b604082019050919050565b6000614784602583614ef6565b915061478f826158a5565b604082019050919050565b60006147a7602183614ef6565b91506147b2826158f4565b604082019050919050565b60006147ca602d83614ef6565b91506147d582615943565b604082019050919050565b60006147ed602a83614ef6565b91506147f882615992565b604082019050919050565b6000614810603183614ef6565b915061481b826159e1565b604082019050919050565b6000614833603b83614ef6565b915061483e82615a30565b604082019050919050565b6000614856603983614ef6565b915061486182615a7f565b604082019050919050565b6000614879602383614ef6565b915061488482615ace565b604082019050919050565b614898816150a3565b82525050565b60006148aa82856143f6565b91506148b68284614345565b91508190509392505050565b60006020820190506148d760008301846142b5565b92915050565b60006020820190506148f260008301846142a6565b92915050565b600060808201905061490d60008301876142b5565b61491a60208301866142b5565b614927604083018561488f565b818103606083015261493981846142d3565b905095945050505050565b600060408201905061495960008301856142b5565b61496660208301846142c4565b9392505050565b600060408201905061498260008301856142b5565b61498f602083018461488f565b9392505050565b60006060820190506149ab60008301866142b5565b6149b8602083018561488f565b6149c5604083018461488f565b949350505050565b60006020820190506149e260008301846142c4565b92915050565b60006020820190508181036000830152614a02818461430c565b905092915050565b60006020820190508181036000830152614a248184614376565b905092915050565b60006020820190508181036000830152614a4581614475565b9050919050565b60006020820190508181036000830152614a6581614498565b9050919050565b60006020820190508181036000830152614a85816144bb565b9050919050565b60006020820190508181036000830152614aa5816144de565b9050919050565b60006020820190508181036000830152614ac581614501565b9050919050565b60006020820190508181036000830152614ae581614524565b9050919050565b60006020820190508181036000830152614b0581614547565b9050919050565b60006020820190508181036000830152614b258161456a565b9050919050565b60006020820190508181036000830152614b458161458d565b9050919050565b60006020820190508181036000830152614b65816145b0565b9050919050565b60006020820190508181036000830152614b85816145d3565b9050919050565b60006020820190508181036000830152614ba5816145f6565b9050919050565b60006020820190508181036000830152614bc581614619565b9050919050565b60006020820190508181036000830152614be58161463c565b9050919050565b60006020820190508181036000830152614c058161465f565b9050919050565b60006020820190508181036000830152614c2581614682565b9050919050565b60006020820190508181036000830152614c45816146a5565b9050919050565b60006020820190508181036000830152614c65816146c8565b9050919050565b60006020820190508181036000830152614c85816146eb565b9050919050565b60006020820190508181036000830152614ca58161470e565b9050919050565b60006020820190508181036000830152614cc581614731565b9050919050565b60006020820190508181036000830152614ce581614754565b9050919050565b60006020820190508181036000830152614d0581614777565b9050919050565b60006020820190508181036000830152614d258161479a565b9050919050565b60006020820190508181036000830152614d45816147bd565b9050919050565b60006020820190508181036000830152614d65816147e0565b9050919050565b60006020820190508181036000830152614d8581614803565b9050919050565b60006020820190508181036000830152614da581614826565b9050919050565b60006020820190508181036000830152614dc581614849565b9050919050565b60006020820190508181036000830152614de58161486c565b9050919050565b6000602082019050614e01600083018461488f565b92915050565b6000614e11614e22565b9050614e1d8282615121565b919050565b6000604051905090565b600067ffffffffffffffff821115614e4757614e46615259565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614e7357614e72615259565b5b614e7c82615288565b9050602081019050919050565b600067ffffffffffffffff821115614ea457614ea3615259565b5b614ead82615288565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614f1d826150a3565b9150614f28836150a3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614f5d57614f5c6151cc565b5b828201905092915050565b6000614f73826150a3565b9150614f7e836150a3565b925082614f8e57614f8d6151fb565b5b828204905092915050565b6000614fa4826150a3565b9150614faf836150a3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614fe857614fe76151cc565b5b828202905092915050565b6000614ffe826150a3565b9150615009836150a3565b92508282101561501c5761501b6151cc565b5b828203905092915050565b600061503282615083565b9050919050565b600061504482615083565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156150da5780820151818401526020810190506150bf565b838111156150e9576000848401525b50505050565b6000600282049050600182168061510757607f821691505b6020821081141561511b5761511a61522a565b5b50919050565b61512a82615288565b810181811067ffffffffffffffff8211171561514957615148615259565b5b80604052505050565b600061515d826150a3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156151905761518f6151cc565b5b600182019050919050565b60006151a6826150a3565b91506151b1836150a3565b9250826151c1576151c06151fb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f44726f7073706163653a3a70726573616c654275793a20696e76616c6964207460008201527f69636b65742e0000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f44726f7073706163653a3a6275793a20536d61727420636f6e7472616374732060008201527f617265206e6f7420616c6c6f77656420746f206275792e000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e6f7420656e6f75676820746f6b656e73206c6566742e000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f44726f7073706163653a3a70726573616c654275793a20496e7375666669636960008201527f656e74207061796d656e742e0000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f44726f7073706163653a3a6275793a20546f6f206d616e7920746f6b656e732060008201527f666f72206f6e65207472616e73616374696f6e2e000000000000000000000000602082015250565b7f44726f7073706163653a3a70726573616c654275793a205469636b657420616c60008201527f726561647920757365642e000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f44726f7073706163653a3a77686974656c6973744275793a20596f752061726560008201527f206e6f742077686974656c69737465642e000000000000000000000000000000602082015250565b7f44726f70537061636553616c653a3a7365745469636b6574416464726573733a60008201527f20496e76616c696420616464726573732e000000000000000000000000000000602082015250565b7f44726f7073706163653a3a6275793a20496e73756666696369656e742070617960008201527f6d656e742e000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f44726f7073706163653a3a70726573616c654275793a2050726573616c65206960008201527f73206e6f74204163746976652e00000000000000000000000000000000000000602082015250565b7f44726f7073706163653a3a636c6561725469636b65743a205469636b6574206960008201527f73206e6f74207573656400000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f44726f7073706163653a3a70726573616c654275793a20546f6f206d616e792060008201527f746f6b656e7320666f72206f6e65207472616e73616374696f6e2e0000000000602082015250565b7f44726f70537061636553616c653a3a77686974656c6973744275793a2057686960008201527f74656c69737420427579206973206e6f74204163746976652e00000000000000602082015250565b7f44726f7073706163653a3a6275793a2053616c65206973206e6f74206163746960008201527f76652e0000000000000000000000000000000000000000000000000000000000602082015250565b615b2681615027565b8114615b3157600080fd5b50565b615b3d81615039565b8114615b4857600080fd5b50565b615b548161504b565b8114615b5f57600080fd5b50565b615b6b81615057565b8114615b7657600080fd5b50565b615b82816150a3565b8114615b8d57600080fd5b5056fea2646970667358221220b8a082a9167f9a54a83eaff9263a9d242590bcea526171ad6f41a7d69c26682c64736f6c634300080400330000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000b1a2bc2ec5000000000000000000000000000000000000000000000000000000000000000009c4000000000000000000000000d11902466587415de497440d27045c09de26ce70000000000000000000000000856701083ed11a0d35bac3b769b4c8efe3330d170000000000000000000000007ba0a79ec30259e2792a43989edd97c6e40bb3360000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000011576f6d656e20616e6420576561706f6e7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035741570000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005b68747470733a2f2f776f6d656e616e64776561706f6e732e6d7970696e6174612e636c6f75642f697066732f516d586f703566414a6d66686468557a7a6147365058576b6351376552683842627a594e4e317379514a535377392f0000000000

Deployed Bytecode

0x6080604052600436106102e85760003560e01c80636c0360eb11610190578063a22cb465116100dc578063d96a094a11610095578063ed9a5bbb1161006f578063ed9a5bbb14610aa6578063edac985b14610acf578063f2fde38b14610af8578063f4a0a52814610b21576102ef565b8063d96a094a14610a36578063db2e21bc14610a52578063e985e9c514610a69576102ef565b8063a22cb4651461093e578063ab26320e14610967578063b88d4fde14610990578063b89fe999146109b9578063c87b56dd146109d0578063d44e357314610a0d576102ef565b806389b0649b1161014957806395d89b411161012357806395d89b4114610882578063996517cf146108ad5780639b19251a146108d85780639e6a1d7d14610915576102ef565b806389b0649b146108155780638da5cb5b1461082c5780638ea5220f14610857576102ef565b80636c0360eb1461070757806370a0823114610732578063715018a61461076f57806371efdc211461078657806375796f76146107c3578063819b25ba146107ec576102ef565b80633100a5351161024f57806355f804b3116102085780636352211e116101e25780636352211e14610649578063646d7a7f146106865780636817c76c146106b157806368428a1b146106dc576102ef565b806355f804b3146105cc57806357a8e3fe146105f55780635c4e7e0614610620576102ef565b80633100a535146104f45780633ad7f56c1461050b5780633ccfd60b1461053657806342842e0e1461054d5780634a7d80b31461057657806353135ca0146105a1576102ef565b80630c424284116102a15780630c4242841461040757806318160ddd1461043057806319d1997a1461045b5780631f53ac021461048657806323b872dd146104af5780632ac7a2b3146104d8576102ef565b806301ffc9a7146102f457806306fdde0314610331578063081812fc1461035c57806308e9928714610399578063095ea7b3146103c25780630983061c146103eb576102ef565b366102ef57005b600080fd5b34801561030057600080fd5b5061031b600480360381019061031691906141ae565b610b4a565b60405161032891906149cd565b60405180910390f35b34801561033d57600080fd5b50610346610c2c565b60405161035391906149e8565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e9190614241565b610cbe565b60405161039091906148c2565b60405180910390f35b3480156103a557600080fd5b506103c060048036038101906103bb9190614185565b610d43565b005b3480156103ce57600080fd5b506103e960048036038101906103e49190614108565b610e22565b005b6104056004803603810190610400919061426a565b610f3a565b005b34801561041357600080fd5b5061042e600480360381019061042991906140cc565b611212565b005b34801561043c57600080fd5b50610445611322565b6040516104529190614dec565b60405180910390f35b34801561046757600080fd5b50610470611328565b60405161047d9190614dec565b60405180910390f35b34801561049257600080fd5b506104ad60048036038101906104a89190613f9d565b61132e565b005b3480156104bb57600080fd5b506104d660048036038101906104d19190614002565b611447565b005b6104f260048036038101906104ed9190614241565b6114a7565b005b34801561050057600080fd5b50610509611663565b005b34801561051757600080fd5b50610520611751565b60405161052d91906149cd565b60405180910390f35b34801561054257600080fd5b5061054b611764565b005b34801561055957600080fd5b50610574600480360381019061056f9190614002565b61190a565b005b34801561058257600080fd5b5061058b61192a565b60405161059891906148dd565b60405180910390f35b3480156105ad57600080fd5b506105b6611950565b6040516105c391906149cd565b60405180910390f35b3480156105d857600080fd5b506105f360048036038101906105ee9190614200565b611963565b005b34801561060157600080fd5b5061060a611a31565b60405161061791906148c2565b60405180910390f35b34801561062c57600080fd5b5061064760048036038101906106429190614241565b611a57565b005b34801561065557600080fd5b50610670600480360381019061066b9190614241565b611b33565b60405161067d91906148c2565b60405180910390f35b34801561069257600080fd5b5061069b611be5565b6040516106a891906149cd565b60405180910390f35b3480156106bd57600080fd5b506106c6611bf8565b6040516106d39190614dec565b60405180910390f35b3480156106e857600080fd5b506106f1611bfe565b6040516106fe91906149cd565b60405180910390f35b34801561071357600080fd5b5061071c611c11565b60405161072991906149e8565b60405180910390f35b34801561073e57600080fd5b5061075960048036038101906107549190613f4b565b611c9f565b6040516107669190614dec565b60405180910390f35b34801561077b57600080fd5b50610784611d57565b005b34801561079257600080fd5b506107ad60048036038101906107a89190614241565b611ddf565b6040516107ba91906149cd565b60405180910390f35b3480156107cf57600080fd5b506107ea60048036038101906107e59190613f9d565b611dff565b005b3480156107f857600080fd5b50610813600480360381019061080e9190614241565b611f18565b005b34801561082157600080fd5b5061082a611fd7565b005b34801561083857600080fd5b506108416120c5565b60405161084e91906148c2565b60405180910390f35b34801561086357600080fd5b5061086c6120ef565b60405161087991906148dd565b60405180910390f35b34801561088e57600080fd5b50610897612115565b6040516108a491906149e8565b60405180910390f35b3480156108b957600080fd5b506108c26121a7565b6040516108cf9190614dec565b60405180910390f35b3480156108e457600080fd5b506108ff60048036038101906108fa9190613f4b565b6121ad565b60405161090c91906149cd565b60405180910390f35b34801561092157600080fd5b5061093c60048036038101906109379190614241565b6121cd565b005b34801561094a57600080fd5b50610965600480360381019061096091906140cc565b61228c565b005b34801561097357600080fd5b5061098e60048036038101906109899190614241565b61240d565b005b34801561099c57600080fd5b506109b760048036038101906109b29190614051565b61254f565b005b3480156109c557600080fd5b506109ce6125b1565b005b3480156109dc57600080fd5b506109f760048036038101906109f29190614241565b61269f565b604051610a0491906149e8565b60405180910390f35b348015610a1957600080fd5b50610a346004803603810190610a2f9190614241565b612747565b005b610a506004803603810190610a4b9190614241565b612804565b005b348015610a5e57600080fd5b50610a6761297e565b005b348015610a7557600080fd5b50610a906004803603810190610a8b9190613fc6565b612a4a565b604051610a9d91906149cd565b60405180910390f35b348015610ab257600080fd5b50610acd6004803603810190610ac89190613f4b565b612ade565b005b348015610adb57600080fd5b50610af66004803603810190610af19190614144565b612c45565b005b348015610b0457600080fd5b50610b1f6004803603810190610b1a9190613f4b565b612df6565b005b348015610b2d57600080fd5b50610b486004803603810190610b439190614241565b612eee565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c1557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c255750610c2482612fc1565b5b9050919050565b606060008054610c3b906150ef565b80601f0160208091040260200160405190810160405280929190818152602001828054610c67906150ef565b8015610cb45780601f10610c8957610100808354040283529160200191610cb4565b820191906000526020600020905b815481529060010190602001808311610c9757829003601f168201915b5050505050905090565b6000610cc98261302b565b610d08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cff90614c2c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610d4b613097565b73ffffffffffffffffffffffffffffffffffffffff16610d696120c5565b73ffffffffffffffffffffffffffffffffffffffff1614610dbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db690614c4c565b60405180910390fd5b80600c60006101000a81548160ff0219169083151502179055507f2a5bfbb68782e57b3242e612145304c845af3404e2d328a12dd2e7c078cd0117600c60009054906101000a900460ff16604051610e1791906149cd565b60405180910390a150565b6000610e2d82611b33565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9590614d0c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ebd613097565b73ffffffffffffffffffffffffffffffffffffffff161480610eec5750610eeb81610ee6613097565b612a4a565b5b610f2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2290614b6c565b60405180910390fd5b610f35838361309f565b505050565b600c60029054906101000a900460ff16610f89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8090614d2c565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b8152600401610ffb9190614dec565b60206040518083038186803b15801561101357600080fd5b505afa158015611027573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061104b9190613f74565b73ffffffffffffffffffffffffffffffffffffffff16146110a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109890614a2c565b60405180910390fd5b6011600083815260200190815260200160002060009054906101000a900460ff1615611102576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f990614bec565b60405180910390fd5b600854811115611147576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113e90614d8c565b60405180910390fd5b61115c8160095461315890919063ffffffff16565b34101561119e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119590614b2c565b60405180910390fd5b60016011600084815260200190815260200160002060006101000a81548160ff0219169083151502179055506111d38161316e565b7fb77d41b776d1d5cc75b500402614335da616afa8aa95b49325e22db7f1ca86cc33838360405161120693929190614996565b60405180910390a15050565b61121a613097565b73ffffffffffffffffffffffffffffffffffffffff166112386120c5565b73ffffffffffffffffffffffffffffffffffffffff161461128e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128590614c4c565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f8daaf060c3306c38e068a75c054bf96ecd85a3db1252712c4d93632744c42e0d8282604051611316929190614944565b60405180910390a15050565b60075481565b600a5481565b611336613097565b73ffffffffffffffffffffffffffffffffffffffff166113546120c5565b73ffffffffffffffffffffffffffffffffffffffff16146113aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a190614c4c565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f268c00f4ec08b34fdde24b52e47a09d62f3f3837eb3b8ac7206cefb3bb5e5345600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660405161143c91906148dd565b60405180910390a150565b611458611452613097565b82613284565b611497576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148e90614d6c565b60405180910390fd5b6114a2838383613362565b505050565b600c60039054906101000a900460ff166114f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ed90614dac565b60405180910390fd5b60085481111561153b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153290614d8c565b60405180910390fd5b6115508160095461315890919063ffffffff16565b341015611592576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158990614b2c565b60405180910390fd5b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661161e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161590614cac565b60405180910390fd5b7f8714612a507e7fcd9f26d997e561a61611f4bad945c787b8865dc23823ef037b338260405161164f92919061496d565b60405180910390a16116608161316e565b50565b61166b613097565b73ffffffffffffffffffffffffffffffffffffffff166116896120c5565b73ffffffffffffffffffffffffffffffffffffffff16146116df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d690614c4c565b60405180910390fd5b600c60019054906101000a900460ff1615600c60016101000a81548160ff0219169083151502179055507f5a454f976028c400c4159ac85c61452441fcf06b9888c7c780c5980e3c3123dd600c60019054906101000a900460ff1660405161174791906149cd565b60405180910390a1565b600c60039054906101000a900460ff1681565b61176c613097565b73ffffffffffffffffffffffffffffffffffffffff1661178a6120c5565b73ffffffffffffffffffffffffffffffffffffffff16146117e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d790614c4c565b60405180910390fd5b6000479050600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc61184a61271061183c600f548661315890919063ffffffff16565b6135be90919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015611875573d6000803e3d6000fd5b50600c60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6118db6127106118cd6010548661315890919063ffffffff16565b6135be90919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015611906573d6000803e3d6000fd5b5050565b6119258383836040518060200160405280600081525061254f565b505050565b600c60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c60029054906101000a900460ff1681565b61196b613097565b73ffffffffffffffffffffffffffffffffffffffff166119896120c5565b73ffffffffffffffffffffffffffffffffffffffff16146119df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d690614c4c565b60405180910390fd5b80600b90805190602001906119f5929190613caf565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf6600b604051611a269190614a0a565b60405180910390a150565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611a5f613097565b73ffffffffffffffffffffffffffffffffffffffff16611a7d6120c5565b73ffffffffffffffffffffffffffffffffffffffff1614611ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aca90614c4c565b60405180910390fd5b80600f81905550611af1600f54612710612fab90919063ffffffff16565b6010819055507fd20ab7c161b1f8ebfab00e747660c0fa31ae9123063e580b5be0aeab18623db2600f54604051611b289190614dec565b60405180910390a150565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd390614bac565b60405180910390fd5b80915050919050565b600c60009054906101000a900460ff1681565b60095481565b600c60019054906101000a900460ff1681565b600b8054611c1e906150ef565b80601f0160208091040260200160405190810160405280929190818152602001828054611c4a906150ef565b8015611c975780601f10611c6c57610100808354040283529160200191611c97565b820191906000526020600020905b815481529060010190602001808311611c7a57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0790614b8c565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611d5f613097565b73ffffffffffffffffffffffffffffffffffffffff16611d7d6120c5565b73ffffffffffffffffffffffffffffffffffffffff1614611dd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dca90614c4c565b60405180910390fd5b611ddd60006135d4565b565b60116020528060005260406000206000915054906101000a900460ff1681565b611e07613097565b73ffffffffffffffffffffffffffffffffffffffff16611e256120c5565b73ffffffffffffffffffffffffffffffffffffffff1614611e7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7290614c4c565b60405180910390fd5b80600c60046101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fb470355146314037ce5186813b4b7c65bff2b87f98d44ff063570d0e22d65ba3600c60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff16604051611f0d91906148dd565b60405180910390a150565b611f20613097565b73ffffffffffffffffffffffffffffffffffffffff16611f3e6120c5565b73ffffffffffffffffffffffffffffffffffffffff1614611f94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8b90614c4c565b60405180910390fd5b611f9d8161316e565b7fdb7b64a879507c32bda4d0cf22dee29ed875c7157ecbbc10fe11bf14fab06d1281604051611fcc9190614dec565b60405180910390a150565b611fdf613097565b73ffffffffffffffffffffffffffffffffffffffff16611ffd6120c5565b73ffffffffffffffffffffffffffffffffffffffff1614612053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204a90614c4c565b60405180910390fd5b600c60029054906101000a900460ff1615600c60026101000a81548160ff0219169083151502179055507f38822fae85453c65b78e1b7d02e45cae5eb0d7961e34226fb29c49dab9d3a357600c60029054906101000a900460ff166040516120bb91906149cd565b60405180910390a1565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606060018054612124906150ef565b80601f0160208091040260200160405190810160405280929190818152602001828054612150906150ef565b801561219d5780601f106121725761010080835404028352916020019161219d565b820191906000526020600020905b81548152906001019060200180831161218057829003601f168201915b5050505050905090565b60085481565b60126020528060005260406000206000915054906101000a900460ff1681565b6121d5613097565b73ffffffffffffffffffffffffffffffffffffffff166121f36120c5565b73ffffffffffffffffffffffffffffffffffffffff1614612249576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161224090614c4c565b60405180910390fd5b806008819055507f9ae30a041b5f2244849dc754c675b09aef4ad230b48995476fd6e6415d1fe8ab6008546040516122819190614dec565b60405180910390a150565b612294613097565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f990614b0c565b60405180910390fd5b806005600061230f613097565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166123bc613097565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161240191906149cd565b60405180910390a35050565b612415613097565b73ffffffffffffffffffffffffffffffffffffffff166124336120c5565b73ffffffffffffffffffffffffffffffffffffffff1614612489576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161248090614c4c565b60405180910390fd5b6011600082815260200190815260200160002060009054906101000a900460ff166124e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e090614d4c565b60405180910390fd5b60006011600083815260200190815260200160002060006101000a81548160ff0219169083151502179055507f256e63760868166c3f047c49d3e1614c1ca6c620d715c552c54ddb4ba428719c816040516125449190614dec565b60405180910390a150565b61256061255a613097565b83613284565b61259f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259690614d6c565b60405180910390fd5b6125ab8484848461369a565b50505050565b6125b9613097565b73ffffffffffffffffffffffffffffffffffffffff166125d76120c5565b73ffffffffffffffffffffffffffffffffffffffff161461262d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262490614c4c565b60405180910390fd5b600c60039054906101000a900460ff1615600c60036101000a81548160ff0219169083151502179055507ffabb6e4b24bd8ac3a08555e569d13590c5006dc61e4aae65e74296d3df6759ed600c60039054906101000a900460ff1660405161269591906149cd565b60405180910390a1565b60606126aa8261302b565b6126e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126e090614c8c565b60405180910390fd5b6000600b80546126f8906150ef565b9050116127145760405180602001604052806000815250612740565b600b61271f836136f6565b60405160200161273092919061489e565b6040516020818303038152906040525b9050919050565b61274f613097565b73ffffffffffffffffffffffffffffffffffffffff1661276d6120c5565b73ffffffffffffffffffffffffffffffffffffffff16146127c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ba90614c4c565b60405180910390fd5b80600a819055507f178f2d92de18f124251b08e25bacba56eda0716625c1e799fc6c8ed1ee7d1d07816040516127f99190614dec565b60405180910390a150565b600c60019054906101000a900460ff16612853576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284a90614dcc565b60405180910390fd5b600854811115612898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288f90614bcc565b60405180910390fd5b6128ad8160095461315890919063ffffffff16565b3410156128ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e690614cec565b60405180910390fd5b600c60009054906101000a900460ff16612972573373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614612971576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296890614a8c565b60405180910390fd5b5b61297b8161316e565b50565b612986613097565b73ffffffffffffffffffffffffffffffffffffffff166129a46120c5565b73ffffffffffffffffffffffffffffffffffffffff16146129fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f190614c4c565b60405180910390fd5b612a026120c5565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015612a47573d6000803e3d6000fd5b50565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b612ae6613097565b73ffffffffffffffffffffffffffffffffffffffff16612b046120c5565b73ffffffffffffffffffffffffffffffffffffffff1614612b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5190614c4c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612bca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc190614ccc565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f4846b8d14a603fbd3567c63384f41a947d787c004e59ce39ee755d0485ae5ed881604051612c3a91906148c2565b60405180910390a150565b612c4d613097565b73ffffffffffffffffffffffffffffffffffffffff16612c6b6120c5565b73ffffffffffffffffffffffffffffffffffffffff1614612cc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb890614c4c565b60405180910390fd5b60005b8151811015612df257600160126000848481518110612d0c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507faec42ac7f1bb8651906ae6522f50a19429e124e8ea678ef59fd27750759288a2828281518110612dbf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516001604051612dd7929190614944565b60405180910390a18080612dea90615152565b915050612cc4565b5050565b612dfe613097565b73ffffffffffffffffffffffffffffffffffffffff16612e1c6120c5565b73ffffffffffffffffffffffffffffffffffffffff1614612e72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e6990614c4c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed990614a6c565b60405180910390fd5b612eeb816135d4565b50565b612ef6613097565b73ffffffffffffffffffffffffffffffffffffffff16612f146120c5565b73ffffffffffffffffffffffffffffffffffffffff1614612f6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f6190614c4c565b60405180910390fd5b806009819055507f25b1f9f6b6e61dfca5575239769e4450ed2e49176670837f5d1a82a9a2fc693f81604051612fa09190614dec565b60405180910390a150565b60008183612fb99190614ff3565b905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661311283611b33565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081836131669190614f99565b905092915050565b600a54613186826007546138a390919063ffffffff16565b11156131c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131be90614acc565b60405180910390fd5b6000600754905060005b8281101561327f576131ed6001836138a390919063ffffffff16565b915061320560016007546138a390919063ffffffff16565b60078190555061321533836138b9565b813373ffffffffffffffffffffffffffffffffffffffff167f85a66b9141978db9980f7e0ce3b468cebf4f7999f32b23091c5c03e798b1ba7a6132578561269f565b60405161326491906149e8565b60405180910390a3808061327790615152565b9150506131d1565b505050565b600061328f8261302b565b6132ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132c590614b4c565b60405180910390fd5b60006132d983611b33565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061334857508373ffffffffffffffffffffffffffffffffffffffff1661333084610cbe565b73ffffffffffffffffffffffffffffffffffffffff16145b8061335957506133588185612a4a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661338282611b33565b73ffffffffffffffffffffffffffffffffffffffff16146133d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133cf90614c6c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613448576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161343f90614aec565b60405180910390fd5b6134538383836138d7565b61345e60008261309f565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546134ae9190614ff3565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135059190614f12565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081836135cc9190614f68565b905092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6136a5848484613362565b6136b1848484846138dc565b6136f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136e790614a4c565b60405180910390fd5b50505050565b6060600082141561373e576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061389e565b600082905060005b6000821461377057808061375990615152565b915050600a826137699190614f68565b9150613746565b60008167ffffffffffffffff8111156137b2577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156137e45781602001600182028036833780820191505090505b5090505b60008514613897576001826137fd9190614ff3565b9150600a8561380c919061519b565b60306138189190614f12565b60f81b818381518110613854577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856138909190614f68565b94506137e8565b8093505050505b919050565b600081836138b19190614f12565b905092915050565b6138d3828260405180602001604052806000815250613a73565b5050565b505050565b60006138fd8473ffffffffffffffffffffffffffffffffffffffff16613ace565b15613a66578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613926613097565b8786866040518563ffffffff1660e01b815260040161394894939291906148f8565b602060405180830381600087803b15801561396257600080fd5b505af192505050801561399357506040513d601f19601f8201168201806040525081019061399091906141d7565b60015b613a16573d80600081146139c3576040519150601f19603f3d011682016040523d82523d6000602084013e6139c8565b606091505b50600081511415613a0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a0590614a4c565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613a6b565b600190505b949350505050565b613a7d8383613ae1565b613a8a60008484846138dc565b613ac9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613ac090614a4c565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613b51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b4890614c0c565b60405180910390fd5b613b5a8161302b565b15613b9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b9190614aac565b60405180910390fd5b613ba6600083836138d7565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613bf69190614f12565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613cbb906150ef565b90600052602060002090601f016020900481019282613cdd5760008555613d24565b82601f10613cf657805160ff1916838001178555613d24565b82800160010185558215613d24579182015b82811115613d23578251825591602001919060010190613d08565b5b509050613d319190613d35565b5090565b5b80821115613d4e576000816000905550600101613d36565b5090565b6000613d65613d6084614e2c565b614e07565b90508083825260208201905082856020860282011115613d8457600080fd5b60005b85811015613db45781613d9a8882613e3a565b845260208401935060208301925050600181019050613d87565b5050509392505050565b6000613dd1613dcc84614e58565b614e07565b905082815260208101848484011115613de957600080fd5b613df48482856150ad565b509392505050565b6000613e0f613e0a84614e89565b614e07565b905082815260208101848484011115613e2757600080fd5b613e328482856150ad565b509392505050565b600081359050613e4981615b1d565b92915050565b600081519050613e5e81615b1d565b92915050565b600081359050613e7381615b34565b92915050565b600082601f830112613e8a57600080fd5b8135613e9a848260208601613d52565b91505092915050565b600081359050613eb281615b4b565b92915050565b600081359050613ec781615b62565b92915050565b600081519050613edc81615b62565b92915050565b600082601f830112613ef357600080fd5b8135613f03848260208601613dbe565b91505092915050565b600082601f830112613f1d57600080fd5b8135613f2d848260208601613dfc565b91505092915050565b600081359050613f4581615b79565b92915050565b600060208284031215613f5d57600080fd5b6000613f6b84828501613e3a565b91505092915050565b600060208284031215613f8657600080fd5b6000613f9484828501613e4f565b91505092915050565b600060208284031215613faf57600080fd5b6000613fbd84828501613e64565b91505092915050565b60008060408385031215613fd957600080fd5b6000613fe785828601613e3a565b9250506020613ff885828601613e3a565b9150509250929050565b60008060006060848603121561401757600080fd5b600061402586828701613e3a565b935050602061403686828701613e3a565b925050604061404786828701613f36565b9150509250925092565b6000806000806080858703121561406757600080fd5b600061407587828801613e3a565b945050602061408687828801613e3a565b935050604061409787828801613f36565b925050606085013567ffffffffffffffff8111156140b457600080fd5b6140c087828801613ee2565b91505092959194509250565b600080604083850312156140df57600080fd5b60006140ed85828601613e3a565b92505060206140fe85828601613ea3565b9150509250929050565b6000806040838503121561411b57600080fd5b600061412985828601613e3a565b925050602061413a85828601613f36565b9150509250929050565b60006020828403121561415657600080fd5b600082013567ffffffffffffffff81111561417057600080fd5b61417c84828501613e79565b91505092915050565b60006020828403121561419757600080fd5b60006141a584828501613ea3565b91505092915050565b6000602082840312156141c057600080fd5b60006141ce84828501613eb8565b91505092915050565b6000602082840312156141e957600080fd5b60006141f784828501613ecd565b91505092915050565b60006020828403121561421257600080fd5b600082013567ffffffffffffffff81111561422c57600080fd5b61423884828501613f0c565b91505092915050565b60006020828403121561425357600080fd5b600061426184828501613f36565b91505092915050565b6000806040838503121561427d57600080fd5b600061428b85828601613f36565b925050602061429c85828601613f36565b9150509250929050565b6142af81615039565b82525050565b6142be81615027565b82525050565b6142cd8161504b565b82525050565b60006142de82614ecf565b6142e88185614ee5565b93506142f88185602086016150bc565b61430181615288565b840191505092915050565b600061431782614eda565b6143218185614ef6565b93506143318185602086016150bc565b61433a81615288565b840191505092915050565b600061435082614eda565b61435a8185614f07565b935061436a8185602086016150bc565b80840191505092915050565b60008154614383816150ef565b61438d8186614ef6565b945060018216600081146143a857600181146143ba576143ed565b60ff19831686526020860193506143ed565b6143c385614eba565b60005b838110156143e5578154818901526001820191506020810190506143c6565b808801955050505b50505092915050565b60008154614403816150ef565b61440d8186614f07565b9450600182166000811461442857600181146144395761446c565b60ff1983168652818601935061446c565b61444285614eba565b60005b8381101561446457815481890152600182019150602081019050614445565b838801955050505b50505092915050565b6000614482602683614ef6565b915061448d82615299565b604082019050919050565b60006144a5603283614ef6565b91506144b0826152e8565b604082019050919050565b60006144c8602683614ef6565b91506144d382615337565b604082019050919050565b60006144eb603783614ef6565b91506144f682615386565b604082019050919050565b600061450e601c83614ef6565b9150614519826153d5565b602082019050919050565b6000614531601783614ef6565b915061453c826153fe565b602082019050919050565b6000614554602483614ef6565b915061455f82615427565b604082019050919050565b6000614577601983614ef6565b915061458282615476565b602082019050919050565b600061459a602c83614ef6565b91506145a58261549f565b604082019050919050565b60006145bd602c83614ef6565b91506145c8826154ee565b604082019050919050565b60006145e0603883614ef6565b91506145eb8261553d565b604082019050919050565b6000614603602a83614ef6565b915061460e8261558c565b604082019050919050565b6000614626602983614ef6565b9150614631826155db565b604082019050919050565b6000614649603483614ef6565b91506146548261562a565b604082019050919050565b600061466c602b83614ef6565b915061467782615679565b604082019050919050565b600061468f602083614ef6565b915061469a826156c8565b602082019050919050565b60006146b2602c83614ef6565b91506146bd826156f1565b604082019050919050565b60006146d5602083614ef6565b91506146e082615740565b602082019050919050565b60006146f8602983614ef6565b915061470382615769565b604082019050919050565b600061471b602f83614ef6565b9150614726826157b8565b604082019050919050565b600061473e603183614ef6565b915061474982615807565b604082019050919050565b6000614761603183614ef6565b915061476c82615856565b604082019050919050565b6000614784602583614ef6565b915061478f826158a5565b604082019050919050565b60006147a7602183614ef6565b91506147b2826158f4565b604082019050919050565b60006147ca602d83614ef6565b91506147d582615943565b604082019050919050565b60006147ed602a83614ef6565b91506147f882615992565b604082019050919050565b6000614810603183614ef6565b915061481b826159e1565b604082019050919050565b6000614833603b83614ef6565b915061483e82615a30565b604082019050919050565b6000614856603983614ef6565b915061486182615a7f565b604082019050919050565b6000614879602383614ef6565b915061488482615ace565b604082019050919050565b614898816150a3565b82525050565b60006148aa82856143f6565b91506148b68284614345565b91508190509392505050565b60006020820190506148d760008301846142b5565b92915050565b60006020820190506148f260008301846142a6565b92915050565b600060808201905061490d60008301876142b5565b61491a60208301866142b5565b614927604083018561488f565b818103606083015261493981846142d3565b905095945050505050565b600060408201905061495960008301856142b5565b61496660208301846142c4565b9392505050565b600060408201905061498260008301856142b5565b61498f602083018461488f565b9392505050565b60006060820190506149ab60008301866142b5565b6149b8602083018561488f565b6149c5604083018461488f565b949350505050565b60006020820190506149e260008301846142c4565b92915050565b60006020820190508181036000830152614a02818461430c565b905092915050565b60006020820190508181036000830152614a248184614376565b905092915050565b60006020820190508181036000830152614a4581614475565b9050919050565b60006020820190508181036000830152614a6581614498565b9050919050565b60006020820190508181036000830152614a85816144bb565b9050919050565b60006020820190508181036000830152614aa5816144de565b9050919050565b60006020820190508181036000830152614ac581614501565b9050919050565b60006020820190508181036000830152614ae581614524565b9050919050565b60006020820190508181036000830152614b0581614547565b9050919050565b60006020820190508181036000830152614b258161456a565b9050919050565b60006020820190508181036000830152614b458161458d565b9050919050565b60006020820190508181036000830152614b65816145b0565b9050919050565b60006020820190508181036000830152614b85816145d3565b9050919050565b60006020820190508181036000830152614ba5816145f6565b9050919050565b60006020820190508181036000830152614bc581614619565b9050919050565b60006020820190508181036000830152614be58161463c565b9050919050565b60006020820190508181036000830152614c058161465f565b9050919050565b60006020820190508181036000830152614c2581614682565b9050919050565b60006020820190508181036000830152614c45816146a5565b9050919050565b60006020820190508181036000830152614c65816146c8565b9050919050565b60006020820190508181036000830152614c85816146eb565b9050919050565b60006020820190508181036000830152614ca58161470e565b9050919050565b60006020820190508181036000830152614cc581614731565b9050919050565b60006020820190508181036000830152614ce581614754565b9050919050565b60006020820190508181036000830152614d0581614777565b9050919050565b60006020820190508181036000830152614d258161479a565b9050919050565b60006020820190508181036000830152614d45816147bd565b9050919050565b60006020820190508181036000830152614d65816147e0565b9050919050565b60006020820190508181036000830152614d8581614803565b9050919050565b60006020820190508181036000830152614da581614826565b9050919050565b60006020820190508181036000830152614dc581614849565b9050919050565b60006020820190508181036000830152614de58161486c565b9050919050565b6000602082019050614e01600083018461488f565b92915050565b6000614e11614e22565b9050614e1d8282615121565b919050565b6000604051905090565b600067ffffffffffffffff821115614e4757614e46615259565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614e7357614e72615259565b5b614e7c82615288565b9050602081019050919050565b600067ffffffffffffffff821115614ea457614ea3615259565b5b614ead82615288565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614f1d826150a3565b9150614f28836150a3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614f5d57614f5c6151cc565b5b828201905092915050565b6000614f73826150a3565b9150614f7e836150a3565b925082614f8e57614f8d6151fb565b5b828204905092915050565b6000614fa4826150a3565b9150614faf836150a3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614fe857614fe76151cc565b5b828202905092915050565b6000614ffe826150a3565b9150615009836150a3565b92508282101561501c5761501b6151cc565b5b828203905092915050565b600061503282615083565b9050919050565b600061504482615083565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156150da5780820151818401526020810190506150bf565b838111156150e9576000848401525b50505050565b6000600282049050600182168061510757607f821691505b6020821081141561511b5761511a61522a565b5b50919050565b61512a82615288565b810181811067ffffffffffffffff8211171561514957615148615259565b5b80604052505050565b600061515d826150a3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156151905761518f6151cc565b5b600182019050919050565b60006151a6826150a3565b91506151b1836150a3565b9250826151c1576151c06151fb565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f44726f7073706163653a3a70726573616c654275793a20696e76616c6964207460008201527f69636b65742e0000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f44726f7073706163653a3a6275793a20536d61727420636f6e7472616374732060008201527f617265206e6f7420616c6c6f77656420746f206275792e000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e6f7420656e6f75676820746f6b656e73206c6566742e000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f44726f7073706163653a3a70726573616c654275793a20496e7375666669636960008201527f656e74207061796d656e742e0000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f44726f7073706163653a3a6275793a20546f6f206d616e7920746f6b656e732060008201527f666f72206f6e65207472616e73616374696f6e2e000000000000000000000000602082015250565b7f44726f7073706163653a3a70726573616c654275793a205469636b657420616c60008201527f726561647920757365642e000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f44726f7073706163653a3a77686974656c6973744275793a20596f752061726560008201527f206e6f742077686974656c69737465642e000000000000000000000000000000602082015250565b7f44726f70537061636553616c653a3a7365745469636b6574416464726573733a60008201527f20496e76616c696420616464726573732e000000000000000000000000000000602082015250565b7f44726f7073706163653a3a6275793a20496e73756666696369656e742070617960008201527f6d656e742e000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f44726f7073706163653a3a70726573616c654275793a2050726573616c65206960008201527f73206e6f74204163746976652e00000000000000000000000000000000000000602082015250565b7f44726f7073706163653a3a636c6561725469636b65743a205469636b6574206960008201527f73206e6f74207573656400000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f44726f7073706163653a3a70726573616c654275793a20546f6f206d616e792060008201527f746f6b656e7320666f72206f6e65207472616e73616374696f6e2e0000000000602082015250565b7f44726f70537061636553616c653a3a77686974656c6973744275793a2057686960008201527f74656c69737420427579206973206e6f74204163746976652e00000000000000602082015250565b7f44726f7073706163653a3a6275793a2053616c65206973206e6f74206163746960008201527f76652e0000000000000000000000000000000000000000000000000000000000602082015250565b615b2681615027565b8114615b3157600080fd5b50565b615b3d81615039565b8114615b4857600080fd5b50565b615b548161504b565b8114615b5f57600080fd5b50565b615b6b81615057565b8114615b7657600080fd5b50565b615b82816150a3565b8114615b8d57600080fd5b5056fea2646970667358221220b8a082a9167f9a54a83eaff9263a9d242590bcea526171ad6f41a7d69c26682c64736f6c63430008040033

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

0000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000b1a2bc2ec5000000000000000000000000000000000000000000000000000000000000000009c4000000000000000000000000d11902466587415de497440d27045c09de26ce70000000000000000000000000856701083ed11a0d35bac3b769b4c8efe3330d170000000000000000000000007ba0a79ec30259e2792a43989edd97c6e40bb3360000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c00000000000000000000000000000000000000000000000000000000000000011576f6d656e20616e6420576561706f6e7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035741570000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005b68747470733a2f2f776f6d656e616e64776561706f6e732e6d7970696e6174612e636c6f75642f697066732f516d586f703566414a6d66686468557a7a6147365058576b6351376552683842627a594e4e317379514a535377392f0000000000

-----Decoded View---------------
Arg [0] : _supplyLimit (uint256): 10000
Arg [1] : _mintLimit (uint256): 20
Arg [2] : _mintPrice (uint256): 50000000000000000
Arg [3] : _devSaleShare (uint256): 2500
Arg [4] : _withdrawalWallet (address): 0xd11902466587415De497440D27045c09De26cE70
Arg [5] : _devWallet (address): 0x856701083eD11A0D35bAc3B769B4c8efE3330d17
Arg [6] : _ticketAddress (address): 0x7ba0A79eC30259E2792A43989EdD97c6E40Bb336
Arg [7] : _name (string): Women and Weapons
Arg [8] : _ticker (string): WAW
Arg [9] : _baseURI (string): https://womenandweapons.mypinata.cloud/ipfs/QmXop5fAJmfhdhUzzaG6PXWkcQ7eRh8BbzYNN1syQJSSw9/

-----Encoded View---------------
18 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [2] : 00000000000000000000000000000000000000000000000000b1a2bc2ec50000
Arg [3] : 00000000000000000000000000000000000000000000000000000000000009c4
Arg [4] : 000000000000000000000000d11902466587415de497440d27045c09de26ce70
Arg [5] : 000000000000000000000000856701083ed11a0d35bac3b769b4c8efe3330d17
Arg [6] : 0000000000000000000000007ba0a79ec30259e2792a43989edd97c6e40bb336
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [9] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [11] : 576f6d656e20616e6420576561706f6e73000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [13] : 5741570000000000000000000000000000000000000000000000000000000000
Arg [14] : 000000000000000000000000000000000000000000000000000000000000005b
Arg [15] : 68747470733a2f2f776f6d656e616e64776561706f6e732e6d7970696e617461
Arg [16] : 2e636c6f75642f697066732f516d586f703566414a6d66686468557a7a614736
Arg [17] : 5058576b6351376552683842627a594e4e317379514a535377392f0000000000


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.