ETH Price: $2,397.22 (+1.05%)

Token

AwkwardAliens (AWKWARD)
 

Overview

Max Total Supply

1,030 AWKWARD

Holders

340

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
bighoney.eth
Balance
1 AWKWARD
0x56019cb4a5eb7609ae072bbe082d915b17b4858e
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
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 changeSupplyLimit(uint256 _supplyLimit) external onlyOwner override {
        supplyLimit = _supplyLimit;
        emit SupplyLimitChanged(_supplyLimit);
    }

    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;

    // 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 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",
        "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":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":[{"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":"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"}]

608060405260006007556000600c60006101000a81548160ff0219169083151502179055503480156200003157600080fd5b50604051620061b2380380620061b2833981810160405281019062000057919062000426565b8282816000908051906020019062000071929190620002bf565b5080600190805190602001906200008a929190620002bf565b505050620000ad620000a1620001d960201b60201c565b620001e160201b60201c565b89600a81905550886008819055508760098190555085600c60046101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555083600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600b90805190602001906200019d929190620002bf565b5086600f81905550620001c3600f54612710620002a760201b62002dac1790919060201c565b60108190555050505050505050505050620007db565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183620002b79190620005c0565b905092915050565b828054620002cd9062000683565b90600052602060002090601f016020900481019282620002f157600085556200033d565b82601f106200030c57805160ff19168380011785556200033d565b828001600101855582156200033d579182015b828111156200033c5782518255916020019190600101906200031f565b5b5090506200034c919062000350565b5090565b5b808211156200036b57600081600090555060010162000351565b5090565b60006200038662000380846200058a565b62000561565b9050828152602081018484840111156200039f57600080fd5b620003ac8482856200064d565b509392505050565b600081519050620003c5816200078d565b92915050565b600081519050620003dc81620007a7565b92915050565b600082601f830112620003f457600080fd5b8151620004068482602086016200036f565b91505092915050565b6000815190506200042081620007c1565b92915050565b6000806000806000806000806000806101408b8d0312156200044757600080fd5b6000620004578d828e016200040f565b9a505060206200046a8d828e016200040f565b99505060406200047d8d828e016200040f565b9850506060620004908d828e016200040f565b9750506080620004a38d828e01620003cb565b96505060a0620004b68d828e01620003cb565b95505060c0620004c98d828e01620003b4565b94505060e08b015167ffffffffffffffff811115620004e757600080fd5b620004f58d828e01620003e2565b9350506101008b015167ffffffffffffffff8111156200051457600080fd5b620005228d828e01620003e2565b9250506101208b015167ffffffffffffffff8111156200054157600080fd5b6200054f8d828e01620003e2565b9150509295989b9194979a5092959850565b60006200056d62000580565b90506200057b8282620006b9565b919050565b6000604051905090565b600067ffffffffffffffff821115620005a857620005a76200074d565b5b620005b3826200077c565b9050602081019050919050565b6000620005cd8262000643565b9150620005da8362000643565b925082821015620005f057620005ef620006ef565b5b828203905092915050565b6000620006088262000623565b9050919050565b60006200061c8262000623565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200066d57808201518184015260208101905062000650565b838111156200067d576000848401525b50505050565b600060028204905060018216806200069c57607f821691505b60208210811415620006b357620006b26200071e565b5b50919050565b620006c4826200077c565b810181811067ffffffffffffffff82111715620006e657620006e56200074d565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6200079881620005fb565b8114620007a457600080fd5b50565b620007b2816200060f565b8114620007be57600080fd5b50565b620007cc8162000643565b8114620007d857600080fd5b50565b6159c780620007eb6000396000f3fe6080604052600436106102b25760003560e01c806368428a1b116101755780639b19251a116100dc578063c87b56dd11610095578063e985e9c51161006f578063e985e9c514610a1c578063ed9a5bbb14610a59578063edac985b14610a82578063f2fde38b14610aab576102b9565b8063c87b56dd1461099a578063d44e3573146109d7578063d96a094a14610a00576102b9565b80639b19251a146108a25780639e6a1d7d146108df578063a22cb46514610908578063ab26320e14610931578063b88d4fde1461095a578063b89fe99914610983576102b9565b8063819b25ba1161012e578063819b25ba146107b657806389b0649b146107df5780638da5cb5b146107f65780638ea5220f1461082157806395d89b411461084c578063996517cf14610877576102b9565b806368428a1b146106a65780636c0360eb146106d157806370a08231146106fc578063715018a61461073957806371efdc211461075057806375796f761461078d576102b9565b80633100a5351161021957806355f804b3116101d257806355f804b31461059657806357a8e3fe146105bf5780635c4e7e06146105ea5780636352211e14610613578063646d7a7f146106505780636817c76c1461067b576102b9565b80633100a535146104be5780633ad7f56c146104d55780633ccfd60b1461050057806342842e0e146105175780634a7d80b31461054057806353135ca01461056b576102b9565b80630c4242841161026b5780630c424284146103d157806318160ddd146103fa57806319d1997a146104255780631f53ac021461045057806323b872dd146104795780632ac7a2b3146104a2576102b9565b806301ffc9a7146102be57806306fdde03146102fb578063081812fc1461032657806308e9928714610363578063095ea7b31461038c5780630983061c146103b5576102b9565b366102b957005b600080fd5b3480156102ca57600080fd5b506102e560048036038101906102e09190613faf565b610ad4565b6040516102f291906147ce565b60405180910390f35b34801561030757600080fd5b50610310610bb6565b60405161031d91906147e9565b60405180910390f35b34801561033257600080fd5b5061034d60048036038101906103489190614042565b610c48565b60405161035a91906146c3565b60405180910390f35b34801561036f57600080fd5b5061038a60048036038101906103859190613f86565b610ccd565b005b34801561039857600080fd5b506103b360048036038101906103ae9190613f09565b610dac565b005b6103cf60048036038101906103ca919061406b565b610ec4565b005b3480156103dd57600080fd5b506103f860048036038101906103f39190613ecd565b61119c565b005b34801561040657600080fd5b5061040f6112ac565b60405161041c9190614bed565b60405180910390f35b34801561043157600080fd5b5061043a6112b2565b6040516104479190614bed565b60405180910390f35b34801561045c57600080fd5b5061047760048036038101906104729190613d9e565b6112b8565b005b34801561048557600080fd5b506104a0600480360381019061049b9190613e03565b6113d1565b005b6104bc60048036038101906104b79190614042565b611431565b005b3480156104ca57600080fd5b506104d36115ed565b005b3480156104e157600080fd5b506104ea6116db565b6040516104f791906147ce565b60405180910390f35b34801561050c57600080fd5b506105156116ee565b005b34801561052357600080fd5b5061053e60048036038101906105399190613e03565b611894565b005b34801561054c57600080fd5b506105556118b4565b60405161056291906146de565b60405180910390f35b34801561057757600080fd5b506105806118da565b60405161058d91906147ce565b60405180910390f35b3480156105a257600080fd5b506105bd60048036038101906105b89190614001565b6118ed565b005b3480156105cb57600080fd5b506105d46119bb565b6040516105e191906146c3565b60405180910390f35b3480156105f657600080fd5b50610611600480360381019061060c9190614042565b6119e1565b005b34801561061f57600080fd5b5061063a60048036038101906106359190614042565b611abd565b60405161064791906146c3565b60405180910390f35b34801561065c57600080fd5b50610665611b6f565b60405161067291906147ce565b60405180910390f35b34801561068757600080fd5b50610690611b82565b60405161069d9190614bed565b60405180910390f35b3480156106b257600080fd5b506106bb611b88565b6040516106c891906147ce565b60405180910390f35b3480156106dd57600080fd5b506106e6611b9b565b6040516106f391906147e9565b60405180910390f35b34801561070857600080fd5b50610723600480360381019061071e9190613d4c565b611c29565b6040516107309190614bed565b60405180910390f35b34801561074557600080fd5b5061074e611ce1565b005b34801561075c57600080fd5b5061077760048036038101906107729190614042565b611d69565b60405161078491906147ce565b60405180910390f35b34801561079957600080fd5b506107b460048036038101906107af9190613d9e565b611d89565b005b3480156107c257600080fd5b506107dd60048036038101906107d89190614042565b611ea2565b005b3480156107eb57600080fd5b506107f4611f61565b005b34801561080257600080fd5b5061080b61204f565b60405161081891906146c3565b60405180910390f35b34801561082d57600080fd5b50610836612079565b60405161084391906146de565b60405180910390f35b34801561085857600080fd5b5061086161209f565b60405161086e91906147e9565b60405180910390f35b34801561088357600080fd5b5061088c612131565b6040516108999190614bed565b60405180910390f35b3480156108ae57600080fd5b506108c960048036038101906108c49190613d4c565b612137565b6040516108d691906147ce565b60405180910390f35b3480156108eb57600080fd5b5061090660048036038101906109019190614042565b612157565b005b34801561091457600080fd5b5061092f600480360381019061092a9190613ecd565b612216565b005b34801561093d57600080fd5b5061095860048036038101906109539190614042565b612397565b005b34801561096657600080fd5b50610981600480360381019061097c9190613e52565b6124d9565b005b34801561098f57600080fd5b5061099861253b565b005b3480156109a657600080fd5b506109c160048036038101906109bc9190614042565b612629565b6040516109ce91906147e9565b60405180910390f35b3480156109e357600080fd5b506109fe60048036038101906109f99190614042565b6126d1565b005b610a1a6004803603810190610a159190614042565b61278e565b005b348015610a2857600080fd5b50610a436004803603810190610a3e9190613dc7565b612908565b604051610a5091906147ce565b60405180910390f35b348015610a6557600080fd5b50610a806004803603810190610a7b9190613d4c565b61299c565b005b348015610a8e57600080fd5b50610aa96004803603810190610aa49190613f45565b612b03565b005b348015610ab757600080fd5b50610ad26004803603810190610acd9190613d4c565b612cb4565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b9f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610baf5750610bae82612dc2565b5b9050919050565b606060008054610bc590614ef0565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf190614ef0565b8015610c3e5780601f10610c1357610100808354040283529160200191610c3e565b820191906000526020600020905b815481529060010190602001808311610c2157829003601f168201915b5050505050905090565b6000610c5382612e2c565b610c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8990614a2d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610cd5612e98565b73ffffffffffffffffffffffffffffffffffffffff16610cf361204f565b73ffffffffffffffffffffffffffffffffffffffff1614610d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4090614a4d565b60405180910390fd5b80600c60006101000a81548160ff0219169083151502179055507f2a5bfbb68782e57b3242e612145304c845af3404e2d328a12dd2e7c078cd0117600c60009054906101000a900460ff16604051610da191906147ce565b60405180910390a150565b6000610db782611abd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1f90614b0d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e47612e98565b73ffffffffffffffffffffffffffffffffffffffff161480610e765750610e7581610e70612e98565b612908565b5b610eb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eac9061496d565b60405180910390fd5b610ebf8383612ea0565b505050565b600c60029054906101000a900460ff16610f13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0a90614b2d565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b8152600401610f859190614bed565b60206040518083038186803b158015610f9d57600080fd5b505afa158015610fb1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fd59190613d75565b73ffffffffffffffffffffffffffffffffffffffff161461102b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110229061482d565b60405180910390fd5b6011600083815260200190815260200160002060009054906101000a900460ff161561108c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611083906149ed565b60405180910390fd5b6008548111156110d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c890614b8d565b60405180910390fd5b6110e681600954612f5990919063ffffffff16565b341015611128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111f9061492d565b60405180910390fd5b60016011600084815260200190815260200160002060006101000a81548160ff02191690831515021790555061115d81612f6f565b7fb77d41b776d1d5cc75b500402614335da616afa8aa95b49325e22db7f1ca86cc33838360405161119093929190614797565b60405180910390a15050565b6111a4612e98565b73ffffffffffffffffffffffffffffffffffffffff166111c261204f565b73ffffffffffffffffffffffffffffffffffffffff1614611218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120f90614a4d565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f8daaf060c3306c38e068a75c054bf96ecd85a3db1252712c4d93632744c42e0d82826040516112a0929190614745565b60405180910390a15050565b60075481565b600a5481565b6112c0612e98565b73ffffffffffffffffffffffffffffffffffffffff166112de61204f565b73ffffffffffffffffffffffffffffffffffffffff1614611334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132b90614a4d565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f268c00f4ec08b34fdde24b52e47a09d62f3f3837eb3b8ac7206cefb3bb5e5345600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040516113c691906146de565b60405180910390a150565b6113e26113dc612e98565b82613085565b611421576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141890614b6d565b60405180910390fd5b61142c838383613163565b505050565b600c60039054906101000a900460ff16611480576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147790614bad565b60405180910390fd5b6008548111156114c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bc90614b8d565b60405180910390fd5b6114da81600954612f5990919063ffffffff16565b34101561151c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115139061492d565b60405180910390fd5b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166115a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159f90614aad565b60405180910390fd5b7f8714612a507e7fcd9f26d997e561a61611f4bad945c787b8865dc23823ef037b33826040516115d992919061476e565b60405180910390a16115ea81612f6f565b50565b6115f5612e98565b73ffffffffffffffffffffffffffffffffffffffff1661161361204f565b73ffffffffffffffffffffffffffffffffffffffff1614611669576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166090614a4d565b60405180910390fd5b600c60019054906101000a900460ff1615600c60016101000a81548160ff0219169083151502179055507f5a454f976028c400c4159ac85c61452441fcf06b9888c7c780c5980e3c3123dd600c60019054906101000a900460ff166040516116d191906147ce565b60405180910390a1565b600c60039054906101000a900460ff1681565b6116f6612e98565b73ffffffffffffffffffffffffffffffffffffffff1661171461204f565b73ffffffffffffffffffffffffffffffffffffffff161461176a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176190614a4d565b60405180910390fd5b6000479050600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6117d46127106117c6600f5486612f5990919063ffffffff16565b6133bf90919063ffffffff16565b9081150290604051600060405180830381858888f193505050501580156117ff573d6000803e3d6000fd5b50600c60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc61186561271061185760105486612f5990919063ffffffff16565b6133bf90919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015611890573d6000803e3d6000fd5b5050565b6118af838383604051806020016040528060008152506124d9565b505050565b600c60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c60029054906101000a900460ff1681565b6118f5612e98565b73ffffffffffffffffffffffffffffffffffffffff1661191361204f565b73ffffffffffffffffffffffffffffffffffffffff1614611969576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196090614a4d565b60405180910390fd5b80600b908051906020019061197f929190613ab0565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf6600b6040516119b0919061480b565b60405180910390a150565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6119e9612e98565b73ffffffffffffffffffffffffffffffffffffffff16611a0761204f565b73ffffffffffffffffffffffffffffffffffffffff1614611a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5490614a4d565b60405180910390fd5b80600f81905550611a7b600f54612710612dac90919063ffffffff16565b6010819055507fd20ab7c161b1f8ebfab00e747660c0fa31ae9123063e580b5be0aeab18623db2600f54604051611ab29190614bed565b60405180910390a150565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5d906149ad565b60405180910390fd5b80915050919050565b600c60009054906101000a900460ff1681565b60095481565b600c60019054906101000a900460ff1681565b600b8054611ba890614ef0565b80601f0160208091040260200160405190810160405280929190818152602001828054611bd490614ef0565b8015611c215780601f10611bf657610100808354040283529160200191611c21565b820191906000526020600020905b815481529060010190602001808311611c0457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c919061498d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611ce9612e98565b73ffffffffffffffffffffffffffffffffffffffff16611d0761204f565b73ffffffffffffffffffffffffffffffffffffffff1614611d5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5490614a4d565b60405180910390fd5b611d6760006133d5565b565b60116020528060005260406000206000915054906101000a900460ff1681565b611d91612e98565b73ffffffffffffffffffffffffffffffffffffffff16611daf61204f565b73ffffffffffffffffffffffffffffffffffffffff1614611e05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfc90614a4d565b60405180910390fd5b80600c60046101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fb470355146314037ce5186813b4b7c65bff2b87f98d44ff063570d0e22d65ba3600c60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff16604051611e9791906146de565b60405180910390a150565b611eaa612e98565b73ffffffffffffffffffffffffffffffffffffffff16611ec861204f565b73ffffffffffffffffffffffffffffffffffffffff1614611f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1590614a4d565b60405180910390fd5b611f2781612f6f565b7fdb7b64a879507c32bda4d0cf22dee29ed875c7157ecbbc10fe11bf14fab06d1281604051611f569190614bed565b60405180910390a150565b611f69612e98565b73ffffffffffffffffffffffffffffffffffffffff16611f8761204f565b73ffffffffffffffffffffffffffffffffffffffff1614611fdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd490614a4d565b60405180910390fd5b600c60029054906101000a900460ff1615600c60026101000a81548160ff0219169083151502179055507f38822fae85453c65b78e1b7d02e45cae5eb0d7961e34226fb29c49dab9d3a357600c60029054906101000a900460ff1660405161204591906147ce565b60405180910390a1565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600180546120ae90614ef0565b80601f01602080910402602001604051908101604052809291908181526020018280546120da90614ef0565b80156121275780601f106120fc57610100808354040283529160200191612127565b820191906000526020600020905b81548152906001019060200180831161210a57829003601f168201915b5050505050905090565b60085481565b60126020528060005260406000206000915054906101000a900460ff1681565b61215f612e98565b73ffffffffffffffffffffffffffffffffffffffff1661217d61204f565b73ffffffffffffffffffffffffffffffffffffffff16146121d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ca90614a4d565b60405180910390fd5b806008819055507f9ae30a041b5f2244849dc754c675b09aef4ad230b48995476fd6e6415d1fe8ab60085460405161220b9190614bed565b60405180910390a150565b61221e612e98565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561228c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122839061490d565b60405180910390fd5b8060056000612299612e98565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612346612e98565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161238b91906147ce565b60405180910390a35050565b61239f612e98565b73ffffffffffffffffffffffffffffffffffffffff166123bd61204f565b73ffffffffffffffffffffffffffffffffffffffff1614612413576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240a90614a4d565b60405180910390fd5b6011600082815260200190815260200160002060009054906101000a900460ff16612473576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246a90614b4d565b60405180910390fd5b60006011600083815260200190815260200160002060006101000a81548160ff0219169083151502179055507f256e63760868166c3f047c49d3e1614c1ca6c620d715c552c54ddb4ba428719c816040516124ce9190614bed565b60405180910390a150565b6124ea6124e4612e98565b83613085565b612529576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252090614b6d565b60405180910390fd5b6125358484848461349b565b50505050565b612543612e98565b73ffffffffffffffffffffffffffffffffffffffff1661256161204f565b73ffffffffffffffffffffffffffffffffffffffff16146125b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ae90614a4d565b60405180910390fd5b600c60039054906101000a900460ff1615600c60036101000a81548160ff0219169083151502179055507ffabb6e4b24bd8ac3a08555e569d13590c5006dc61e4aae65e74296d3df6759ed600c60039054906101000a900460ff1660405161261f91906147ce565b60405180910390a1565b606061263482612e2c565b612673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266a90614a8d565b60405180910390fd5b6000600b805461268290614ef0565b90501161269e57604051806020016040528060008152506126ca565b600b6126a9836134f7565b6040516020016126ba92919061469f565b6040516020818303038152906040525b9050919050565b6126d9612e98565b73ffffffffffffffffffffffffffffffffffffffff166126f761204f565b73ffffffffffffffffffffffffffffffffffffffff161461274d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274490614a4d565b60405180910390fd5b80600a819055507f178f2d92de18f124251b08e25bacba56eda0716625c1e799fc6c8ed1ee7d1d07816040516127839190614bed565b60405180910390a150565b600c60019054906101000a900460ff166127dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d490614bcd565b60405180910390fd5b600854811115612822576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612819906149cd565b60405180910390fd5b61283781600954612f5990919063ffffffff16565b341015612879576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287090614aed565b60405180910390fd5b600c60009054906101000a900460ff166128fc573373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146128fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f29061488d565b60405180910390fd5b5b61290581612f6f565b50565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6129a4612e98565b73ffffffffffffffffffffffffffffffffffffffff166129c261204f565b73ffffffffffffffffffffffffffffffffffffffff1614612a18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0f90614a4d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7f90614acd565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f4846b8d14a603fbd3567c63384f41a947d787c004e59ce39ee755d0485ae5ed881604051612af891906146c3565b60405180910390a150565b612b0b612e98565b73ffffffffffffffffffffffffffffffffffffffff16612b2961204f565b73ffffffffffffffffffffffffffffffffffffffff1614612b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7690614a4d565b60405180910390fd5b60005b8151811015612cb057600160126000848481518110612bca577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507faec42ac7f1bb8651906ae6522f50a19429e124e8ea678ef59fd27750759288a2828281518110612c7d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516001604051612c95929190614745565b60405180910390a18080612ca890614f53565b915050612b82565b5050565b612cbc612e98565b73ffffffffffffffffffffffffffffffffffffffff16612cda61204f565b73ffffffffffffffffffffffffffffffffffffffff1614612d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2790614a4d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612da0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d979061486d565b60405180910390fd5b612da9816133d5565b50565b60008183612dba9190614df4565b905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612f1383611abd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008183612f679190614d9a565b905092915050565b600a54612f87826007546136a490919063ffffffff16565b1115612fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fbf906148cd565b60405180910390fd5b6000600754905060005b8281101561308057612fee6001836136a490919063ffffffff16565b915061300660016007546136a490919063ffffffff16565b60078190555061301633836136ba565b813373ffffffffffffffffffffffffffffffffffffffff167f85a66b9141978db9980f7e0ce3b468cebf4f7999f32b23091c5c03e798b1ba7a61305885612629565b60405161306591906147e9565b60405180910390a3808061307890614f53565b915050612fd2565b505050565b600061309082612e2c565b6130cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c69061494d565b60405180910390fd5b60006130da83611abd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061314957508373ffffffffffffffffffffffffffffffffffffffff1661313184610c48565b73ffffffffffffffffffffffffffffffffffffffff16145b8061315a57506131598185612908565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661318382611abd565b73ffffffffffffffffffffffffffffffffffffffff16146131d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131d090614a6d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613249576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613240906148ed565b60405180910390fd5b6132548383836136d8565b61325f600082612ea0565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132af9190614df4565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133069190614d13565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081836133cd9190614d69565b905092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6134a6848484613163565b6134b2848484846136dd565b6134f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134e89061484d565b60405180910390fd5b50505050565b6060600082141561353f576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061369f565b600082905060005b6000821461357157808061355a90614f53565b915050600a8261356a9190614d69565b9150613547565b60008167ffffffffffffffff8111156135b3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156135e55781602001600182028036833780820191505090505b5090505b60008514613698576001826135fe9190614df4565b9150600a8561360d9190614f9c565b60306136199190614d13565b60f81b818381518110613655577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856136919190614d69565b94506135e9565b8093505050505b919050565b600081836136b29190614d13565b905092915050565b6136d4828260405180602001604052806000815250613874565b5050565b505050565b60006136fe8473ffffffffffffffffffffffffffffffffffffffff166138cf565b15613867578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613727612e98565b8786866040518563ffffffff1660e01b815260040161374994939291906146f9565b602060405180830381600087803b15801561376357600080fd5b505af192505050801561379457506040513d601f19601f820116820180604052508101906137919190613fd8565b60015b613817573d80600081146137c4576040519150601f19603f3d011682016040523d82523d6000602084013e6137c9565b606091505b5060008151141561380f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138069061484d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061386c565b600190505b949350505050565b61387e83836138e2565b61388b60008484846136dd565b6138ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138c19061484d565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613952576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161394990614a0d565b60405180910390fd5b61395b81612e2c565b1561399b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613992906148ad565b60405180910390fd5b6139a7600083836136d8565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139f79190614d13565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613abc90614ef0565b90600052602060002090601f016020900481019282613ade5760008555613b25565b82601f10613af757805160ff1916838001178555613b25565b82800160010185558215613b25579182015b82811115613b24578251825591602001919060010190613b09565b5b509050613b329190613b36565b5090565b5b80821115613b4f576000816000905550600101613b37565b5090565b6000613b66613b6184614c2d565b614c08565b90508083825260208201905082856020860282011115613b8557600080fd5b60005b85811015613bb55781613b9b8882613c3b565b845260208401935060208301925050600181019050613b88565b5050509392505050565b6000613bd2613bcd84614c59565b614c08565b905082815260208101848484011115613bea57600080fd5b613bf5848285614eae565b509392505050565b6000613c10613c0b84614c8a565b614c08565b905082815260208101848484011115613c2857600080fd5b613c33848285614eae565b509392505050565b600081359050613c4a8161591e565b92915050565b600081519050613c5f8161591e565b92915050565b600081359050613c7481615935565b92915050565b600082601f830112613c8b57600080fd5b8135613c9b848260208601613b53565b91505092915050565b600081359050613cb38161594c565b92915050565b600081359050613cc881615963565b92915050565b600081519050613cdd81615963565b92915050565b600082601f830112613cf457600080fd5b8135613d04848260208601613bbf565b91505092915050565b600082601f830112613d1e57600080fd5b8135613d2e848260208601613bfd565b91505092915050565b600081359050613d468161597a565b92915050565b600060208284031215613d5e57600080fd5b6000613d6c84828501613c3b565b91505092915050565b600060208284031215613d8757600080fd5b6000613d9584828501613c50565b91505092915050565b600060208284031215613db057600080fd5b6000613dbe84828501613c65565b91505092915050565b60008060408385031215613dda57600080fd5b6000613de885828601613c3b565b9250506020613df985828601613c3b565b9150509250929050565b600080600060608486031215613e1857600080fd5b6000613e2686828701613c3b565b9350506020613e3786828701613c3b565b9250506040613e4886828701613d37565b9150509250925092565b60008060008060808587031215613e6857600080fd5b6000613e7687828801613c3b565b9450506020613e8787828801613c3b565b9350506040613e9887828801613d37565b925050606085013567ffffffffffffffff811115613eb557600080fd5b613ec187828801613ce3565b91505092959194509250565b60008060408385031215613ee057600080fd5b6000613eee85828601613c3b565b9250506020613eff85828601613ca4565b9150509250929050565b60008060408385031215613f1c57600080fd5b6000613f2a85828601613c3b565b9250506020613f3b85828601613d37565b9150509250929050565b600060208284031215613f5757600080fd5b600082013567ffffffffffffffff811115613f7157600080fd5b613f7d84828501613c7a565b91505092915050565b600060208284031215613f9857600080fd5b6000613fa684828501613ca4565b91505092915050565b600060208284031215613fc157600080fd5b6000613fcf84828501613cb9565b91505092915050565b600060208284031215613fea57600080fd5b6000613ff884828501613cce565b91505092915050565b60006020828403121561401357600080fd5b600082013567ffffffffffffffff81111561402d57600080fd5b61403984828501613d0d565b91505092915050565b60006020828403121561405457600080fd5b600061406284828501613d37565b91505092915050565b6000806040838503121561407e57600080fd5b600061408c85828601613d37565b925050602061409d85828601613d37565b9150509250929050565b6140b081614e3a565b82525050565b6140bf81614e28565b82525050565b6140ce81614e4c565b82525050565b60006140df82614cd0565b6140e98185614ce6565b93506140f9818560208601614ebd565b61410281615089565b840191505092915050565b600061411882614cdb565b6141228185614cf7565b9350614132818560208601614ebd565b61413b81615089565b840191505092915050565b600061415182614cdb565b61415b8185614d08565b935061416b818560208601614ebd565b80840191505092915050565b6000815461418481614ef0565b61418e8186614cf7565b945060018216600081146141a957600181146141bb576141ee565b60ff19831686526020860193506141ee565b6141c485614cbb565b60005b838110156141e6578154818901526001820191506020810190506141c7565b808801955050505b50505092915050565b6000815461420481614ef0565b61420e8186614d08565b94506001821660008114614229576001811461423a5761426d565b60ff1983168652818601935061426d565b61424385614cbb565b60005b8381101561426557815481890152600182019150602081019050614246565b838801955050505b50505092915050565b6000614283602683614cf7565b915061428e8261509a565b604082019050919050565b60006142a6603283614cf7565b91506142b1826150e9565b604082019050919050565b60006142c9602683614cf7565b91506142d482615138565b604082019050919050565b60006142ec603783614cf7565b91506142f782615187565b604082019050919050565b600061430f601c83614cf7565b915061431a826151d6565b602082019050919050565b6000614332601783614cf7565b915061433d826151ff565b602082019050919050565b6000614355602483614cf7565b915061436082615228565b604082019050919050565b6000614378601983614cf7565b915061438382615277565b602082019050919050565b600061439b602c83614cf7565b91506143a6826152a0565b604082019050919050565b60006143be602c83614cf7565b91506143c9826152ef565b604082019050919050565b60006143e1603883614cf7565b91506143ec8261533e565b604082019050919050565b6000614404602a83614cf7565b915061440f8261538d565b604082019050919050565b6000614427602983614cf7565b9150614432826153dc565b604082019050919050565b600061444a603483614cf7565b91506144558261542b565b604082019050919050565b600061446d602b83614cf7565b91506144788261547a565b604082019050919050565b6000614490602083614cf7565b915061449b826154c9565b602082019050919050565b60006144b3602c83614cf7565b91506144be826154f2565b604082019050919050565b60006144d6602083614cf7565b91506144e182615541565b602082019050919050565b60006144f9602983614cf7565b91506145048261556a565b604082019050919050565b600061451c602f83614cf7565b9150614527826155b9565b604082019050919050565b600061453f603183614cf7565b915061454a82615608565b604082019050919050565b6000614562603183614cf7565b915061456d82615657565b604082019050919050565b6000614585602583614cf7565b9150614590826156a6565b604082019050919050565b60006145a8602183614cf7565b91506145b3826156f5565b604082019050919050565b60006145cb602d83614cf7565b91506145d682615744565b604082019050919050565b60006145ee602a83614cf7565b91506145f982615793565b604082019050919050565b6000614611603183614cf7565b915061461c826157e2565b604082019050919050565b6000614634603b83614cf7565b915061463f82615831565b604082019050919050565b6000614657603983614cf7565b915061466282615880565b604082019050919050565b600061467a602383614cf7565b9150614685826158cf565b604082019050919050565b61469981614ea4565b82525050565b60006146ab82856141f7565b91506146b78284614146565b91508190509392505050565b60006020820190506146d860008301846140b6565b92915050565b60006020820190506146f360008301846140a7565b92915050565b600060808201905061470e60008301876140b6565b61471b60208301866140b6565b6147286040830185614690565b818103606083015261473a81846140d4565b905095945050505050565b600060408201905061475a60008301856140b6565b61476760208301846140c5565b9392505050565b600060408201905061478360008301856140b6565b6147906020830184614690565b9392505050565b60006060820190506147ac60008301866140b6565b6147b96020830185614690565b6147c66040830184614690565b949350505050565b60006020820190506147e360008301846140c5565b92915050565b60006020820190508181036000830152614803818461410d565b905092915050565b600060208201905081810360008301526148258184614177565b905092915050565b6000602082019050818103600083015261484681614276565b9050919050565b6000602082019050818103600083015261486681614299565b9050919050565b60006020820190508181036000830152614886816142bc565b9050919050565b600060208201905081810360008301526148a6816142df565b9050919050565b600060208201905081810360008301526148c681614302565b9050919050565b600060208201905081810360008301526148e681614325565b9050919050565b6000602082019050818103600083015261490681614348565b9050919050565b600060208201905081810360008301526149268161436b565b9050919050565b600060208201905081810360008301526149468161438e565b9050919050565b60006020820190508181036000830152614966816143b1565b9050919050565b60006020820190508181036000830152614986816143d4565b9050919050565b600060208201905081810360008301526149a6816143f7565b9050919050565b600060208201905081810360008301526149c68161441a565b9050919050565b600060208201905081810360008301526149e68161443d565b9050919050565b60006020820190508181036000830152614a0681614460565b9050919050565b60006020820190508181036000830152614a2681614483565b9050919050565b60006020820190508181036000830152614a46816144a6565b9050919050565b60006020820190508181036000830152614a66816144c9565b9050919050565b60006020820190508181036000830152614a86816144ec565b9050919050565b60006020820190508181036000830152614aa68161450f565b9050919050565b60006020820190508181036000830152614ac681614532565b9050919050565b60006020820190508181036000830152614ae681614555565b9050919050565b60006020820190508181036000830152614b0681614578565b9050919050565b60006020820190508181036000830152614b268161459b565b9050919050565b60006020820190508181036000830152614b46816145be565b9050919050565b60006020820190508181036000830152614b66816145e1565b9050919050565b60006020820190508181036000830152614b8681614604565b9050919050565b60006020820190508181036000830152614ba681614627565b9050919050565b60006020820190508181036000830152614bc68161464a565b9050919050565b60006020820190508181036000830152614be68161466d565b9050919050565b6000602082019050614c026000830184614690565b92915050565b6000614c12614c23565b9050614c1e8282614f22565b919050565b6000604051905090565b600067ffffffffffffffff821115614c4857614c4761505a565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614c7457614c7361505a565b5b614c7d82615089565b9050602081019050919050565b600067ffffffffffffffff821115614ca557614ca461505a565b5b614cae82615089565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614d1e82614ea4565b9150614d2983614ea4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614d5e57614d5d614fcd565b5b828201905092915050565b6000614d7482614ea4565b9150614d7f83614ea4565b925082614d8f57614d8e614ffc565b5b828204905092915050565b6000614da582614ea4565b9150614db083614ea4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614de957614de8614fcd565b5b828202905092915050565b6000614dff82614ea4565b9150614e0a83614ea4565b925082821015614e1d57614e1c614fcd565b5b828203905092915050565b6000614e3382614e84565b9050919050565b6000614e4582614e84565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614edb578082015181840152602081019050614ec0565b83811115614eea576000848401525b50505050565b60006002820490506001821680614f0857607f821691505b60208210811415614f1c57614f1b61502b565b5b50919050565b614f2b82615089565b810181811067ffffffffffffffff82111715614f4a57614f4961505a565b5b80604052505050565b6000614f5e82614ea4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614f9157614f90614fcd565b5b600182019050919050565b6000614fa782614ea4565b9150614fb283614ea4565b925082614fc257614fc1614ffc565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f44726f7073706163653a3a70726573616c654275793a20696e76616c6964207460008201527f69636b65742e0000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f44726f7073706163653a3a6275793a20536d61727420636f6e7472616374732060008201527f617265206e6f7420616c6c6f77656420746f206275792e000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e6f7420656e6f75676820746f6b656e73206c6566742e000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f44726f7073706163653a3a70726573616c654275793a20496e7375666669636960008201527f656e74207061796d656e742e0000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f44726f7073706163653a3a6275793a20546f6f206d616e7920746f6b656e732060008201527f666f72206f6e65207472616e73616374696f6e2e000000000000000000000000602082015250565b7f44726f7073706163653a3a70726573616c654275793a205469636b657420616c60008201527f726561647920757365642e000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f44726f7073706163653a3a77686974656c6973744275793a20596f752061726560008201527f206e6f742077686974656c69737465642e000000000000000000000000000000602082015250565b7f44726f70537061636553616c653a3a7365745469636b6574416464726573733a60008201527f20496e76616c696420616464726573732e000000000000000000000000000000602082015250565b7f44726f7073706163653a3a6275793a20496e73756666696369656e742070617960008201527f6d656e742e000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f44726f7073706163653a3a70726573616c654275793a2050726573616c65206960008201527f73206e6f74204163746976652e00000000000000000000000000000000000000602082015250565b7f44726f7073706163653a3a636c6561725469636b65743a205469636b6574206960008201527f73206e6f74207573656400000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f44726f7073706163653a3a70726573616c654275793a20546f6f206d616e792060008201527f746f6b656e7320666f72206f6e65207472616e73616374696f6e2e0000000000602082015250565b7f44726f70537061636553616c653a3a77686974656c6973744275793a2057686960008201527f74656c69737420427579206973206e6f74204163746976652e00000000000000602082015250565b7f44726f7073706163653a3a6275793a2053616c65206973206e6f74206163746960008201527f76652e0000000000000000000000000000000000000000000000000000000000602082015250565b61592781614e28565b811461593257600080fd5b50565b61593e81614e3a565b811461594957600080fd5b50565b61595581614e4c565b811461596057600080fd5b50565b61596c81614e58565b811461597757600080fd5b50565b61598381614ea4565b811461598e57600080fd5b5056fea26469706673582212206ee79728b024fbd96da342cefe1578208417391075046925a62f909b30dcbfe864736f6c634300080400330000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000d529ae9e86000000000000000000000000000000000000000000000000000000000000000005dc0000000000000000000000007d1685a12b8a069192825ca2074a847b901b63b10000000000000000000000004d3fd3865a46ce2ced63fa56562ab932149e7d3c000000000000000000000000000000000000000000000000000000000000dead0000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000000d41776b77617264416c69656e7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000741574b5741524400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005968747470733a2f2f61776b77617264616c69656e732e6d7970696e6174612e636c6f75642f697066732f516d523138435a4264334a724542744b51726d763533714c4c5a4d766a4335353959696734666466565173694d562f00000000000000

Deployed Bytecode

0x6080604052600436106102b25760003560e01c806368428a1b116101755780639b19251a116100dc578063c87b56dd11610095578063e985e9c51161006f578063e985e9c514610a1c578063ed9a5bbb14610a59578063edac985b14610a82578063f2fde38b14610aab576102b9565b8063c87b56dd1461099a578063d44e3573146109d7578063d96a094a14610a00576102b9565b80639b19251a146108a25780639e6a1d7d146108df578063a22cb46514610908578063ab26320e14610931578063b88d4fde1461095a578063b89fe99914610983576102b9565b8063819b25ba1161012e578063819b25ba146107b657806389b0649b146107df5780638da5cb5b146107f65780638ea5220f1461082157806395d89b411461084c578063996517cf14610877576102b9565b806368428a1b146106a65780636c0360eb146106d157806370a08231146106fc578063715018a61461073957806371efdc211461075057806375796f761461078d576102b9565b80633100a5351161021957806355f804b3116101d257806355f804b31461059657806357a8e3fe146105bf5780635c4e7e06146105ea5780636352211e14610613578063646d7a7f146106505780636817c76c1461067b576102b9565b80633100a535146104be5780633ad7f56c146104d55780633ccfd60b1461050057806342842e0e146105175780634a7d80b31461054057806353135ca01461056b576102b9565b80630c4242841161026b5780630c424284146103d157806318160ddd146103fa57806319d1997a146104255780631f53ac021461045057806323b872dd146104795780632ac7a2b3146104a2576102b9565b806301ffc9a7146102be57806306fdde03146102fb578063081812fc1461032657806308e9928714610363578063095ea7b31461038c5780630983061c146103b5576102b9565b366102b957005b600080fd5b3480156102ca57600080fd5b506102e560048036038101906102e09190613faf565b610ad4565b6040516102f291906147ce565b60405180910390f35b34801561030757600080fd5b50610310610bb6565b60405161031d91906147e9565b60405180910390f35b34801561033257600080fd5b5061034d60048036038101906103489190614042565b610c48565b60405161035a91906146c3565b60405180910390f35b34801561036f57600080fd5b5061038a60048036038101906103859190613f86565b610ccd565b005b34801561039857600080fd5b506103b360048036038101906103ae9190613f09565b610dac565b005b6103cf60048036038101906103ca919061406b565b610ec4565b005b3480156103dd57600080fd5b506103f860048036038101906103f39190613ecd565b61119c565b005b34801561040657600080fd5b5061040f6112ac565b60405161041c9190614bed565b60405180910390f35b34801561043157600080fd5b5061043a6112b2565b6040516104479190614bed565b60405180910390f35b34801561045c57600080fd5b5061047760048036038101906104729190613d9e565b6112b8565b005b34801561048557600080fd5b506104a0600480360381019061049b9190613e03565b6113d1565b005b6104bc60048036038101906104b79190614042565b611431565b005b3480156104ca57600080fd5b506104d36115ed565b005b3480156104e157600080fd5b506104ea6116db565b6040516104f791906147ce565b60405180910390f35b34801561050c57600080fd5b506105156116ee565b005b34801561052357600080fd5b5061053e60048036038101906105399190613e03565b611894565b005b34801561054c57600080fd5b506105556118b4565b60405161056291906146de565b60405180910390f35b34801561057757600080fd5b506105806118da565b60405161058d91906147ce565b60405180910390f35b3480156105a257600080fd5b506105bd60048036038101906105b89190614001565b6118ed565b005b3480156105cb57600080fd5b506105d46119bb565b6040516105e191906146c3565b60405180910390f35b3480156105f657600080fd5b50610611600480360381019061060c9190614042565b6119e1565b005b34801561061f57600080fd5b5061063a60048036038101906106359190614042565b611abd565b60405161064791906146c3565b60405180910390f35b34801561065c57600080fd5b50610665611b6f565b60405161067291906147ce565b60405180910390f35b34801561068757600080fd5b50610690611b82565b60405161069d9190614bed565b60405180910390f35b3480156106b257600080fd5b506106bb611b88565b6040516106c891906147ce565b60405180910390f35b3480156106dd57600080fd5b506106e6611b9b565b6040516106f391906147e9565b60405180910390f35b34801561070857600080fd5b50610723600480360381019061071e9190613d4c565b611c29565b6040516107309190614bed565b60405180910390f35b34801561074557600080fd5b5061074e611ce1565b005b34801561075c57600080fd5b5061077760048036038101906107729190614042565b611d69565b60405161078491906147ce565b60405180910390f35b34801561079957600080fd5b506107b460048036038101906107af9190613d9e565b611d89565b005b3480156107c257600080fd5b506107dd60048036038101906107d89190614042565b611ea2565b005b3480156107eb57600080fd5b506107f4611f61565b005b34801561080257600080fd5b5061080b61204f565b60405161081891906146c3565b60405180910390f35b34801561082d57600080fd5b50610836612079565b60405161084391906146de565b60405180910390f35b34801561085857600080fd5b5061086161209f565b60405161086e91906147e9565b60405180910390f35b34801561088357600080fd5b5061088c612131565b6040516108999190614bed565b60405180910390f35b3480156108ae57600080fd5b506108c960048036038101906108c49190613d4c565b612137565b6040516108d691906147ce565b60405180910390f35b3480156108eb57600080fd5b5061090660048036038101906109019190614042565b612157565b005b34801561091457600080fd5b5061092f600480360381019061092a9190613ecd565b612216565b005b34801561093d57600080fd5b5061095860048036038101906109539190614042565b612397565b005b34801561096657600080fd5b50610981600480360381019061097c9190613e52565b6124d9565b005b34801561098f57600080fd5b5061099861253b565b005b3480156109a657600080fd5b506109c160048036038101906109bc9190614042565b612629565b6040516109ce91906147e9565b60405180910390f35b3480156109e357600080fd5b506109fe60048036038101906109f99190614042565b6126d1565b005b610a1a6004803603810190610a159190614042565b61278e565b005b348015610a2857600080fd5b50610a436004803603810190610a3e9190613dc7565b612908565b604051610a5091906147ce565b60405180910390f35b348015610a6557600080fd5b50610a806004803603810190610a7b9190613d4c565b61299c565b005b348015610a8e57600080fd5b50610aa96004803603810190610aa49190613f45565b612b03565b005b348015610ab757600080fd5b50610ad26004803603810190610acd9190613d4c565b612cb4565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b9f57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610baf5750610bae82612dc2565b5b9050919050565b606060008054610bc590614ef0565b80601f0160208091040260200160405190810160405280929190818152602001828054610bf190614ef0565b8015610c3e5780601f10610c1357610100808354040283529160200191610c3e565b820191906000526020600020905b815481529060010190602001808311610c2157829003601f168201915b5050505050905090565b6000610c5382612e2c565b610c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8990614a2d565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b610cd5612e98565b73ffffffffffffffffffffffffffffffffffffffff16610cf361204f565b73ffffffffffffffffffffffffffffffffffffffff1614610d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4090614a4d565b60405180910390fd5b80600c60006101000a81548160ff0219169083151502179055507f2a5bfbb68782e57b3242e612145304c845af3404e2d328a12dd2e7c078cd0117600c60009054906101000a900460ff16604051610da191906147ce565b60405180910390a150565b6000610db782611abd565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1f90614b0d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e47612e98565b73ffffffffffffffffffffffffffffffffffffffff161480610e765750610e7581610e70612e98565b612908565b5b610eb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eac9061496d565b60405180910390fd5b610ebf8383612ea0565b505050565b600c60029054906101000a900460ff16610f13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0a90614b2d565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e846040518263ffffffff1660e01b8152600401610f859190614bed565b60206040518083038186803b158015610f9d57600080fd5b505afa158015610fb1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fd59190613d75565b73ffffffffffffffffffffffffffffffffffffffff161461102b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110229061482d565b60405180910390fd5b6011600083815260200190815260200160002060009054906101000a900460ff161561108c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611083906149ed565b60405180910390fd5b6008548111156110d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c890614b8d565b60405180910390fd5b6110e681600954612f5990919063ffffffff16565b341015611128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111f9061492d565b60405180910390fd5b60016011600084815260200190815260200160002060006101000a81548160ff02191690831515021790555061115d81612f6f565b7fb77d41b776d1d5cc75b500402614335da616afa8aa95b49325e22db7f1ca86cc33838360405161119093929190614797565b60405180910390a15050565b6111a4612e98565b73ffffffffffffffffffffffffffffffffffffffff166111c261204f565b73ffffffffffffffffffffffffffffffffffffffff1614611218576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161120f90614a4d565b60405180910390fd5b80601260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f8daaf060c3306c38e068a75c054bf96ecd85a3db1252712c4d93632744c42e0d82826040516112a0929190614745565b60405180910390a15050565b60075481565b600a5481565b6112c0612e98565b73ffffffffffffffffffffffffffffffffffffffff166112de61204f565b73ffffffffffffffffffffffffffffffffffffffff1614611334576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132b90614a4d565b60405180910390fd5b80600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f268c00f4ec08b34fdde24b52e47a09d62f3f3837eb3b8ac7206cefb3bb5e5345600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040516113c691906146de565b60405180910390a150565b6113e26113dc612e98565b82613085565b611421576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141890614b6d565b60405180910390fd5b61142c838383613163565b505050565b600c60039054906101000a900460ff16611480576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147790614bad565b60405180910390fd5b6008548111156114c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bc90614b8d565b60405180910390fd5b6114da81600954612f5990919063ffffffff16565b34101561151c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115139061492d565b60405180910390fd5b601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166115a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159f90614aad565b60405180910390fd5b7f8714612a507e7fcd9f26d997e561a61611f4bad945c787b8865dc23823ef037b33826040516115d992919061476e565b60405180910390a16115ea81612f6f565b50565b6115f5612e98565b73ffffffffffffffffffffffffffffffffffffffff1661161361204f565b73ffffffffffffffffffffffffffffffffffffffff1614611669576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166090614a4d565b60405180910390fd5b600c60019054906101000a900460ff1615600c60016101000a81548160ff0219169083151502179055507f5a454f976028c400c4159ac85c61452441fcf06b9888c7c780c5980e3c3123dd600c60019054906101000a900460ff166040516116d191906147ce565b60405180910390a1565b600c60039054906101000a900460ff1681565b6116f6612e98565b73ffffffffffffffffffffffffffffffffffffffff1661171461204f565b73ffffffffffffffffffffffffffffffffffffffff161461176a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176190614a4d565b60405180910390fd5b6000479050600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc6117d46127106117c6600f5486612f5990919063ffffffff16565b6133bf90919063ffffffff16565b9081150290604051600060405180830381858888f193505050501580156117ff573d6000803e3d6000fd5b50600c60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc61186561271061185760105486612f5990919063ffffffff16565b6133bf90919063ffffffff16565b9081150290604051600060405180830381858888f19350505050158015611890573d6000803e3d6000fd5b5050565b6118af838383604051806020016040528060008152506124d9565b505050565b600c60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c60029054906101000a900460ff1681565b6118f5612e98565b73ffffffffffffffffffffffffffffffffffffffff1661191361204f565b73ffffffffffffffffffffffffffffffffffffffff1614611969576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196090614a4d565b60405180910390fd5b80600b908051906020019061197f929190613ab0565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf6600b6040516119b0919061480b565b60405180910390a150565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6119e9612e98565b73ffffffffffffffffffffffffffffffffffffffff16611a0761204f565b73ffffffffffffffffffffffffffffffffffffffff1614611a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a5490614a4d565b60405180910390fd5b80600f81905550611a7b600f54612710612dac90919063ffffffff16565b6010819055507fd20ab7c161b1f8ebfab00e747660c0fa31ae9123063e580b5be0aeab18623db2600f54604051611ab29190614bed565b60405180910390a150565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5d906149ad565b60405180910390fd5b80915050919050565b600c60009054906101000a900460ff1681565b60095481565b600c60019054906101000a900460ff1681565b600b8054611ba890614ef0565b80601f0160208091040260200160405190810160405280929190818152602001828054611bd490614ef0565b8015611c215780601f10611bf657610100808354040283529160200191611c21565b820191906000526020600020905b815481529060010190602001808311611c0457829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c919061498d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611ce9612e98565b73ffffffffffffffffffffffffffffffffffffffff16611d0761204f565b73ffffffffffffffffffffffffffffffffffffffff1614611d5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5490614a4d565b60405180910390fd5b611d6760006133d5565b565b60116020528060005260406000206000915054906101000a900460ff1681565b611d91612e98565b73ffffffffffffffffffffffffffffffffffffffff16611daf61204f565b73ffffffffffffffffffffffffffffffffffffffff1614611e05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfc90614a4d565b60405180910390fd5b80600c60046101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507fb470355146314037ce5186813b4b7c65bff2b87f98d44ff063570d0e22d65ba3600c60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff16604051611e9791906146de565b60405180910390a150565b611eaa612e98565b73ffffffffffffffffffffffffffffffffffffffff16611ec861204f565b73ffffffffffffffffffffffffffffffffffffffff1614611f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1590614a4d565b60405180910390fd5b611f2781612f6f565b7fdb7b64a879507c32bda4d0cf22dee29ed875c7157ecbbc10fe11bf14fab06d1281604051611f569190614bed565b60405180910390a150565b611f69612e98565b73ffffffffffffffffffffffffffffffffffffffff16611f8761204f565b73ffffffffffffffffffffffffffffffffffffffff1614611fdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd490614a4d565b60405180910390fd5b600c60029054906101000a900460ff1615600c60026101000a81548160ff0219169083151502179055507f38822fae85453c65b78e1b7d02e45cae5eb0d7961e34226fb29c49dab9d3a357600c60029054906101000a900460ff1660405161204591906147ce565b60405180910390a1565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600180546120ae90614ef0565b80601f01602080910402602001604051908101604052809291908181526020018280546120da90614ef0565b80156121275780601f106120fc57610100808354040283529160200191612127565b820191906000526020600020905b81548152906001019060200180831161210a57829003601f168201915b5050505050905090565b60085481565b60126020528060005260406000206000915054906101000a900460ff1681565b61215f612e98565b73ffffffffffffffffffffffffffffffffffffffff1661217d61204f565b73ffffffffffffffffffffffffffffffffffffffff16146121d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ca90614a4d565b60405180910390fd5b806008819055507f9ae30a041b5f2244849dc754c675b09aef4ad230b48995476fd6e6415d1fe8ab60085460405161220b9190614bed565b60405180910390a150565b61221e612e98565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561228c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122839061490d565b60405180910390fd5b8060056000612299612e98565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612346612e98565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161238b91906147ce565b60405180910390a35050565b61239f612e98565b73ffffffffffffffffffffffffffffffffffffffff166123bd61204f565b73ffffffffffffffffffffffffffffffffffffffff1614612413576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240a90614a4d565b60405180910390fd5b6011600082815260200190815260200160002060009054906101000a900460ff16612473576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246a90614b4d565b60405180910390fd5b60006011600083815260200190815260200160002060006101000a81548160ff0219169083151502179055507f256e63760868166c3f047c49d3e1614c1ca6c620d715c552c54ddb4ba428719c816040516124ce9190614bed565b60405180910390a150565b6124ea6124e4612e98565b83613085565b612529576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252090614b6d565b60405180910390fd5b6125358484848461349b565b50505050565b612543612e98565b73ffffffffffffffffffffffffffffffffffffffff1661256161204f565b73ffffffffffffffffffffffffffffffffffffffff16146125b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ae90614a4d565b60405180910390fd5b600c60039054906101000a900460ff1615600c60036101000a81548160ff0219169083151502179055507ffabb6e4b24bd8ac3a08555e569d13590c5006dc61e4aae65e74296d3df6759ed600c60039054906101000a900460ff1660405161261f91906147ce565b60405180910390a1565b606061263482612e2c565b612673576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266a90614a8d565b60405180910390fd5b6000600b805461268290614ef0565b90501161269e57604051806020016040528060008152506126ca565b600b6126a9836134f7565b6040516020016126ba92919061469f565b6040516020818303038152906040525b9050919050565b6126d9612e98565b73ffffffffffffffffffffffffffffffffffffffff166126f761204f565b73ffffffffffffffffffffffffffffffffffffffff161461274d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274490614a4d565b60405180910390fd5b80600a819055507f178f2d92de18f124251b08e25bacba56eda0716625c1e799fc6c8ed1ee7d1d07816040516127839190614bed565b60405180910390a150565b600c60019054906101000a900460ff166127dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d490614bcd565b60405180910390fd5b600854811115612822576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612819906149cd565b60405180910390fd5b61283781600954612f5990919063ffffffff16565b341015612879576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287090614aed565b60405180910390fd5b600c60009054906101000a900460ff166128fc573373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146128fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f29061488d565b60405180910390fd5b5b61290581612f6f565b50565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6129a4612e98565b73ffffffffffffffffffffffffffffffffffffffff166129c261204f565b73ffffffffffffffffffffffffffffffffffffffff1614612a18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a0f90614a4d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7f90614acd565b60405180910390fd5b80600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507f4846b8d14a603fbd3567c63384f41a947d787c004e59ce39ee755d0485ae5ed881604051612af891906146c3565b60405180910390a150565b612b0b612e98565b73ffffffffffffffffffffffffffffffffffffffff16612b2961204f565b73ffffffffffffffffffffffffffffffffffffffff1614612b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7690614a4d565b60405180910390fd5b60005b8151811015612cb057600160126000848481518110612bca577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507faec42ac7f1bb8651906ae6522f50a19429e124e8ea678ef59fd27750759288a2828281518110612c7d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516001604051612c95929190614745565b60405180910390a18080612ca890614f53565b915050612b82565b5050565b612cbc612e98565b73ffffffffffffffffffffffffffffffffffffffff16612cda61204f565b73ffffffffffffffffffffffffffffffffffffffff1614612d30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2790614a4d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612da0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d979061486d565b60405180910390fd5b612da9816133d5565b50565b60008183612dba9190614df4565b905092915050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612f1383611abd565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008183612f679190614d9a565b905092915050565b600a54612f87826007546136a490919063ffffffff16565b1115612fc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fbf906148cd565b60405180910390fd5b6000600754905060005b8281101561308057612fee6001836136a490919063ffffffff16565b915061300660016007546136a490919063ffffffff16565b60078190555061301633836136ba565b813373ffffffffffffffffffffffffffffffffffffffff167f85a66b9141978db9980f7e0ce3b468cebf4f7999f32b23091c5c03e798b1ba7a61305885612629565b60405161306591906147e9565b60405180910390a3808061307890614f53565b915050612fd2565b505050565b600061309082612e2c565b6130cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c69061494d565b60405180910390fd5b60006130da83611abd565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061314957508373ffffffffffffffffffffffffffffffffffffffff1661313184610c48565b73ffffffffffffffffffffffffffffffffffffffff16145b8061315a57506131598185612908565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661318382611abd565b73ffffffffffffffffffffffffffffffffffffffff16146131d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131d090614a6d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613249576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613240906148ed565b60405180910390fd5b6132548383836136d8565b61325f600082612ea0565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546132af9190614df4565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133069190614d13565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081836133cd9190614d69565b905092915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6134a6848484613163565b6134b2848484846136dd565b6134f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134e89061484d565b60405180910390fd5b50505050565b6060600082141561353f576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061369f565b600082905060005b6000821461357157808061355a90614f53565b915050600a8261356a9190614d69565b9150613547565b60008167ffffffffffffffff8111156135b3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156135e55781602001600182028036833780820191505090505b5090505b60008514613698576001826135fe9190614df4565b9150600a8561360d9190614f9c565b60306136199190614d13565b60f81b818381518110613655577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856136919190614d69565b94506135e9565b8093505050505b919050565b600081836136b29190614d13565b905092915050565b6136d4828260405180602001604052806000815250613874565b5050565b505050565b60006136fe8473ffffffffffffffffffffffffffffffffffffffff166138cf565b15613867578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613727612e98565b8786866040518563ffffffff1660e01b815260040161374994939291906146f9565b602060405180830381600087803b15801561376357600080fd5b505af192505050801561379457506040513d601f19601f820116820180604052508101906137919190613fd8565b60015b613817573d80600081146137c4576040519150601f19603f3d011682016040523d82523d6000602084013e6137c9565b606091505b5060008151141561380f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138069061484d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061386c565b600190505b949350505050565b61387e83836138e2565b61388b60008484846136dd565b6138ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138c19061484d565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613952576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161394990614a0d565b60405180910390fd5b61395b81612e2c565b1561399b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613992906148ad565b60405180910390fd5b6139a7600083836136d8565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546139f79190614d13565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054613abc90614ef0565b90600052602060002090601f016020900481019282613ade5760008555613b25565b82601f10613af757805160ff1916838001178555613b25565b82800160010185558215613b25579182015b82811115613b24578251825591602001919060010190613b09565b5b509050613b329190613b36565b5090565b5b80821115613b4f576000816000905550600101613b37565b5090565b6000613b66613b6184614c2d565b614c08565b90508083825260208201905082856020860282011115613b8557600080fd5b60005b85811015613bb55781613b9b8882613c3b565b845260208401935060208301925050600181019050613b88565b5050509392505050565b6000613bd2613bcd84614c59565b614c08565b905082815260208101848484011115613bea57600080fd5b613bf5848285614eae565b509392505050565b6000613c10613c0b84614c8a565b614c08565b905082815260208101848484011115613c2857600080fd5b613c33848285614eae565b509392505050565b600081359050613c4a8161591e565b92915050565b600081519050613c5f8161591e565b92915050565b600081359050613c7481615935565b92915050565b600082601f830112613c8b57600080fd5b8135613c9b848260208601613b53565b91505092915050565b600081359050613cb38161594c565b92915050565b600081359050613cc881615963565b92915050565b600081519050613cdd81615963565b92915050565b600082601f830112613cf457600080fd5b8135613d04848260208601613bbf565b91505092915050565b600082601f830112613d1e57600080fd5b8135613d2e848260208601613bfd565b91505092915050565b600081359050613d468161597a565b92915050565b600060208284031215613d5e57600080fd5b6000613d6c84828501613c3b565b91505092915050565b600060208284031215613d8757600080fd5b6000613d9584828501613c50565b91505092915050565b600060208284031215613db057600080fd5b6000613dbe84828501613c65565b91505092915050565b60008060408385031215613dda57600080fd5b6000613de885828601613c3b565b9250506020613df985828601613c3b565b9150509250929050565b600080600060608486031215613e1857600080fd5b6000613e2686828701613c3b565b9350506020613e3786828701613c3b565b9250506040613e4886828701613d37565b9150509250925092565b60008060008060808587031215613e6857600080fd5b6000613e7687828801613c3b565b9450506020613e8787828801613c3b565b9350506040613e9887828801613d37565b925050606085013567ffffffffffffffff811115613eb557600080fd5b613ec187828801613ce3565b91505092959194509250565b60008060408385031215613ee057600080fd5b6000613eee85828601613c3b565b9250506020613eff85828601613ca4565b9150509250929050565b60008060408385031215613f1c57600080fd5b6000613f2a85828601613c3b565b9250506020613f3b85828601613d37565b9150509250929050565b600060208284031215613f5757600080fd5b600082013567ffffffffffffffff811115613f7157600080fd5b613f7d84828501613c7a565b91505092915050565b600060208284031215613f9857600080fd5b6000613fa684828501613ca4565b91505092915050565b600060208284031215613fc157600080fd5b6000613fcf84828501613cb9565b91505092915050565b600060208284031215613fea57600080fd5b6000613ff884828501613cce565b91505092915050565b60006020828403121561401357600080fd5b600082013567ffffffffffffffff81111561402d57600080fd5b61403984828501613d0d565b91505092915050565b60006020828403121561405457600080fd5b600061406284828501613d37565b91505092915050565b6000806040838503121561407e57600080fd5b600061408c85828601613d37565b925050602061409d85828601613d37565b9150509250929050565b6140b081614e3a565b82525050565b6140bf81614e28565b82525050565b6140ce81614e4c565b82525050565b60006140df82614cd0565b6140e98185614ce6565b93506140f9818560208601614ebd565b61410281615089565b840191505092915050565b600061411882614cdb565b6141228185614cf7565b9350614132818560208601614ebd565b61413b81615089565b840191505092915050565b600061415182614cdb565b61415b8185614d08565b935061416b818560208601614ebd565b80840191505092915050565b6000815461418481614ef0565b61418e8186614cf7565b945060018216600081146141a957600181146141bb576141ee565b60ff19831686526020860193506141ee565b6141c485614cbb565b60005b838110156141e6578154818901526001820191506020810190506141c7565b808801955050505b50505092915050565b6000815461420481614ef0565b61420e8186614d08565b94506001821660008114614229576001811461423a5761426d565b60ff1983168652818601935061426d565b61424385614cbb565b60005b8381101561426557815481890152600182019150602081019050614246565b838801955050505b50505092915050565b6000614283602683614cf7565b915061428e8261509a565b604082019050919050565b60006142a6603283614cf7565b91506142b1826150e9565b604082019050919050565b60006142c9602683614cf7565b91506142d482615138565b604082019050919050565b60006142ec603783614cf7565b91506142f782615187565b604082019050919050565b600061430f601c83614cf7565b915061431a826151d6565b602082019050919050565b6000614332601783614cf7565b915061433d826151ff565b602082019050919050565b6000614355602483614cf7565b915061436082615228565b604082019050919050565b6000614378601983614cf7565b915061438382615277565b602082019050919050565b600061439b602c83614cf7565b91506143a6826152a0565b604082019050919050565b60006143be602c83614cf7565b91506143c9826152ef565b604082019050919050565b60006143e1603883614cf7565b91506143ec8261533e565b604082019050919050565b6000614404602a83614cf7565b915061440f8261538d565b604082019050919050565b6000614427602983614cf7565b9150614432826153dc565b604082019050919050565b600061444a603483614cf7565b91506144558261542b565b604082019050919050565b600061446d602b83614cf7565b91506144788261547a565b604082019050919050565b6000614490602083614cf7565b915061449b826154c9565b602082019050919050565b60006144b3602c83614cf7565b91506144be826154f2565b604082019050919050565b60006144d6602083614cf7565b91506144e182615541565b602082019050919050565b60006144f9602983614cf7565b91506145048261556a565b604082019050919050565b600061451c602f83614cf7565b9150614527826155b9565b604082019050919050565b600061453f603183614cf7565b915061454a82615608565b604082019050919050565b6000614562603183614cf7565b915061456d82615657565b604082019050919050565b6000614585602583614cf7565b9150614590826156a6565b604082019050919050565b60006145a8602183614cf7565b91506145b3826156f5565b604082019050919050565b60006145cb602d83614cf7565b91506145d682615744565b604082019050919050565b60006145ee602a83614cf7565b91506145f982615793565b604082019050919050565b6000614611603183614cf7565b915061461c826157e2565b604082019050919050565b6000614634603b83614cf7565b915061463f82615831565b604082019050919050565b6000614657603983614cf7565b915061466282615880565b604082019050919050565b600061467a602383614cf7565b9150614685826158cf565b604082019050919050565b61469981614ea4565b82525050565b60006146ab82856141f7565b91506146b78284614146565b91508190509392505050565b60006020820190506146d860008301846140b6565b92915050565b60006020820190506146f360008301846140a7565b92915050565b600060808201905061470e60008301876140b6565b61471b60208301866140b6565b6147286040830185614690565b818103606083015261473a81846140d4565b905095945050505050565b600060408201905061475a60008301856140b6565b61476760208301846140c5565b9392505050565b600060408201905061478360008301856140b6565b6147906020830184614690565b9392505050565b60006060820190506147ac60008301866140b6565b6147b96020830185614690565b6147c66040830184614690565b949350505050565b60006020820190506147e360008301846140c5565b92915050565b60006020820190508181036000830152614803818461410d565b905092915050565b600060208201905081810360008301526148258184614177565b905092915050565b6000602082019050818103600083015261484681614276565b9050919050565b6000602082019050818103600083015261486681614299565b9050919050565b60006020820190508181036000830152614886816142bc565b9050919050565b600060208201905081810360008301526148a6816142df565b9050919050565b600060208201905081810360008301526148c681614302565b9050919050565b600060208201905081810360008301526148e681614325565b9050919050565b6000602082019050818103600083015261490681614348565b9050919050565b600060208201905081810360008301526149268161436b565b9050919050565b600060208201905081810360008301526149468161438e565b9050919050565b60006020820190508181036000830152614966816143b1565b9050919050565b60006020820190508181036000830152614986816143d4565b9050919050565b600060208201905081810360008301526149a6816143f7565b9050919050565b600060208201905081810360008301526149c68161441a565b9050919050565b600060208201905081810360008301526149e68161443d565b9050919050565b60006020820190508181036000830152614a0681614460565b9050919050565b60006020820190508181036000830152614a2681614483565b9050919050565b60006020820190508181036000830152614a46816144a6565b9050919050565b60006020820190508181036000830152614a66816144c9565b9050919050565b60006020820190508181036000830152614a86816144ec565b9050919050565b60006020820190508181036000830152614aa68161450f565b9050919050565b60006020820190508181036000830152614ac681614532565b9050919050565b60006020820190508181036000830152614ae681614555565b9050919050565b60006020820190508181036000830152614b0681614578565b9050919050565b60006020820190508181036000830152614b268161459b565b9050919050565b60006020820190508181036000830152614b46816145be565b9050919050565b60006020820190508181036000830152614b66816145e1565b9050919050565b60006020820190508181036000830152614b8681614604565b9050919050565b60006020820190508181036000830152614ba681614627565b9050919050565b60006020820190508181036000830152614bc68161464a565b9050919050565b60006020820190508181036000830152614be68161466d565b9050919050565b6000602082019050614c026000830184614690565b92915050565b6000614c12614c23565b9050614c1e8282614f22565b919050565b6000604051905090565b600067ffffffffffffffff821115614c4857614c4761505a565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614c7457614c7361505a565b5b614c7d82615089565b9050602081019050919050565b600067ffffffffffffffff821115614ca557614ca461505a565b5b614cae82615089565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614d1e82614ea4565b9150614d2983614ea4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614d5e57614d5d614fcd565b5b828201905092915050565b6000614d7482614ea4565b9150614d7f83614ea4565b925082614d8f57614d8e614ffc565b5b828204905092915050565b6000614da582614ea4565b9150614db083614ea4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614de957614de8614fcd565b5b828202905092915050565b6000614dff82614ea4565b9150614e0a83614ea4565b925082821015614e1d57614e1c614fcd565b5b828203905092915050565b6000614e3382614e84565b9050919050565b6000614e4582614e84565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614edb578082015181840152602081019050614ec0565b83811115614eea576000848401525b50505050565b60006002820490506001821680614f0857607f821691505b60208210811415614f1c57614f1b61502b565b5b50919050565b614f2b82615089565b810181811067ffffffffffffffff82111715614f4a57614f4961505a565b5b80604052505050565b6000614f5e82614ea4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614f9157614f90614fcd565b5b600182019050919050565b6000614fa782614ea4565b9150614fb283614ea4565b925082614fc257614fc1614ffc565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f44726f7073706163653a3a70726573616c654275793a20696e76616c6964207460008201527f69636b65742e0000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f44726f7073706163653a3a6275793a20536d61727420636f6e7472616374732060008201527f617265206e6f7420616c6c6f77656420746f206275792e000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e6f7420656e6f75676820746f6b656e73206c6566742e000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f44726f7073706163653a3a70726573616c654275793a20496e7375666669636960008201527f656e74207061796d656e742e0000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f44726f7073706163653a3a6275793a20546f6f206d616e7920746f6b656e732060008201527f666f72206f6e65207472616e73616374696f6e2e000000000000000000000000602082015250565b7f44726f7073706163653a3a70726573616c654275793a205469636b657420616c60008201527f726561647920757365642e000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f44726f7073706163653a3a77686974656c6973744275793a20596f752061726560008201527f206e6f742077686974656c69737465642e000000000000000000000000000000602082015250565b7f44726f70537061636553616c653a3a7365745469636b6574416464726573733a60008201527f20496e76616c696420616464726573732e000000000000000000000000000000602082015250565b7f44726f7073706163653a3a6275793a20496e73756666696369656e742070617960008201527f6d656e742e000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f44726f7073706163653a3a70726573616c654275793a2050726573616c65206960008201527f73206e6f74204163746976652e00000000000000000000000000000000000000602082015250565b7f44726f7073706163653a3a636c6561725469636b65743a205469636b6574206960008201527f73206e6f74207573656400000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f44726f7073706163653a3a70726573616c654275793a20546f6f206d616e792060008201527f746f6b656e7320666f72206f6e65207472616e73616374696f6e2e0000000000602082015250565b7f44726f70537061636553616c653a3a77686974656c6973744275793a2057686960008201527f74656c69737420427579206973206e6f74204163746976652e00000000000000602082015250565b7f44726f7073706163653a3a6275793a2053616c65206973206e6f74206163746960008201527f76652e0000000000000000000000000000000000000000000000000000000000602082015250565b61592781614e28565b811461593257600080fd5b50565b61593e81614e3a565b811461594957600080fd5b50565b61595581614e4c565b811461596057600080fd5b50565b61596c81614e58565b811461597757600080fd5b50565b61598381614ea4565b811461598e57600080fd5b5056fea26469706673582212206ee79728b024fbd96da342cefe1578208417391075046925a62f909b30dcbfe864736f6c63430008040033

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

0000000000000000000000000000000000000000000000000000000000002710000000000000000000000000000000000000000000000000000000000000001400000000000000000000000000000000000000000000000000d529ae9e86000000000000000000000000000000000000000000000000000000000000000005dc0000000000000000000000007d1685a12b8a069192825ca2074a847b901b63b10000000000000000000000004d3fd3865a46ce2ced63fa56562ab932149e7d3c000000000000000000000000000000000000000000000000000000000000dead0000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000000d41776b77617264416c69656e7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000741574b5741524400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005968747470733a2f2f61776b77617264616c69656e732e6d7970696e6174612e636c6f75642f697066732f516d523138435a4264334a724542744b51726d763533714c4c5a4d766a4335353959696734666466565173694d562f00000000000000

-----Decoded View---------------
Arg [0] : _supplyLimit (uint256): 10000
Arg [1] : _mintLimit (uint256): 20
Arg [2] : _mintPrice (uint256): 60000000000000000
Arg [3] : _devSaleShare (uint256): 1500
Arg [4] : _withdrawalWallet (address): 0x7d1685A12B8A069192825Ca2074A847b901b63B1
Arg [5] : _devWallet (address): 0x4d3FD3865A46cE2cEd63fA56562Ab932149E7d3C
Arg [6] : _ticketAddress (address): 0x000000000000000000000000000000000000dEaD
Arg [7] : _name (string): AwkwardAliens
Arg [8] : _ticker (string): AWKWARD
Arg [9] : _baseURI (string): https://awkwardaliens.mypinata.cloud/ipfs/QmR18CZBd3JrEBtKQrmv53qLLZMvjC559Yig4fdfVQsiMV/

-----Encoded View---------------
18 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [2] : 00000000000000000000000000000000000000000000000000d529ae9e860000
Arg [3] : 00000000000000000000000000000000000000000000000000000000000005dc
Arg [4] : 0000000000000000000000007d1685a12b8a069192825ca2074a847b901b63b1
Arg [5] : 0000000000000000000000004d3fd3865a46ce2ced63fa56562ab932149e7d3c
Arg [6] : 000000000000000000000000000000000000000000000000000000000000dead
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [9] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [10] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [11] : 41776b77617264416c69656e7300000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [13] : 41574b5741524400000000000000000000000000000000000000000000000000
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000059
Arg [15] : 68747470733a2f2f61776b77617264616c69656e732e6d7970696e6174612e63
Arg [16] : 6c6f75642f697066732f516d523138435a4264334a724542744b51726d763533
Arg [17] : 714c4c5a4d766a4335353959696734666466565173694d562f00000000000000


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.