ETH Price: $3,249.06 (+3.43%)
Gas: 4 Gwei

Token

Tuff Guys (TG)
 

Overview

Max Total Supply

0 TG

Holders

1,297

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 TG
0x9293706785b0269b601f3acf8fbb1d9c11ffea4c
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:
TuffGuysNFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 12 : TuffGuys.sol
// SPDX-License-Identifier: None


pragma solidity ^0.8.4;

import "./Ownable.sol";
import "./String.sol";
import "./ERC721.sol";
import "./SafeMath.sol";

contract TuffGuysNFT is Ownable, ERC721 {
    using SafeMath for uint256;
    using Strings for uint256;
    
    uint256 public fusionSupply = 0;
    uint256 public _fusionID = 10000;
    
    uint256 public price = 0.08 ether;
    uint256 public TuffGuyAmount;
    uint256 public PreSaleTuffGuyAmount;
    uint256 public CurrentTuffGuys = 0;
    uint256 public CurrentGiveawayTuffGuys = 0;
    uint256 public GiveawayTuffGuyAmount = 30;

    uint256 public Maximum_Allowed_Mint = 10;
    uint256 public Presale_Maximum_Allowed_Mint = 5;
    
    string public baseURI = "";
    
    bool public fusionEnabled = false;
    bool public MainSaleActive = false;
    bool public PreSaleWhitelistActive = true;
    bool public PreSaleActive = false;

    address[] public TuffGuysPresale;

    address public TuffGuy1 = 0x09E1f1f5672dcF434d0Ce872050E4C2EdBE47e76;
    address public TuffGuy2 = 0x56f6DaF0F8696F9952d471D6c447E497A39E805E; 
    address public TuffGuy3 = 0xCB31144f983859968E242844C4ed3dDB565589c2; //BV: ZAV Invest - Eindhoven, The Netherlands
    address public TuffGuy4 = 0x89EF51E9cA619952EB364Ec6f4111009EF66F75E;
    address public TuffGuy5 = 0xf5D71a9d75AbCAB2fC79Cf7306Fbc38e33ED6f2D; 
    address public TuffGuy6 = 0x39fF53cEAA56f6761bB938500a1449Eee67d9399; 
    address public TuffGuy7 = 0x81127d3bC3c07dBfE99826e54388c8b7a4494028;
    address public TuffGuy9 = 0x605e088C482e4aBE79603278F5C5c06dFA51459E;
    address public TuffGuy10 = 0x6479a51298Be79645e936405Fb9a783Ddbf13Ce3; //Community
    
    constructor(
        uint256 TotalTuffGuys,
        uint256 PresaleTuffGuys,
        string memory _baseURI
    ) ERC721("Tuff Guys", "TG") {
        TuffGuyAmount = TotalTuffGuys;
        PreSaleTuffGuyAmount = PresaleTuffGuys;
        baseURI = _baseURI;
    }
    
    function tokenURI(uint256 TuffGuyID) public view override returns (string memory) {
        require(_exists(TuffGuyID), "nonexistent token");
        return bytes(baseURI).length > 0 ? 
        string(abi.encodePacked(baseURI, TuffGuyID.toString())) : "";
    }
    
    function toggle_sales(uint256 num) external onlyOwner {
        if (num == 0) {
            PreSaleActive = !PreSaleActive;
        } else if (num == 1) {
            MainSaleActive = !MainSaleActive;
        } else if (num == 2) {
            PreSaleWhitelistActive = !PreSaleWhitelistActive;
        } else if (num == 3) {
            fusionEnabled = !fusionEnabled;
        }
    }
    
    function populate_PreSaleWhitelist(address[] calldata addresses) external onlyOwner {
        delete TuffGuysPresale;
        TuffGuysPresale = addresses;
  	    return;
  	}
    
    function write_TuffGuyAmount(uint256 _TuffGuyAmount, uint256 num) external onlyOwner {
        if (num == 0) {
            require(_TuffGuyAmount >= CurrentTuffGuys, "Error changing Tuff Guy Amount");
            TuffGuyAmount = _TuffGuyAmount;
        } else {
            require(_TuffGuyAmount >= PreSaleTuffGuyAmount, "Error changed Pre Sale Tuff Guy Amount");
            PreSaleTuffGuyAmount = _TuffGuyAmount;
        }
    }
    
    function write_URI(string memory _baseURI) external onlyOwner {
        baseURI = _baseURI;
    }

    function withdraw_first() external onlyOwner {
        require(address(this).balance > 0, "Not enough eth");

        (bool initialES,) = TuffGuy7.call{value: 42 ether}(""); //

        require(initialES, "Woah! Not enough ETH in the contract");
    }

    function withdraw() external onlyOwner {
        require(address(this).balance > 0, "None");
        uint256 walletBalance = address(this).balance;
        (bool withdraw1,) = TuffGuy1.call{value: walletBalance.mul(1734).div(10000)}("");
        (bool withdraw2,) = TuffGuy2.call{value: walletBalance.mul(1734).div(10000)}("");
        (bool withdraw3,) = TuffGuy3.call{value: walletBalance.mul(1734).div(10000)}(""); 
        (bool withdraw4,) = TuffGuy4.call{value: walletBalance.mul(11).div(100)}("");
        (bool withdraw5,) = TuffGuy5.call{value: walletBalance.mul(15).div(1000)}(""); 
        (bool withdraw6,) = TuffGuy6.call{value: walletBalance.mul(3).div(100)}("");
        (bool withdraw7,) = TuffGuy7.call{value: walletBalance.mul(175).div(1000)}(""); 
        (bool withdraw9,) = TuffGuy9.call{value: walletBalance.mul(5).div(100)}("");
        (bool withdraw10,) = TuffGuy10.call{value: walletBalance.mul(10).div(100)}("");
        require(withdraw1 && withdraw2 && withdraw3 && withdraw4 && withdraw5 && withdraw6 && withdraw7 && withdraw9 && withdraw10, "Tuff Guy Withdrawal Failed");
    }
    
    function emergencyWithdraw() external onlyOwner {
        (bool succcess,) = TuffGuy7.call{value: address(this).balance}("");
        require(succcess, "Can't Withdraw");
    }

    function purchase_mainSale(uint TuffGuyNFT) external payable {
        require(MainSaleActive, "Slow Down! Main Sale isn't available just yet.");
        require(TuffGuyNFT <= Maximum_Allowed_Mint, "Woah! Leave some TuffGuys for the rest of us");
        require(msg.value >= price.mul(TuffGuyNFT), "Oops! Looks like we didn't receive the require funds");
        require(CurrentTuffGuys.add(TuffGuyNFT) <= TuffGuyAmount, "Not enough Tuff Guys left :(");

        uint256 TuffGuyID = CurrentTuffGuys;
        for(uint i = 0; i < TuffGuyNFT; i++) {
            TuffGuyID += 1;
            CurrentTuffGuys = CurrentTuffGuys.add(1);
            _safeMint(msg.sender, TuffGuyID);
        }

        return;
    }
    
    function purchase_preSale(uint TuffGuyNFT) external payable {
        require(PreSaleActive, "Slow Down! Pre Sale isn't available just yet.");
        require(TuffGuyNFT <= Presale_Maximum_Allowed_Mint, "Woah! Leave some TuffGuys for the rest of us");
        require(msg.value >= price.mul(TuffGuyNFT), "Oops! Looks like we didn't receive the require funds");
        require(CurrentTuffGuys.add(TuffGuyNFT) <= PreSaleTuffGuyAmount, "Not enough Tuff Guys left for presale :(");
        
        if (!PreSaleWhitelistActive) {
            uint256 TuffGuyID = CurrentTuffGuys;
            for(uint i = 0; i < TuffGuyNFT; i++) {
                TuffGuyID += 1;
                CurrentTuffGuys = CurrentTuffGuys.add(1);
                _safeMint(msg.sender, TuffGuyID);
            }
        } else {
            require(allowThrough(msg.sender), "Not in Presale");
            uint256 TuffGuyID = CurrentTuffGuys;
            for(uint i = 0; i < TuffGuyNFT; i++) {
                TuffGuyID += 1;
                CurrentTuffGuys = CurrentTuffGuys.add(1);
                _safeMint(msg.sender, TuffGuyID);
            }
        }

    }
    
    function mint_giveaway(uint TuffGuyNFT) external onlyOwner  {
        require(CurrentTuffGuys.add(TuffGuyNFT) <= TuffGuyAmount, "Not enough Tuff Guys left :(");
        require(CurrentGiveawayTuffGuys.add(TuffGuyNFT) <= GiveawayTuffGuyAmount, "Not enough Tuff Guys left to mint for giveaways and community events :(");

        uint256 TuffGuyID = CurrentTuffGuys;
        for(uint i = 0; i < TuffGuyNFT; i++) {
            TuffGuyID += 1;
            CurrentTuffGuys = CurrentTuffGuys.add(1);
            CurrentGiveawayTuffGuys = CurrentGiveawayTuffGuys.add(1);
            _safeMint(msg.sender, TuffGuyID);
        }
    }
    
  	function allowThrough(address __address) public view returns (bool) {
        for(uint256 i = 0; i < TuffGuysPresale.length; i++) {
            if (TuffGuysPresale[i] == __address) {
                return true;
            }
        }
        return false;
    }
    
    function fusion(uint256[] memory _tg) public meetsOwnership(_tg) {
        require(fusionSupply > 0, "No Fusion Left");
        require(fusionEnabled, "Fusions not enabled");
        require(_tg.length >= 2, "Woah. Provide me some more Tuff Guys");
      
        for (uint256 i = 0; i < _tg.length; i++) {
          _burn(_tg[i]);
        }
        
        uint256 token_id = _fusionID;

        token_id += 1;
        _fusionID = _fusionID.add(1);
        _safeMint(msg.sender, token_id);

        fusionSupply -= 1;
    }
         
    function setFuseID(uint256 fuseID) public onlyOwner {
        _fusionID = fuseID;
    }

    function setfusionSupply(uint256 newfusionSupply) public onlyOwner {
        fusionSupply = newfusionSupply;
    }
    
    modifier meetsOwnership(uint256[] memory _tg) {
        for (uint256 i = 0; i < _tg.length; i++) {
          require(this.ownerOf(_tg[i]) == msg.sender, "Tuff Guys not owned");
        }
        _;
    }
    
}

File 2 of 12 : 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 3 of 12 : ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./Address.sol";
import "./Context.sol";
import "./String.sol";
import "./ERC165.sol";

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. 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 12 : String.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 5 of 12 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

File 6 of 12 : 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 7 of 12 : 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 8 of 12 : 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 9 of 12 : 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 12 : 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 11 of 12 : IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"TotalTuffGuys","type":"uint256"},{"internalType":"uint256","name":"PresaleTuffGuys","type":"uint256"},{"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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CurrentGiveawayTuffGuys","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CurrentTuffGuys","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GiveawayTuffGuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MainSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Maximum_Allowed_Mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PreSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PreSaleTuffGuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PreSaleWhitelistActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Presale_Maximum_Allowed_Mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TuffGuy1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TuffGuy10","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TuffGuy2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TuffGuy3","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TuffGuy4","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TuffGuy5","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TuffGuy6","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TuffGuy7","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TuffGuy9","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TuffGuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"TuffGuysPresale","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_fusionID","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"__address","type":"address"}],"name":"allowThrough","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tg","type":"uint256[]"}],"name":"fusion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fusionEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fusionSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"TuffGuyNFT","type":"uint256"}],"name":"mint_giveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"populate_PreSaleWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"TuffGuyNFT","type":"uint256"}],"name":"purchase_mainSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"TuffGuyNFT","type":"uint256"}],"name":"purchase_preSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"fuseID","type":"uint256"}],"name":"setFuseID","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newfusionSupply","type":"uint256"}],"name":"setfusionSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"}],"name":"toggle_sales","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"TuffGuyID","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw_first","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_TuffGuyAmount","type":"uint256"},{"internalType":"uint256","name":"num","type":"uint256"}],"name":"write_TuffGuyAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"write_URI","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600060075561271060085567011c37937e0800006009556000600c556000600d55601e600e55600a600f55600560105560405180602001604052806000815250601190805190602001906200005b929190620005b4565b506000601260006101000a81548160ff0219169083151502179055506000601260016101000a81548160ff0219169083151502179055506001601260026101000a81548160ff0219169083151502179055506000601260036101000a81548160ff0219169083151502179055507309e1f1f5672dcf434d0ce872050e4c2edbe47e76601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507356f6daf0f8696f9952d471d6c447e497a39e805e601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073cb31144f983859968e242844c4ed3ddb565589c2601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507389ef51e9ca619952eb364ec6f4111009ef66f75e601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073f5d71a9d75abcab2fc79cf7306fbc38e33ed6f2d601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507339ff53ceaa56f6761bb938500a1449eee67d9399601960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507381127d3bc3c07dbfe99826e54388c8b7a4494028601a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073605e088c482e4abe79603278f5c5c06dfa51459e601b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550736479a51298be79645e936405fb9a783ddbf13ce3601c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620003d257600080fd5b50604051620068c9380380620068c98339818101604052810190620003f89190620006f9565b6040518060400160405280600981526020017f54756666204775797300000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f54470000000000000000000000000000000000000000000000000000000000008152506200048462000478620004e860201b60201c565b620004f060201b60201c565b81600190805190602001906200049c929190620005b4565b508060029080519060200190620004b5929190620005b4565b50505082600a8190555081600b819055508060119080519060200190620004de929190620005b4565b505050506200091c565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620005c29062000813565b90600052602060002090601f016020900481019282620005e6576000855562000632565b82601f106200060157805160ff191683800117855562000632565b8280016001018555821562000632579182015b828111156200063157825182559160200191906001019062000614565b5b50905062000641919062000645565b5090565b5b808211156200066057600081600090555060010162000646565b5090565b60006200067b62000675846200079d565b62000774565b9050828152602081018484840111156200069a5762000699620008e2565b5b620006a7848285620007dd565b509392505050565b600082601f830112620006c757620006c6620008dd565b5b8151620006d984826020860162000664565b91505092915050565b600081519050620006f38162000902565b92915050565b600080600060608486031215620007155762000714620008ec565b5b60006200072586828701620006e2565b93505060206200073886828701620006e2565b925050604084015167ffffffffffffffff8111156200075c576200075b620008e7565b5b6200076a86828701620006af565b9150509250925092565b60006200078062000793565b90506200078e828262000849565b919050565b6000604051905090565b600067ffffffffffffffff821115620007bb57620007ba620008ae565b5b620007c682620008f1565b9050602081019050919050565b6000819050919050565b60005b83811015620007fd578082015181840152602081019050620007e0565b838111156200080d576000848401525b50505050565b600060028204905060018216806200082c57607f821691505b602082108114156200084357620008426200087f565b5b50919050565b6200085482620008f1565b810181811067ffffffffffffffff82111715620008765762000875620008ae565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6200090d81620007d3565b81146200091957600080fd5b50565b615f9d806200092c6000396000f3fe6080604052600436106103505760003560e01c806394034b39116101c6578063d2e31447116100f7578063e6f1704511610095578063e9999ea81161006f578063e9999ea814610bee578063f2fde38b14610c19578063f5bb8cce14610c42578063fc05ce5514610c6d57610350565b8063e6f1704514610b5d578063e933beaa14610b86578063e985e9c514610bb157610350565b8063db2e21bc116100d1578063db2e21bc14610ac7578063db3e269b14610ade578063de33dfbe14610b07578063de61830614610b3257610350565b8063d2e3144714610a46578063d7be7e2f14610a71578063d93a9f4514610a9c57610350565b8063a739505611610164578063c87b56dd1161013e578063c87b56dd14610999578063ccaac9e9146109d6578063cf0b3f3814610a01578063d156393114610a2a57610350565b8063a73950561461091c578063b88d4fde14610947578063c8624b7b1461097057610350565b806395d89b41116101a057806395d89b41146108725780639c84cff61461089d578063a035b1fe146108c8578063a22cb465146108f357610350565b806394034b39146107f557806394df91991461081e57806395ae66111461084757610350565b806352ec383b116102a057806370a082311161023e57806381b9bb131161021857806381b9bb1314610739578063879ac1531461076257806388f9e8351461078d5780638da5cb5b146107ca57610350565b806370a08231146106ba578063715018a6146106f7578063780d64091461070e57610350565b80635e487f1c1161027a5780635e487f1c1461060b57806360334aa6146106275780636352211e146106525780636c0360eb1461068f57610350565b806352ec383b1461058c57806356e6bded146105c95780635d06c482146105f457610350565b80632381c76f1161030d57806337a50397116102e757806337a50397146104f65780633ccfd60b1461052157806342842e0e1461053857806347f1339e1461056157610350565b80632381c76f1461047757806323b872dd146104a25780632a95d6c7146104cb57610350565b806301ffc9a71461035557806306fdde0314610392578063081812fc146103bd578063095ea7b3146103fa5780630a036ef2146104235780631a2e50e11461044e575b600080fd5b34801561036157600080fd5b5061037c600480360381019061037791906144d4565b610c98565b6040516103899190614cbf565b60405180910390f35b34801561039e57600080fd5b506103a7610d7a565b6040516103b49190614cda565b60405180910390f35b3480156103c957600080fd5b506103e460048036038101906103df9190614577565b610e0c565b6040516103f19190614c58565b60405180910390f35b34801561040657600080fd5b50610421600480360381019061041c91906143fe565b610e91565b005b34801561042f57600080fd5b50610438610fa9565b6040516104459190614cbf565b60405180910390f35b34801561045a57600080fd5b5061047560048036038101906104709190614577565b610fbc565b005b34801561048357600080fd5b5061048c611042565b6040516104999190614c58565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c491906142e8565b611068565b005b3480156104d757600080fd5b506104e06110c8565b6040516104ed9190614c58565b60405180910390f35b34801561050257600080fd5b5061050b6110ee565b6040516105189190614cbf565b60405180910390f35b34801561052d57600080fd5b50610536611101565b005b34801561054457600080fd5b5061055f600480360381019061055a91906142e8565b6118b5565b005b34801561056d57600080fd5b506105766118d5565b6040516105839190614c58565b60405180910390f35b34801561059857600080fd5b506105b360048036038101906105ae919061424e565b6118fb565b6040516105c09190614cbf565b60405180910390f35b3480156105d557600080fd5b506105de6119aa565b6040516105eb919061515c565b60405180910390f35b34801561060057600080fd5b506106096119b0565b005b61062560048036038101906106209190614577565b611b49565b005b34801561063357600080fd5b5061063c611cec565b6040516106499190614c58565b60405180910390f35b34801561065e57600080fd5b5061067960048036038101906106749190614577565b611d12565b6040516106869190614c58565b60405180910390f35b34801561069b57600080fd5b506106a4611dc4565b6040516106b19190614cda565b60405180910390f35b3480156106c657600080fd5b506106e160048036038101906106dc919061424e565b611e52565b6040516106ee919061515c565b60405180910390f35b34801561070357600080fd5b5061070c611f0a565b005b34801561071a57600080fd5b50610723611f92565b604051610730919061515c565b60405180910390f35b34801561074557600080fd5b50610760600480360381019061075b9190614577565b611f98565b005b34801561076e57600080fd5b50610777612141565b604051610784919061515c565b60405180910390f35b34801561079957600080fd5b506107b460048036038101906107af9190614577565b612147565b6040516107c19190614c58565b60405180910390f35b3480156107d657600080fd5b506107df612186565b6040516107ec9190614c58565b60405180910390f35b34801561080157600080fd5b5061081c60048036038101906108179190614577565b6121af565b005b34801561082a57600080fd5b506108456004803603810190610840919061452e565b61230d565b005b34801561085357600080fd5b5061085c6123a3565b6040516108699190614c58565b60405180910390f35b34801561087e57600080fd5b506108876123c9565b6040516108949190614cda565b60405180910390f35b3480156108a957600080fd5b506108b261245b565b6040516108bf919061515c565b60405180910390f35b3480156108d457600080fd5b506108dd612461565b6040516108ea919061515c565b60405180910390f35b3480156108ff57600080fd5b5061091a600480360381019061091591906143be565b612467565b005b34801561092857600080fd5b506109316125e8565b60405161093e9190614cbf565b60405180910390f35b34801561095357600080fd5b5061096e6004803603810190610969919061433b565b6125fb565b005b34801561097c57600080fd5b5061099760048036038101906109929190614577565b61265d565b005b3480156109a557600080fd5b506109c060048036038101906109bb9190614577565b6126e3565b6040516109cd9190614cda565b60405180910390f35b3480156109e257600080fd5b506109eb61278b565b6040516109f8919061515c565b60405180910390f35b348015610a0d57600080fd5b50610a286004803603810190610a23919061448b565b612791565b005b610a446004803603810190610a3f9190614577565b612a39565b005b348015610a5257600080fd5b50610a5b612c9a565b604051610a689190614cbf565b60405180910390f35b348015610a7d57600080fd5b50610a86612cad565b604051610a93919061515c565b60405180910390f35b348015610aa857600080fd5b50610ab1612cb3565b604051610abe919061515c565b60405180910390f35b348015610ad357600080fd5b50610adc612cb9565b005b348015610aea57600080fd5b50610b056004803603810190610b0091906145a4565b612e06565b005b348015610b1357600080fd5b50610b1c612f2d565b604051610b29919061515c565b60405180910390f35b348015610b3e57600080fd5b50610b47612f33565b604051610b549190614c58565b60405180910390f35b348015610b6957600080fd5b50610b846004803603810190610b7f919061443e565b612f59565b005b348015610b9257600080fd5b50610b9b612ff9565b604051610ba89190614c58565b60405180910390f35b348015610bbd57600080fd5b50610bd86004803603810190610bd391906142a8565b61301f565b604051610be59190614cbf565b60405180910390f35b348015610bfa57600080fd5b50610c036130b3565b604051610c10919061515c565b60405180910390f35b348015610c2557600080fd5b50610c406004803603810190610c3b919061424e565b6130b9565b005b348015610c4e57600080fd5b50610c576131b1565b604051610c649190614c58565b60405180910390f35b348015610c7957600080fd5b50610c826131d7565b604051610c8f9190614c58565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d6357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d735750610d72826131fd565b5b9050919050565b606060018054610d8990615458565b80601f0160208091040260200160405190810160405280929190818152602001828054610db590615458565b8015610e025780601f10610dd757610100808354040283529160200191610e02565b820191906000526020600020905b815481529060010190602001808311610de557829003601f168201915b5050505050905090565b6000610e1782613267565b610e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4d90614f5c565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e9c82611d12565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f049061503c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f2c6132d3565b73ffffffffffffffffffffffffffffffffffffffff161480610f5b5750610f5a81610f556132d3565b61301f565b5b610f9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9190614e7c565b60405180910390fd5b610fa483836132db565b505050565b601260009054906101000a900460ff1681565b610fc46132d3565b73ffffffffffffffffffffffffffffffffffffffff16610fe2612186565b73ffffffffffffffffffffffffffffffffffffffff1614611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f90614f9c565b60405180910390fd5b8060078190555050565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6110796110736132d3565b82613394565b6110b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110af9061509c565b60405180910390fd5b6110c3838383613472565b505050565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601260019054906101000a900460ff1681565b6111096132d3565b73ffffffffffffffffffffffffffffffffffffffff16611127612186565b73ffffffffffffffffffffffffffffffffffffffff161461117d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117490614f9c565b60405180910390fd5b600047116111c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b790614f3c565b60405180910390fd5b60004790506000601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661122961271061121b6106c6866136ce90919063ffffffff16565b6136e490919063ffffffff16565b60405161123590614c43565b60006040518083038185875af1925050503d8060008114611272576040519150601f19603f3d011682016040523d82523d6000602084013e611277565b606091505b505090506000601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166112df6127106112d16106c6876136ce90919063ffffffff16565b6136e490919063ffffffff16565b6040516112eb90614c43565b60006040518083038185875af1925050503d8060008114611328576040519150601f19603f3d011682016040523d82523d6000602084013e61132d565b606091505b505090506000601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166113956127106113876106c6886136ce90919063ffffffff16565b6136e490919063ffffffff16565b6040516113a190614c43565b60006040518083038185875af1925050503d80600081146113de576040519150601f19603f3d011682016040523d82523d6000602084013e6113e3565b606091505b505090506000601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611449606461143b600b896136ce90919063ffffffff16565b6136e490919063ffffffff16565b60405161145590614c43565b60006040518083038185875af1925050503d8060008114611492576040519150601f19603f3d011682016040523d82523d6000602084013e611497565b606091505b505090506000601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166114fe6103e86114f0600f8a6136ce90919063ffffffff16565b6136e490919063ffffffff16565b60405161150a90614c43565b60006040518083038185875af1925050503d8060008114611547576040519150601f19603f3d011682016040523d82523d6000602084013e61154c565b606091505b505090506000601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166115b260646115a460038b6136ce90919063ffffffff16565b6136e490919063ffffffff16565b6040516115be90614c43565b60006040518083038185875af1925050503d80600081146115fb576040519150601f19603f3d011682016040523d82523d6000602084013e611600565b606091505b505090506000601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166116676103e861165960af8c6136ce90919063ffffffff16565b6136e490919063ffffffff16565b60405161167390614c43565b60006040518083038185875af1925050503d80600081146116b0576040519150601f19603f3d011682016040523d82523d6000602084013e6116b5565b606091505b505090506000601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661171b606461170d60058d6136ce90919063ffffffff16565b6136e490919063ffffffff16565b60405161172790614c43565b60006040518083038185875af1925050503d8060008114611764576040519150601f19603f3d011682016040523d82523d6000602084013e611769565b606091505b505090506000601c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166117cf60646117c1600a8e6136ce90919063ffffffff16565b6136e490919063ffffffff16565b6040516117db90614c43565b60006040518083038185875af1925050503d8060008114611818576040519150601f19603f3d011682016040523d82523d6000602084013e61181d565b606091505b5050905088801561182b5750875b80156118345750865b801561183d5750855b80156118465750845b801561184f5750835b80156118585750825b80156118615750815b801561186a5750805b6118a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a0906150fc565b60405180910390fd5b50505050505050505050565b6118d0838383604051806020016040528060008152506125fb565b505050565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080600090505b60138054905081101561199f578273ffffffffffffffffffffffffffffffffffffffff166013828154811061193b5761193a6155c2565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561198c5760019150506119a5565b8080611997906154bb565b915050611903565b50600090505b919050565b600b5481565b6119b86132d3565b73ffffffffffffffffffffffffffffffffffffffff166119d6612186565b73ffffffffffffffffffffffffffffffffffffffff1614611a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2390614f9c565b60405180910390fd5b60004711611a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6690614e1c565b60405180910390fd5b6000601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16680246ddf97976680000604051611ac090614c43565b60006040518083038185875af1925050503d8060008114611afd576040519150601f19603f3d011682016040523d82523d6000602084013e611b02565b606091505b5050905080611b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3d906150dc565b60405180910390fd5b50565b601260019054906101000a900460ff16611b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8f90614dfc565b60405180910390fd5b600f54811115611bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd49061507c565b60405180910390fd5b611bf2816009546136ce90919063ffffffff16565b341015611c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2b90614efc565b60405180910390fd5b600a54611c4c82600c546136fa90919063ffffffff16565b1115611c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8490614fbc565b60405180910390fd5b6000600c54905060005b82811015611ce757600182611cac919061528d565b9150611cc46001600c546136fa90919063ffffffff16565b600c81905550611cd43383613710565b8080611cdf906154bb565b915050611c97565b505050565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db290614edc565b60405180910390fd5b80915050919050565b60118054611dd190615458565b80601f0160208091040260200160405190810160405280929190818152602001828054611dfd90615458565b8015611e4a5780601f10611e1f57610100808354040283529160200191611e4a565b820191906000526020600020905b815481529060010190602001808311611e2d57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ec3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eba90614ebc565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611f126132d3565b73ffffffffffffffffffffffffffffffffffffffff16611f30612186565b73ffffffffffffffffffffffffffffffffffffffff1614611f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7d90614f9c565b60405180910390fd5b611f90600061372e565b565b600f5481565b611fa06132d3565b73ffffffffffffffffffffffffffffffffffffffff16611fbe612186565b73ffffffffffffffffffffffffffffffffffffffff1614612014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200b90614f9c565b60405180910390fd5b600a5461202c82600c546136fa90919063ffffffff16565b111561206d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206490614fbc565b60405180910390fd5b600e5461208582600d546136fa90919063ffffffff16565b11156120c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120bd90614e5c565b60405180910390fd5b6000600c54905060005b8281101561213c576001826120e5919061528d565b91506120fd6001600c546136fa90919063ffffffff16565b600c819055506121196001600d546136fa90919063ffffffff16565b600d819055506121293383613710565b8080612134906154bb565b9150506120d0565b505050565b60105481565b6013818154811061215757600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6121b76132d3565b73ffffffffffffffffffffffffffffffffffffffff166121d5612186565b73ffffffffffffffffffffffffffffffffffffffff161461222b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222290614f9c565b60405180910390fd5b600081141561226357601260039054906101000a900460ff1615601260036101000a81548160ff02191690831515021790555061230a565b600181141561229b57601260019054906101000a900460ff1615601260016101000a81548160ff021916908315150217905550612309565b60028114156122d357601260029054906101000a900460ff1615601260026101000a81548160ff021916908315150217905550612308565b600381141561230757601260009054906101000a900460ff1615601260006101000a81548160ff0219169083151502179055505b5b5b5b50565b6123156132d3565b73ffffffffffffffffffffffffffffffffffffffff16612333612186565b73ffffffffffffffffffffffffffffffffffffffff1614612389576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238090614f9c565b60405180910390fd5b806011908051906020019061239f929190613e98565b5050565b601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600280546123d890615458565b80601f016020809104026020016040519081016040528092919081815260200182805461240490615458565b80156124515780601f1061242657610100808354040283529160200191612451565b820191906000526020600020905b81548152906001019060200180831161243457829003601f168201915b5050505050905090565b60085481565b60095481565b61246f6132d3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d490614dbc565b60405180910390fd5b80600660006124ea6132d3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166125976132d3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125dc9190614cbf565b60405180910390a35050565b601260039054906101000a900460ff1681565b61260c6126066132d3565b83613394565b61264b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126429061509c565b60405180910390fd5b612657848484846137f2565b50505050565b6126656132d3565b73ffffffffffffffffffffffffffffffffffffffff16612683612186565b73ffffffffffffffffffffffffffffffffffffffff16146126d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d090614f9c565b60405180910390fd5b8060088190555050565b60606126ee82613267565b61272d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272490614f7c565b60405180910390fd5b60006011805461273c90615458565b9050116127585760405180602001604052806000815250612784565b60116127638361384e565b604051602001612774929190614c1f565b6040516020818303038152906040525b9050919050565b600e5481565b8060005b81518110156128c1573373ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff16636352211e8484815181106127e4576127e36155c2565b5b60200260200101516040518263ffffffff1660e01b8152600401612808919061515c565b60206040518083038186803b15801561282057600080fd5b505afa158015612834573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612858919061427b565b73ffffffffffffffffffffffffffffffffffffffff16146128ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a59061501c565b60405180910390fd5b80806128b9906154bb565b915050612795565b50600060075411612907576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fe90614e9c565b60405180910390fd5b601260009054906101000a900460ff16612956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294d906150bc565b60405180910390fd5b60028251101561299b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299290614fdc565b60405180910390fd5b60005b82518110156129dd576129ca8382815181106129bd576129bc6155c2565b5b60200260200101516139af565b80806129d5906154bb565b91505061299e565b50600060085490506001816129f2919061528d565b9050612a0a60016008546136fa90919063ffffffff16565b600881905550612a1a3382613710565b600160076000828254612a2d919061536e565b92505081905550505050565b601260039054906101000a900460ff16612a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7f90614d3c565b60405180910390fd5b601054811115612acd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac49061507c565b60405180910390fd5b612ae2816009546136ce90919063ffffffff16565b341015612b24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1b90614efc565b60405180910390fd5b600b54612b3c82600c546136fa90919063ffffffff16565b1115612b7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b749061513c565b60405180910390fd5b601260029054906101000a900460ff16612bf2576000600c54905060005b82811015612beb57600182612bb0919061528d565b9150612bc86001600c546136fa90919063ffffffff16565b600c81905550612bd83383613710565b8080612be3906154bb565b915050612b9b565b5050612c97565b612bfb336118fb565b612c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3190614e3c565b60405180910390fd5b6000600c54905060005b82811015612c9457600182612c59919061528d565b9150612c716001600c546136fa90919063ffffffff16565b600c81905550612c813383613710565b8080612c8c906154bb565b915050612c44565b50505b50565b601260029054906101000a900460ff1681565b600d5481565b600a5481565b612cc16132d3565b73ffffffffffffffffffffffffffffffffffffffff16612cdf612186565b73ffffffffffffffffffffffffffffffffffffffff1614612d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2c90614f9c565b60405180910390fd5b6000601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612d7d90614c43565b60006040518083038185875af1925050503d8060008114612dba576040519150601f19603f3d011682016040523d82523d6000602084013e612dbf565b606091505b5050905080612e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dfa9061505c565b60405180910390fd5b50565b612e0e6132d3565b73ffffffffffffffffffffffffffffffffffffffff16612e2c612186565b73ffffffffffffffffffffffffffffffffffffffff1614612e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7990614f9c565b60405180910390fd5b6000811415612edc57600c54821015612ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ec790614d7c565b60405180910390fd5b81600a81905550612f29565b600b54821015612f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f189061511c565b60405180910390fd5b81600b819055505b5050565b60075481565b601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612f616132d3565b73ffffffffffffffffffffffffffffffffffffffff16612f7f612186565b73ffffffffffffffffffffffffffffffffffffffff1614612fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fcc90614f9c565b60405180910390fd5b60136000612fe39190613f1e565b818160139190612ff4929190613f3f565b505050565b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c5481565b6130c16132d3565b73ffffffffffffffffffffffffffffffffffffffff166130df612186565b73ffffffffffffffffffffffffffffffffffffffff1614613135576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312c90614f9c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156131a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161319c90614d1c565b60405180910390fd5b6131ae8161372e565b50565b601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661334e83611d12565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061339f82613267565b6133de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133d590614ddc565b60405180910390fd5b60006133e983611d12565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061345857508373ffffffffffffffffffffffffffffffffffffffff1661344084610e0c565b73ffffffffffffffffffffffffffffffffffffffff16145b806134695750613468818561301f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661349282611d12565b73ffffffffffffffffffffffffffffffffffffffff16146134e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134df90614ffc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613558576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161354f90614d9c565b60405180910390fd5b613563838383613ac0565b61356e6000826132db565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135be919061536e565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613615919061528d565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081836136dc9190615314565b905092915050565b600081836136f291906152e3565b905092915050565b60008183613708919061528d565b905092915050565b61372a828260405180602001604052806000815250613ac5565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6137fd848484613472565b61380984848484613b20565b613848576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161383f90614cfc565b60405180910390fd5b50505050565b60606000821415613896576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506139aa565b600082905060005b600082146138c85780806138b1906154bb565b915050600a826138c191906152e3565b915061389e565b60008167ffffffffffffffff8111156138e4576138e36155f1565b5b6040519080825280601f01601f1916602001820160405280156139165781602001600182028036833780820191505090505b5090505b600085146139a35760018261392f919061536e565b9150600a8561393e9190615504565b603061394a919061528d565b60f81b8183815181106139605761395f6155c2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561399c91906152e3565b945061391a565b8093505050505b919050565b60006139ba82611d12565b90506139c881600084613ac0565b6139d36000836132db565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613a23919061536e565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b613acf8383613cb7565b613adc6000848484613b20565b613b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b1290614cfc565b60405180910390fd5b505050565b6000613b418473ffffffffffffffffffffffffffffffffffffffff16613e85565b15613caa578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613b6a6132d3565b8786866040518563ffffffff1660e01b8152600401613b8c9493929190614c73565b602060405180830381600087803b158015613ba657600080fd5b505af1925050508015613bd757506040513d601f19601f82011682018060405250810190613bd49190614501565b60015b613c5a573d8060008114613c07576040519150601f19603f3d011682016040523d82523d6000602084013e613c0c565b606091505b50600081511415613c52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c4990614cfc565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613caf565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d1e90614f1c565b60405180910390fd5b613d3081613267565b15613d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d6790614d5c565b60405180910390fd5b613d7c60008383613ac0565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613dcc919061528d565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613ea490615458565b90600052602060002090601f016020900481019282613ec65760008555613f0d565b82601f10613edf57805160ff1916838001178555613f0d565b82800160010185558215613f0d579182015b82811115613f0c578251825591602001919060010190613ef1565b5b509050613f1a9190613fdf565b5090565b5080546000825590600052602060002090810190613f3c9190613fdf565b50565b828054828255906000526020600020908101928215613fce579160200282015b82811115613fcd57823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190613f5f565b5b509050613fdb9190613fdf565b5090565b5b80821115613ff8576000816000905550600101613fe0565b5090565b600061400f61400a8461519c565b615177565b905080838252602082019050828560208602820111156140325761403161562a565b5b60005b8581101561406257816140488882614239565b845260208401935060208301925050600181019050614035565b5050509392505050565b600061407f61407a846151c8565b615177565b90508281526020810184848401111561409b5761409a61562f565b5b6140a6848285615416565b509392505050565b60006140c16140bc846151f9565b615177565b9050828152602081018484840111156140dd576140dc61562f565b5b6140e8848285615416565b509392505050565b6000813590506140ff81615f0b565b92915050565b60008151905061411481615f0b565b92915050565b60008083601f8401126141305761412f615625565b5b8235905067ffffffffffffffff81111561414d5761414c615620565b5b6020830191508360208202830111156141695761416861562a565b5b9250929050565b600082601f83011261418557614184615625565b5b8135614195848260208601613ffc565b91505092915050565b6000813590506141ad81615f22565b92915050565b6000813590506141c281615f39565b92915050565b6000815190506141d781615f39565b92915050565b600082601f8301126141f2576141f1615625565b5b813561420284826020860161406c565b91505092915050565b600082601f8301126142205761421f615625565b5b81356142308482602086016140ae565b91505092915050565b60008135905061424881615f50565b92915050565b60006020828403121561426457614263615639565b5b6000614272848285016140f0565b91505092915050565b60006020828403121561429157614290615639565b5b600061429f84828501614105565b91505092915050565b600080604083850312156142bf576142be615639565b5b60006142cd858286016140f0565b92505060206142de858286016140f0565b9150509250929050565b60008060006060848603121561430157614300615639565b5b600061430f868287016140f0565b9350506020614320868287016140f0565b925050604061433186828701614239565b9150509250925092565b6000806000806080858703121561435557614354615639565b5b6000614363878288016140f0565b9450506020614374878288016140f0565b935050604061438587828801614239565b925050606085013567ffffffffffffffff8111156143a6576143a5615634565b5b6143b2878288016141dd565b91505092959194509250565b600080604083850312156143d5576143d4615639565b5b60006143e3858286016140f0565b92505060206143f48582860161419e565b9150509250929050565b6000806040838503121561441557614414615639565b5b6000614423858286016140f0565b925050602061443485828601614239565b9150509250929050565b6000806020838503121561445557614454615639565b5b600083013567ffffffffffffffff81111561447357614472615634565b5b61447f8582860161411a565b92509250509250929050565b6000602082840312156144a1576144a0615639565b5b600082013567ffffffffffffffff8111156144bf576144be615634565b5b6144cb84828501614170565b91505092915050565b6000602082840312156144ea576144e9615639565b5b60006144f8848285016141b3565b91505092915050565b60006020828403121561451757614516615639565b5b6000614525848285016141c8565b91505092915050565b60006020828403121561454457614543615639565b5b600082013567ffffffffffffffff81111561456257614561615634565b5b61456e8482850161420b565b91505092915050565b60006020828403121561458d5761458c615639565b5b600061459b84828501614239565b91505092915050565b600080604083850312156145bb576145ba615639565b5b60006145c985828601614239565b92505060206145da85828601614239565b9150509250929050565b6145ed816153a2565b82525050565b6145fc816153b4565b82525050565b600061460d8261523f565b6146178185615255565b9350614627818560208601615425565b6146308161563e565b840191505092915050565b60006146468261524a565b6146508185615271565b9350614660818560208601615425565b6146698161563e565b840191505092915050565b600061467f8261524a565b6146898185615282565b9350614699818560208601615425565b80840191505092915050565b600081546146b281615458565b6146bc8186615282565b945060018216600081146146d757600181146146e85761471b565b60ff1983168652818601935061471b565b6146f18561522a565b60005b83811015614713578154818901526001820191506020810190506146f4565b838801955050505b50505092915050565b6000614731603283615271565b915061473c8261564f565b604082019050919050565b6000614754602683615271565b915061475f8261569e565b604082019050919050565b6000614777602d83615271565b9150614782826156ed565b604082019050919050565b600061479a601c83615271565b91506147a58261573c565b602082019050919050565b60006147bd601e83615271565b91506147c882615765565b602082019050919050565b60006147e0602483615271565b91506147eb8261578e565b604082019050919050565b6000614803601983615271565b915061480e826157dd565b602082019050919050565b6000614826602c83615271565b915061483182615806565b604082019050919050565b6000614849602e83615271565b915061485482615855565b604082019050919050565b600061486c600e83615271565b9150614877826158a4565b602082019050919050565b600061488f600e83615271565b915061489a826158cd565b602082019050919050565b60006148b2604783615271565b91506148bd826158f6565b606082019050919050565b60006148d5603883615271565b91506148e08261596b565b604082019050919050565b60006148f8600e83615271565b9150614903826159ba565b602082019050919050565b600061491b602a83615271565b9150614926826159e3565b604082019050919050565b600061493e602983615271565b915061494982615a32565b604082019050919050565b6000614961603483615271565b915061496c82615a81565b604082019050919050565b6000614984602083615271565b915061498f82615ad0565b602082019050919050565b60006149a7600483615271565b91506149b282615af9565b602082019050919050565b60006149ca602c83615271565b91506149d582615b22565b604082019050919050565b60006149ed601183615271565b91506149f882615b71565b602082019050919050565b6000614a10602083615271565b9150614a1b82615b9a565b602082019050919050565b6000614a33601c83615271565b9150614a3e82615bc3565b602082019050919050565b6000614a56602483615271565b9150614a6182615bec565b604082019050919050565b6000614a79602983615271565b9150614a8482615c3b565b604082019050919050565b6000614a9c601383615271565b9150614aa782615c8a565b602082019050919050565b6000614abf602183615271565b9150614aca82615cb3565b604082019050919050565b6000614ae2600083615266565b9150614aed82615d02565b600082019050919050565b6000614b05600e83615271565b9150614b1082615d05565b602082019050919050565b6000614b28602c83615271565b9150614b3382615d2e565b604082019050919050565b6000614b4b603183615271565b9150614b5682615d7d565b604082019050919050565b6000614b6e601383615271565b9150614b7982615dcc565b602082019050919050565b6000614b91602483615271565b9150614b9c82615df5565b604082019050919050565b6000614bb4601a83615271565b9150614bbf82615e44565b602082019050919050565b6000614bd7602683615271565b9150614be282615e6d565b604082019050919050565b6000614bfa602883615271565b9150614c0582615ebc565b604082019050919050565b614c198161540c565b82525050565b6000614c2b82856146a5565b9150614c378284614674565b91508190509392505050565b6000614c4e82614ad5565b9150819050919050565b6000602082019050614c6d60008301846145e4565b92915050565b6000608082019050614c8860008301876145e4565b614c9560208301866145e4565b614ca26040830185614c10565b8181036060830152614cb48184614602565b905095945050505050565b6000602082019050614cd460008301846145f3565b92915050565b60006020820190508181036000830152614cf4818461463b565b905092915050565b60006020820190508181036000830152614d1581614724565b9050919050565b60006020820190508181036000830152614d3581614747565b9050919050565b60006020820190508181036000830152614d558161476a565b9050919050565b60006020820190508181036000830152614d758161478d565b9050919050565b60006020820190508181036000830152614d95816147b0565b9050919050565b60006020820190508181036000830152614db5816147d3565b9050919050565b60006020820190508181036000830152614dd5816147f6565b9050919050565b60006020820190508181036000830152614df581614819565b9050919050565b60006020820190508181036000830152614e158161483c565b9050919050565b60006020820190508181036000830152614e358161485f565b9050919050565b60006020820190508181036000830152614e5581614882565b9050919050565b60006020820190508181036000830152614e75816148a5565b9050919050565b60006020820190508181036000830152614e95816148c8565b9050919050565b60006020820190508181036000830152614eb5816148eb565b9050919050565b60006020820190508181036000830152614ed58161490e565b9050919050565b60006020820190508181036000830152614ef581614931565b9050919050565b60006020820190508181036000830152614f1581614954565b9050919050565b60006020820190508181036000830152614f3581614977565b9050919050565b60006020820190508181036000830152614f558161499a565b9050919050565b60006020820190508181036000830152614f75816149bd565b9050919050565b60006020820190508181036000830152614f95816149e0565b9050919050565b60006020820190508181036000830152614fb581614a03565b9050919050565b60006020820190508181036000830152614fd581614a26565b9050919050565b60006020820190508181036000830152614ff581614a49565b9050919050565b6000602082019050818103600083015261501581614a6c565b9050919050565b6000602082019050818103600083015261503581614a8f565b9050919050565b6000602082019050818103600083015261505581614ab2565b9050919050565b6000602082019050818103600083015261507581614af8565b9050919050565b6000602082019050818103600083015261509581614b1b565b9050919050565b600060208201905081810360008301526150b581614b3e565b9050919050565b600060208201905081810360008301526150d581614b61565b9050919050565b600060208201905081810360008301526150f581614b84565b9050919050565b6000602082019050818103600083015261511581614ba7565b9050919050565b6000602082019050818103600083015261513581614bca565b9050919050565b6000602082019050818103600083015261515581614bed565b9050919050565b60006020820190506151716000830184614c10565b92915050565b6000615181615192565b905061518d828261548a565b919050565b6000604051905090565b600067ffffffffffffffff8211156151b7576151b66155f1565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156151e3576151e26155f1565b5b6151ec8261563e565b9050602081019050919050565b600067ffffffffffffffff821115615214576152136155f1565b5b61521d8261563e565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006152988261540c565b91506152a38361540c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156152d8576152d7615535565b5b828201905092915050565b60006152ee8261540c565b91506152f98361540c565b92508261530957615308615564565b5b828204905092915050565b600061531f8261540c565b915061532a8361540c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561536357615362615535565b5b828202905092915050565b60006153798261540c565b91506153848361540c565b92508282101561539757615396615535565b5b828203905092915050565b60006153ad826153ec565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015615443578082015181840152602081019050615428565b83811115615452576000848401525b50505050565b6000600282049050600182168061547057607f821691505b6020821081141561548457615483615593565b5b50919050565b6154938261563e565b810181811067ffffffffffffffff821117156154b2576154b16155f1565b5b80604052505050565b60006154c68261540c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156154f9576154f8615535565b5b600182019050919050565b600061550f8261540c565b915061551a8361540c565b92508261552a57615529615564565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f536c6f7720446f776e21205072652053616c652069736e277420617661696c6160008201527f626c65206a757374207965742e00000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4572726f72206368616e67696e6720547566662047757920416d6f756e740000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f536c6f7720446f776e21204d61696e2053616c652069736e277420617661696c60008201527f61626c65206a757374207965742e000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820657468000000000000000000000000000000000000600082015250565b7f4e6f7420696e2050726573616c65000000000000000000000000000000000000600082015250565b7f4e6f7420656e6f75676820547566662047757973206c65667420746f206d696e60008201527f7420666f722067697665617761797320616e6420636f6d6d756e69747920657660208201527f656e7473203a2800000000000000000000000000000000000000000000000000604082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4e6f20467573696f6e204c656674000000000000000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4f6f707321204c6f6f6b73206c696b65207765206469646e277420726563656960008201527f76652074686520726571756972652066756e6473000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4e6f6e6500000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f7420656e6f75676820547566662047757973206c656674203a2800000000600082015250565b7f576f61682e2050726f76696465206d6520736f6d65206d6f726520547566662060008201527f4775797300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f547566662047757973206e6f74206f776e656400000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f43616e2774205769746864726177000000000000000000000000000000000000600082015250565b7f576f616821204c6561766520736f6d6520547566664775797320666f7220746860008201527f652072657374206f662075730000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f467573696f6e73206e6f7420656e61626c656400000000000000000000000000600082015250565b7f576f616821204e6f7420656e6f7567682045544820696e2074686520636f6e7460008201527f7261637400000000000000000000000000000000000000000000000000000000602082015250565b7f5475666620477579205769746864726177616c204661696c6564000000000000600082015250565b7f4572726f72206368616e676564205072652053616c652054756666204775792060008201527f416d6f756e740000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820547566662047757973206c65667420666f7220707260008201527f6573616c65203a28000000000000000000000000000000000000000000000000602082015250565b615f14816153a2565b8114615f1f57600080fd5b50565b615f2b816153b4565b8114615f3657600080fd5b50565b615f42816153c0565b8114615f4d57600080fd5b50565b615f598161540c565b8114615f6457600080fd5b5056fea26469706673582212205a8063aa35f98e225d15d469adc68b4ace9cc92a06717f997484cd0f9e447da564736f6c63430008070033000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103505760003560e01c806394034b39116101c6578063d2e31447116100f7578063e6f1704511610095578063e9999ea81161006f578063e9999ea814610bee578063f2fde38b14610c19578063f5bb8cce14610c42578063fc05ce5514610c6d57610350565b8063e6f1704514610b5d578063e933beaa14610b86578063e985e9c514610bb157610350565b8063db2e21bc116100d1578063db2e21bc14610ac7578063db3e269b14610ade578063de33dfbe14610b07578063de61830614610b3257610350565b8063d2e3144714610a46578063d7be7e2f14610a71578063d93a9f4514610a9c57610350565b8063a739505611610164578063c87b56dd1161013e578063c87b56dd14610999578063ccaac9e9146109d6578063cf0b3f3814610a01578063d156393114610a2a57610350565b8063a73950561461091c578063b88d4fde14610947578063c8624b7b1461097057610350565b806395d89b41116101a057806395d89b41146108725780639c84cff61461089d578063a035b1fe146108c8578063a22cb465146108f357610350565b806394034b39146107f557806394df91991461081e57806395ae66111461084757610350565b806352ec383b116102a057806370a082311161023e57806381b9bb131161021857806381b9bb1314610739578063879ac1531461076257806388f9e8351461078d5780638da5cb5b146107ca57610350565b806370a08231146106ba578063715018a6146106f7578063780d64091461070e57610350565b80635e487f1c1161027a5780635e487f1c1461060b57806360334aa6146106275780636352211e146106525780636c0360eb1461068f57610350565b806352ec383b1461058c57806356e6bded146105c95780635d06c482146105f457610350565b80632381c76f1161030d57806337a50397116102e757806337a50397146104f65780633ccfd60b1461052157806342842e0e1461053857806347f1339e1461056157610350565b80632381c76f1461047757806323b872dd146104a25780632a95d6c7146104cb57610350565b806301ffc9a71461035557806306fdde0314610392578063081812fc146103bd578063095ea7b3146103fa5780630a036ef2146104235780631a2e50e11461044e575b600080fd5b34801561036157600080fd5b5061037c600480360381019061037791906144d4565b610c98565b6040516103899190614cbf565b60405180910390f35b34801561039e57600080fd5b506103a7610d7a565b6040516103b49190614cda565b60405180910390f35b3480156103c957600080fd5b506103e460048036038101906103df9190614577565b610e0c565b6040516103f19190614c58565b60405180910390f35b34801561040657600080fd5b50610421600480360381019061041c91906143fe565b610e91565b005b34801561042f57600080fd5b50610438610fa9565b6040516104459190614cbf565b60405180910390f35b34801561045a57600080fd5b5061047560048036038101906104709190614577565b610fbc565b005b34801561048357600080fd5b5061048c611042565b6040516104999190614c58565b60405180910390f35b3480156104ae57600080fd5b506104c960048036038101906104c491906142e8565b611068565b005b3480156104d757600080fd5b506104e06110c8565b6040516104ed9190614c58565b60405180910390f35b34801561050257600080fd5b5061050b6110ee565b6040516105189190614cbf565b60405180910390f35b34801561052d57600080fd5b50610536611101565b005b34801561054457600080fd5b5061055f600480360381019061055a91906142e8565b6118b5565b005b34801561056d57600080fd5b506105766118d5565b6040516105839190614c58565b60405180910390f35b34801561059857600080fd5b506105b360048036038101906105ae919061424e565b6118fb565b6040516105c09190614cbf565b60405180910390f35b3480156105d557600080fd5b506105de6119aa565b6040516105eb919061515c565b60405180910390f35b34801561060057600080fd5b506106096119b0565b005b61062560048036038101906106209190614577565b611b49565b005b34801561063357600080fd5b5061063c611cec565b6040516106499190614c58565b60405180910390f35b34801561065e57600080fd5b5061067960048036038101906106749190614577565b611d12565b6040516106869190614c58565b60405180910390f35b34801561069b57600080fd5b506106a4611dc4565b6040516106b19190614cda565b60405180910390f35b3480156106c657600080fd5b506106e160048036038101906106dc919061424e565b611e52565b6040516106ee919061515c565b60405180910390f35b34801561070357600080fd5b5061070c611f0a565b005b34801561071a57600080fd5b50610723611f92565b604051610730919061515c565b60405180910390f35b34801561074557600080fd5b50610760600480360381019061075b9190614577565b611f98565b005b34801561076e57600080fd5b50610777612141565b604051610784919061515c565b60405180910390f35b34801561079957600080fd5b506107b460048036038101906107af9190614577565b612147565b6040516107c19190614c58565b60405180910390f35b3480156107d657600080fd5b506107df612186565b6040516107ec9190614c58565b60405180910390f35b34801561080157600080fd5b5061081c60048036038101906108179190614577565b6121af565b005b34801561082a57600080fd5b506108456004803603810190610840919061452e565b61230d565b005b34801561085357600080fd5b5061085c6123a3565b6040516108699190614c58565b60405180910390f35b34801561087e57600080fd5b506108876123c9565b6040516108949190614cda565b60405180910390f35b3480156108a957600080fd5b506108b261245b565b6040516108bf919061515c565b60405180910390f35b3480156108d457600080fd5b506108dd612461565b6040516108ea919061515c565b60405180910390f35b3480156108ff57600080fd5b5061091a600480360381019061091591906143be565b612467565b005b34801561092857600080fd5b506109316125e8565b60405161093e9190614cbf565b60405180910390f35b34801561095357600080fd5b5061096e6004803603810190610969919061433b565b6125fb565b005b34801561097c57600080fd5b5061099760048036038101906109929190614577565b61265d565b005b3480156109a557600080fd5b506109c060048036038101906109bb9190614577565b6126e3565b6040516109cd9190614cda565b60405180910390f35b3480156109e257600080fd5b506109eb61278b565b6040516109f8919061515c565b60405180910390f35b348015610a0d57600080fd5b50610a286004803603810190610a23919061448b565b612791565b005b610a446004803603810190610a3f9190614577565b612a39565b005b348015610a5257600080fd5b50610a5b612c9a565b604051610a689190614cbf565b60405180910390f35b348015610a7d57600080fd5b50610a86612cad565b604051610a93919061515c565b60405180910390f35b348015610aa857600080fd5b50610ab1612cb3565b604051610abe919061515c565b60405180910390f35b348015610ad357600080fd5b50610adc612cb9565b005b348015610aea57600080fd5b50610b056004803603810190610b0091906145a4565b612e06565b005b348015610b1357600080fd5b50610b1c612f2d565b604051610b29919061515c565b60405180910390f35b348015610b3e57600080fd5b50610b47612f33565b604051610b549190614c58565b60405180910390f35b348015610b6957600080fd5b50610b846004803603810190610b7f919061443e565b612f59565b005b348015610b9257600080fd5b50610b9b612ff9565b604051610ba89190614c58565b60405180910390f35b348015610bbd57600080fd5b50610bd86004803603810190610bd391906142a8565b61301f565b604051610be59190614cbf565b60405180910390f35b348015610bfa57600080fd5b50610c036130b3565b604051610c10919061515c565b60405180910390f35b348015610c2557600080fd5b50610c406004803603810190610c3b919061424e565b6130b9565b005b348015610c4e57600080fd5b50610c576131b1565b604051610c649190614c58565b60405180910390f35b348015610c7957600080fd5b50610c826131d7565b604051610c8f9190614c58565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610d6357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610d735750610d72826131fd565b5b9050919050565b606060018054610d8990615458565b80601f0160208091040260200160405190810160405280929190818152602001828054610db590615458565b8015610e025780601f10610dd757610100808354040283529160200191610e02565b820191906000526020600020905b815481529060010190602001808311610de557829003601f168201915b5050505050905090565b6000610e1782613267565b610e56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4d90614f5c565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610e9c82611d12565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f049061503c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610f2c6132d3565b73ffffffffffffffffffffffffffffffffffffffff161480610f5b5750610f5a81610f556132d3565b61301f565b5b610f9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9190614e7c565b60405180910390fd5b610fa483836132db565b505050565b601260009054906101000a900460ff1681565b610fc46132d3565b73ffffffffffffffffffffffffffffffffffffffff16610fe2612186565b73ffffffffffffffffffffffffffffffffffffffff1614611038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102f90614f9c565b60405180910390fd5b8060078190555050565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6110796110736132d3565b82613394565b6110b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110af9061509c565b60405180910390fd5b6110c3838383613472565b505050565b601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601260019054906101000a900460ff1681565b6111096132d3565b73ffffffffffffffffffffffffffffffffffffffff16611127612186565b73ffffffffffffffffffffffffffffffffffffffff161461117d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117490614f9c565b60405180910390fd5b600047116111c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b790614f3c565b60405180910390fd5b60004790506000601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661122961271061121b6106c6866136ce90919063ffffffff16565b6136e490919063ffffffff16565b60405161123590614c43565b60006040518083038185875af1925050503d8060008114611272576040519150601f19603f3d011682016040523d82523d6000602084013e611277565b606091505b505090506000601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166112df6127106112d16106c6876136ce90919063ffffffff16565b6136e490919063ffffffff16565b6040516112eb90614c43565b60006040518083038185875af1925050503d8060008114611328576040519150601f19603f3d011682016040523d82523d6000602084013e61132d565b606091505b505090506000601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166113956127106113876106c6886136ce90919063ffffffff16565b6136e490919063ffffffff16565b6040516113a190614c43565b60006040518083038185875af1925050503d80600081146113de576040519150601f19603f3d011682016040523d82523d6000602084013e6113e3565b606091505b505090506000601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611449606461143b600b896136ce90919063ffffffff16565b6136e490919063ffffffff16565b60405161145590614c43565b60006040518083038185875af1925050503d8060008114611492576040519150601f19603f3d011682016040523d82523d6000602084013e611497565b606091505b505090506000601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166114fe6103e86114f0600f8a6136ce90919063ffffffff16565b6136e490919063ffffffff16565b60405161150a90614c43565b60006040518083038185875af1925050503d8060008114611547576040519150601f19603f3d011682016040523d82523d6000602084013e61154c565b606091505b505090506000601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166115b260646115a460038b6136ce90919063ffffffff16565b6136e490919063ffffffff16565b6040516115be90614c43565b60006040518083038185875af1925050503d80600081146115fb576040519150601f19603f3d011682016040523d82523d6000602084013e611600565b606091505b505090506000601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166116676103e861165960af8c6136ce90919063ffffffff16565b6136e490919063ffffffff16565b60405161167390614c43565b60006040518083038185875af1925050503d80600081146116b0576040519150601f19603f3d011682016040523d82523d6000602084013e6116b5565b606091505b505090506000601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1661171b606461170d60058d6136ce90919063ffffffff16565b6136e490919063ffffffff16565b60405161172790614c43565b60006040518083038185875af1925050503d8060008114611764576040519150601f19603f3d011682016040523d82523d6000602084013e611769565b606091505b505090506000601c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166117cf60646117c1600a8e6136ce90919063ffffffff16565b6136e490919063ffffffff16565b6040516117db90614c43565b60006040518083038185875af1925050503d8060008114611818576040519150601f19603f3d011682016040523d82523d6000602084013e61181d565b606091505b5050905088801561182b5750875b80156118345750865b801561183d5750855b80156118465750845b801561184f5750835b80156118585750825b80156118615750815b801561186a5750805b6118a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a0906150fc565b60405180910390fd5b50505050505050505050565b6118d0838383604051806020016040528060008152506125fb565b505050565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600080600090505b60138054905081101561199f578273ffffffffffffffffffffffffffffffffffffffff166013828154811061193b5761193a6155c2565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561198c5760019150506119a5565b8080611997906154bb565b915050611903565b50600090505b919050565b600b5481565b6119b86132d3565b73ffffffffffffffffffffffffffffffffffffffff166119d6612186565b73ffffffffffffffffffffffffffffffffffffffff1614611a2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2390614f9c565b60405180910390fd5b60004711611a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6690614e1c565b60405180910390fd5b6000601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16680246ddf97976680000604051611ac090614c43565b60006040518083038185875af1925050503d8060008114611afd576040519150601f19603f3d011682016040523d82523d6000602084013e611b02565b606091505b5050905080611b46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3d906150dc565b60405180910390fd5b50565b601260019054906101000a900460ff16611b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8f90614dfc565b60405180910390fd5b600f54811115611bdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd49061507c565b60405180910390fd5b611bf2816009546136ce90919063ffffffff16565b341015611c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2b90614efc565b60405180910390fd5b600a54611c4c82600c546136fa90919063ffffffff16565b1115611c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8490614fbc565b60405180910390fd5b6000600c54905060005b82811015611ce757600182611cac919061528d565b9150611cc46001600c546136fa90919063ffffffff16565b600c81905550611cd43383613710565b8080611cdf906154bb565b915050611c97565b505050565b601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db290614edc565b60405180910390fd5b80915050919050565b60118054611dd190615458565b80601f0160208091040260200160405190810160405280929190818152602001828054611dfd90615458565b8015611e4a5780601f10611e1f57610100808354040283529160200191611e4a565b820191906000526020600020905b815481529060010190602001808311611e2d57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ec3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eba90614ebc565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611f126132d3565b73ffffffffffffffffffffffffffffffffffffffff16611f30612186565b73ffffffffffffffffffffffffffffffffffffffff1614611f86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7d90614f9c565b60405180910390fd5b611f90600061372e565b565b600f5481565b611fa06132d3565b73ffffffffffffffffffffffffffffffffffffffff16611fbe612186565b73ffffffffffffffffffffffffffffffffffffffff1614612014576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161200b90614f9c565b60405180910390fd5b600a5461202c82600c546136fa90919063ffffffff16565b111561206d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206490614fbc565b60405180910390fd5b600e5461208582600d546136fa90919063ffffffff16565b11156120c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120bd90614e5c565b60405180910390fd5b6000600c54905060005b8281101561213c576001826120e5919061528d565b91506120fd6001600c546136fa90919063ffffffff16565b600c819055506121196001600d546136fa90919063ffffffff16565b600d819055506121293383613710565b8080612134906154bb565b9150506120d0565b505050565b60105481565b6013818154811061215757600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6121b76132d3565b73ffffffffffffffffffffffffffffffffffffffff166121d5612186565b73ffffffffffffffffffffffffffffffffffffffff161461222b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222290614f9c565b60405180910390fd5b600081141561226357601260039054906101000a900460ff1615601260036101000a81548160ff02191690831515021790555061230a565b600181141561229b57601260019054906101000a900460ff1615601260016101000a81548160ff021916908315150217905550612309565b60028114156122d357601260029054906101000a900460ff1615601260026101000a81548160ff021916908315150217905550612308565b600381141561230757601260009054906101000a900460ff1615601260006101000a81548160ff0219169083151502179055505b5b5b5b50565b6123156132d3565b73ffffffffffffffffffffffffffffffffffffffff16612333612186565b73ffffffffffffffffffffffffffffffffffffffff1614612389576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238090614f9c565b60405180910390fd5b806011908051906020019061239f929190613e98565b5050565b601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060600280546123d890615458565b80601f016020809104026020016040519081016040528092919081815260200182805461240490615458565b80156124515780601f1061242657610100808354040283529160200191612451565b820191906000526020600020905b81548152906001019060200180831161243457829003601f168201915b5050505050905090565b60085481565b60095481565b61246f6132d3565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124d490614dbc565b60405180910390fd5b80600660006124ea6132d3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166125976132d3565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125dc9190614cbf565b60405180910390a35050565b601260039054906101000a900460ff1681565b61260c6126066132d3565b83613394565b61264b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126429061509c565b60405180910390fd5b612657848484846137f2565b50505050565b6126656132d3565b73ffffffffffffffffffffffffffffffffffffffff16612683612186565b73ffffffffffffffffffffffffffffffffffffffff16146126d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d090614f9c565b60405180910390fd5b8060088190555050565b60606126ee82613267565b61272d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161272490614f7c565b60405180910390fd5b60006011805461273c90615458565b9050116127585760405180602001604052806000815250612784565b60116127638361384e565b604051602001612774929190614c1f565b6040516020818303038152906040525b9050919050565b600e5481565b8060005b81518110156128c1573373ffffffffffffffffffffffffffffffffffffffff163073ffffffffffffffffffffffffffffffffffffffff16636352211e8484815181106127e4576127e36155c2565b5b60200260200101516040518263ffffffff1660e01b8152600401612808919061515c565b60206040518083038186803b15801561282057600080fd5b505afa158015612834573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612858919061427b565b73ffffffffffffffffffffffffffffffffffffffff16146128ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128a59061501c565b60405180910390fd5b80806128b9906154bb565b915050612795565b50600060075411612907576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128fe90614e9c565b60405180910390fd5b601260009054906101000a900460ff16612956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161294d906150bc565b60405180910390fd5b60028251101561299b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299290614fdc565b60405180910390fd5b60005b82518110156129dd576129ca8382815181106129bd576129bc6155c2565b5b60200260200101516139af565b80806129d5906154bb565b91505061299e565b50600060085490506001816129f2919061528d565b9050612a0a60016008546136fa90919063ffffffff16565b600881905550612a1a3382613710565b600160076000828254612a2d919061536e565b92505081905550505050565b601260039054906101000a900460ff16612a88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a7f90614d3c565b60405180910390fd5b601054811115612acd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac49061507c565b60405180910390fd5b612ae2816009546136ce90919063ffffffff16565b341015612b24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b1b90614efc565b60405180910390fd5b600b54612b3c82600c546136fa90919063ffffffff16565b1115612b7d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b749061513c565b60405180910390fd5b601260029054906101000a900460ff16612bf2576000600c54905060005b82811015612beb57600182612bb0919061528d565b9150612bc86001600c546136fa90919063ffffffff16565b600c81905550612bd83383613710565b8080612be3906154bb565b915050612b9b565b5050612c97565b612bfb336118fb565b612c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3190614e3c565b60405180910390fd5b6000600c54905060005b82811015612c9457600182612c59919061528d565b9150612c716001600c546136fa90919063ffffffff16565b600c81905550612c813383613710565b8080612c8c906154bb565b915050612c44565b50505b50565b601260029054906101000a900460ff1681565b600d5481565b600a5481565b612cc16132d3565b73ffffffffffffffffffffffffffffffffffffffff16612cdf612186565b73ffffffffffffffffffffffffffffffffffffffff1614612d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d2c90614f9c565b60405180910390fd5b6000601a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051612d7d90614c43565b60006040518083038185875af1925050503d8060008114612dba576040519150601f19603f3d011682016040523d82523d6000602084013e612dbf565b606091505b5050905080612e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dfa9061505c565b60405180910390fd5b50565b612e0e6132d3565b73ffffffffffffffffffffffffffffffffffffffff16612e2c612186565b73ffffffffffffffffffffffffffffffffffffffff1614612e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7990614f9c565b60405180910390fd5b6000811415612edc57600c54821015612ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ec790614d7c565b60405180910390fd5b81600a81905550612f29565b600b54821015612f21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f189061511c565b60405180910390fd5b81600b819055505b5050565b60075481565b601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b612f616132d3565b73ffffffffffffffffffffffffffffffffffffffff16612f7f612186565b73ffffffffffffffffffffffffffffffffffffffff1614612fd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fcc90614f9c565b60405180910390fd5b60136000612fe39190613f1e565b818160139190612ff4929190613f3f565b505050565b601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600c5481565b6130c16132d3565b73ffffffffffffffffffffffffffffffffffffffff166130df612186565b73ffffffffffffffffffffffffffffffffffffffff1614613135576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312c90614f9c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156131a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161319c90614d1c565b60405180910390fd5b6131ae8161372e565b50565b601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661334e83611d12565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061339f82613267565b6133de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133d590614ddc565b60405180910390fd5b60006133e983611d12565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061345857508373ffffffffffffffffffffffffffffffffffffffff1661344084610e0c565b73ffffffffffffffffffffffffffffffffffffffff16145b806134695750613468818561301f565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661349282611d12565b73ffffffffffffffffffffffffffffffffffffffff16146134e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134df90614ffc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613558576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161354f90614d9c565b60405180910390fd5b613563838383613ac0565b61356e6000826132db565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135be919061536e565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613615919061528d565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600081836136dc9190615314565b905092915050565b600081836136f291906152e3565b905092915050565b60008183613708919061528d565b905092915050565b61372a828260405180602001604052806000815250613ac5565b5050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6137fd848484613472565b61380984848484613b20565b613848576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161383f90614cfc565b60405180910390fd5b50505050565b60606000821415613896576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506139aa565b600082905060005b600082146138c85780806138b1906154bb565b915050600a826138c191906152e3565b915061389e565b60008167ffffffffffffffff8111156138e4576138e36155f1565b5b6040519080825280601f01601f1916602001820160405280156139165781602001600182028036833780820191505090505b5090505b600085146139a35760018261392f919061536e565b9150600a8561393e9190615504565b603061394a919061528d565b60f81b8183815181106139605761395f6155c2565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561399c91906152e3565b945061391a565b8093505050505b919050565b60006139ba82611d12565b90506139c881600084613ac0565b6139d36000836132db565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613a23919061536e565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b613acf8383613cb7565b613adc6000848484613b20565b613b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b1290614cfc565b60405180910390fd5b505050565b6000613b418473ffffffffffffffffffffffffffffffffffffffff16613e85565b15613caa578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613b6a6132d3565b8786866040518563ffffffff1660e01b8152600401613b8c9493929190614c73565b602060405180830381600087803b158015613ba657600080fd5b505af1925050508015613bd757506040513d601f19601f82011682018060405250810190613bd49190614501565b60015b613c5a573d8060008114613c07576040519150601f19603f3d011682016040523d82523d6000602084013e613c0c565b606091505b50600081511415613c52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c4990614cfc565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613caf565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d1e90614f1c565b60405180910390fd5b613d3081613267565b15613d70576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d6790614d5c565b60405180910390fd5b613d7c60008383613ac0565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613dcc919061528d565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613ea490615458565b90600052602060002090601f016020900481019282613ec65760008555613f0d565b82601f10613edf57805160ff1916838001178555613f0d565b82800160010185558215613f0d579182015b82811115613f0c578251825591602001919060010190613ef1565b5b509050613f1a9190613fdf565b5090565b5080546000825590600052602060002090810190613f3c9190613fdf565b50565b828054828255906000526020600020908101928215613fce579160200282015b82811115613fcd57823573ffffffffffffffffffffffffffffffffffffffff168260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190613f5f565b5b509050613fdb9190613fdf565b5090565b5b80821115613ff8576000816000905550600101613fe0565b5090565b600061400f61400a8461519c565b615177565b905080838252602082019050828560208602820111156140325761403161562a565b5b60005b8581101561406257816140488882614239565b845260208401935060208301925050600181019050614035565b5050509392505050565b600061407f61407a846151c8565b615177565b90508281526020810184848401111561409b5761409a61562f565b5b6140a6848285615416565b509392505050565b60006140c16140bc846151f9565b615177565b9050828152602081018484840111156140dd576140dc61562f565b5b6140e8848285615416565b509392505050565b6000813590506140ff81615f0b565b92915050565b60008151905061411481615f0b565b92915050565b60008083601f8401126141305761412f615625565b5b8235905067ffffffffffffffff81111561414d5761414c615620565b5b6020830191508360208202830111156141695761416861562a565b5b9250929050565b600082601f83011261418557614184615625565b5b8135614195848260208601613ffc565b91505092915050565b6000813590506141ad81615f22565b92915050565b6000813590506141c281615f39565b92915050565b6000815190506141d781615f39565b92915050565b600082601f8301126141f2576141f1615625565b5b813561420284826020860161406c565b91505092915050565b600082601f8301126142205761421f615625565b5b81356142308482602086016140ae565b91505092915050565b60008135905061424881615f50565b92915050565b60006020828403121561426457614263615639565b5b6000614272848285016140f0565b91505092915050565b60006020828403121561429157614290615639565b5b600061429f84828501614105565b91505092915050565b600080604083850312156142bf576142be615639565b5b60006142cd858286016140f0565b92505060206142de858286016140f0565b9150509250929050565b60008060006060848603121561430157614300615639565b5b600061430f868287016140f0565b9350506020614320868287016140f0565b925050604061433186828701614239565b9150509250925092565b6000806000806080858703121561435557614354615639565b5b6000614363878288016140f0565b9450506020614374878288016140f0565b935050604061438587828801614239565b925050606085013567ffffffffffffffff8111156143a6576143a5615634565b5b6143b2878288016141dd565b91505092959194509250565b600080604083850312156143d5576143d4615639565b5b60006143e3858286016140f0565b92505060206143f48582860161419e565b9150509250929050565b6000806040838503121561441557614414615639565b5b6000614423858286016140f0565b925050602061443485828601614239565b9150509250929050565b6000806020838503121561445557614454615639565b5b600083013567ffffffffffffffff81111561447357614472615634565b5b61447f8582860161411a565b92509250509250929050565b6000602082840312156144a1576144a0615639565b5b600082013567ffffffffffffffff8111156144bf576144be615634565b5b6144cb84828501614170565b91505092915050565b6000602082840312156144ea576144e9615639565b5b60006144f8848285016141b3565b91505092915050565b60006020828403121561451757614516615639565b5b6000614525848285016141c8565b91505092915050565b60006020828403121561454457614543615639565b5b600082013567ffffffffffffffff81111561456257614561615634565b5b61456e8482850161420b565b91505092915050565b60006020828403121561458d5761458c615639565b5b600061459b84828501614239565b91505092915050565b600080604083850312156145bb576145ba615639565b5b60006145c985828601614239565b92505060206145da85828601614239565b9150509250929050565b6145ed816153a2565b82525050565b6145fc816153b4565b82525050565b600061460d8261523f565b6146178185615255565b9350614627818560208601615425565b6146308161563e565b840191505092915050565b60006146468261524a565b6146508185615271565b9350614660818560208601615425565b6146698161563e565b840191505092915050565b600061467f8261524a565b6146898185615282565b9350614699818560208601615425565b80840191505092915050565b600081546146b281615458565b6146bc8186615282565b945060018216600081146146d757600181146146e85761471b565b60ff1983168652818601935061471b565b6146f18561522a565b60005b83811015614713578154818901526001820191506020810190506146f4565b838801955050505b50505092915050565b6000614731603283615271565b915061473c8261564f565b604082019050919050565b6000614754602683615271565b915061475f8261569e565b604082019050919050565b6000614777602d83615271565b9150614782826156ed565b604082019050919050565b600061479a601c83615271565b91506147a58261573c565b602082019050919050565b60006147bd601e83615271565b91506147c882615765565b602082019050919050565b60006147e0602483615271565b91506147eb8261578e565b604082019050919050565b6000614803601983615271565b915061480e826157dd565b602082019050919050565b6000614826602c83615271565b915061483182615806565b604082019050919050565b6000614849602e83615271565b915061485482615855565b604082019050919050565b600061486c600e83615271565b9150614877826158a4565b602082019050919050565b600061488f600e83615271565b915061489a826158cd565b602082019050919050565b60006148b2604783615271565b91506148bd826158f6565b606082019050919050565b60006148d5603883615271565b91506148e08261596b565b604082019050919050565b60006148f8600e83615271565b9150614903826159ba565b602082019050919050565b600061491b602a83615271565b9150614926826159e3565b604082019050919050565b600061493e602983615271565b915061494982615a32565b604082019050919050565b6000614961603483615271565b915061496c82615a81565b604082019050919050565b6000614984602083615271565b915061498f82615ad0565b602082019050919050565b60006149a7600483615271565b91506149b282615af9565b602082019050919050565b60006149ca602c83615271565b91506149d582615b22565b604082019050919050565b60006149ed601183615271565b91506149f882615b71565b602082019050919050565b6000614a10602083615271565b9150614a1b82615b9a565b602082019050919050565b6000614a33601c83615271565b9150614a3e82615bc3565b602082019050919050565b6000614a56602483615271565b9150614a6182615bec565b604082019050919050565b6000614a79602983615271565b9150614a8482615c3b565b604082019050919050565b6000614a9c601383615271565b9150614aa782615c8a565b602082019050919050565b6000614abf602183615271565b9150614aca82615cb3565b604082019050919050565b6000614ae2600083615266565b9150614aed82615d02565b600082019050919050565b6000614b05600e83615271565b9150614b1082615d05565b602082019050919050565b6000614b28602c83615271565b9150614b3382615d2e565b604082019050919050565b6000614b4b603183615271565b9150614b5682615d7d565b604082019050919050565b6000614b6e601383615271565b9150614b7982615dcc565b602082019050919050565b6000614b91602483615271565b9150614b9c82615df5565b604082019050919050565b6000614bb4601a83615271565b9150614bbf82615e44565b602082019050919050565b6000614bd7602683615271565b9150614be282615e6d565b604082019050919050565b6000614bfa602883615271565b9150614c0582615ebc565b604082019050919050565b614c198161540c565b82525050565b6000614c2b82856146a5565b9150614c378284614674565b91508190509392505050565b6000614c4e82614ad5565b9150819050919050565b6000602082019050614c6d60008301846145e4565b92915050565b6000608082019050614c8860008301876145e4565b614c9560208301866145e4565b614ca26040830185614c10565b8181036060830152614cb48184614602565b905095945050505050565b6000602082019050614cd460008301846145f3565b92915050565b60006020820190508181036000830152614cf4818461463b565b905092915050565b60006020820190508181036000830152614d1581614724565b9050919050565b60006020820190508181036000830152614d3581614747565b9050919050565b60006020820190508181036000830152614d558161476a565b9050919050565b60006020820190508181036000830152614d758161478d565b9050919050565b60006020820190508181036000830152614d95816147b0565b9050919050565b60006020820190508181036000830152614db5816147d3565b9050919050565b60006020820190508181036000830152614dd5816147f6565b9050919050565b60006020820190508181036000830152614df581614819565b9050919050565b60006020820190508181036000830152614e158161483c565b9050919050565b60006020820190508181036000830152614e358161485f565b9050919050565b60006020820190508181036000830152614e5581614882565b9050919050565b60006020820190508181036000830152614e75816148a5565b9050919050565b60006020820190508181036000830152614e95816148c8565b9050919050565b60006020820190508181036000830152614eb5816148eb565b9050919050565b60006020820190508181036000830152614ed58161490e565b9050919050565b60006020820190508181036000830152614ef581614931565b9050919050565b60006020820190508181036000830152614f1581614954565b9050919050565b60006020820190508181036000830152614f3581614977565b9050919050565b60006020820190508181036000830152614f558161499a565b9050919050565b60006020820190508181036000830152614f75816149bd565b9050919050565b60006020820190508181036000830152614f95816149e0565b9050919050565b60006020820190508181036000830152614fb581614a03565b9050919050565b60006020820190508181036000830152614fd581614a26565b9050919050565b60006020820190508181036000830152614ff581614a49565b9050919050565b6000602082019050818103600083015261501581614a6c565b9050919050565b6000602082019050818103600083015261503581614a8f565b9050919050565b6000602082019050818103600083015261505581614ab2565b9050919050565b6000602082019050818103600083015261507581614af8565b9050919050565b6000602082019050818103600083015261509581614b1b565b9050919050565b600060208201905081810360008301526150b581614b3e565b9050919050565b600060208201905081810360008301526150d581614b61565b9050919050565b600060208201905081810360008301526150f581614b84565b9050919050565b6000602082019050818103600083015261511581614ba7565b9050919050565b6000602082019050818103600083015261513581614bca565b9050919050565b6000602082019050818103600083015261515581614bed565b9050919050565b60006020820190506151716000830184614c10565b92915050565b6000615181615192565b905061518d828261548a565b919050565b6000604051905090565b600067ffffffffffffffff8211156151b7576151b66155f1565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156151e3576151e26155f1565b5b6151ec8261563e565b9050602081019050919050565b600067ffffffffffffffff821115615214576152136155f1565b5b61521d8261563e565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006152988261540c565b91506152a38361540c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156152d8576152d7615535565b5b828201905092915050565b60006152ee8261540c565b91506152f98361540c565b92508261530957615308615564565b5b828204905092915050565b600061531f8261540c565b915061532a8361540c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561536357615362615535565b5b828202905092915050565b60006153798261540c565b91506153848361540c565b92508282101561539757615396615535565b5b828203905092915050565b60006153ad826153ec565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015615443578082015181840152602081019050615428565b83811115615452576000848401525b50505050565b6000600282049050600182168061547057607f821691505b6020821081141561548457615483615593565b5b50919050565b6154938261563e565b810181811067ffffffffffffffff821117156154b2576154b16155f1565b5b80604052505050565b60006154c68261540c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156154f9576154f8615535565b5b600182019050919050565b600061550f8261540c565b915061551a8361540c565b92508261552a57615529615564565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f536c6f7720446f776e21205072652053616c652069736e277420617661696c6160008201527f626c65206a757374207965742e00000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4572726f72206368616e67696e6720547566662047757920416d6f756e740000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f536c6f7720446f776e21204d61696e2053616c652069736e277420617661696c60008201527f61626c65206a757374207965742e000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820657468000000000000000000000000000000000000600082015250565b7f4e6f7420696e2050726573616c65000000000000000000000000000000000000600082015250565b7f4e6f7420656e6f75676820547566662047757973206c65667420746f206d696e60008201527f7420666f722067697665617761797320616e6420636f6d6d756e69747920657660208201527f656e7473203a2800000000000000000000000000000000000000000000000000604082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4e6f20467573696f6e204c656674000000000000000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4f6f707321204c6f6f6b73206c696b65207765206469646e277420726563656960008201527f76652074686520726571756972652066756e6473000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4e6f6e6500000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f7420656e6f75676820547566662047757973206c656674203a2800000000600082015250565b7f576f61682e2050726f76696465206d6520736f6d65206d6f726520547566662060008201527f4775797300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f547566662047757973206e6f74206f776e656400000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f43616e2774205769746864726177000000000000000000000000000000000000600082015250565b7f576f616821204c6561766520736f6d6520547566664775797320666f7220746860008201527f652072657374206f662075730000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f467573696f6e73206e6f7420656e61626c656400000000000000000000000000600082015250565b7f576f616821204e6f7420656e6f7567682045544820696e2074686520636f6e7460008201527f7261637400000000000000000000000000000000000000000000000000000000602082015250565b7f5475666620477579205769746864726177616c204661696c6564000000000000600082015250565b7f4572726f72206368616e676564205072652053616c652054756666204775792060008201527f416d6f756e740000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820547566662047757973206c65667420666f7220707260008201527f6573616c65203a28000000000000000000000000000000000000000000000000602082015250565b615f14816153a2565b8114615f1f57600080fd5b50565b615f2b816153b4565b8114615f3657600080fd5b50565b615f42816153c0565b8114615f4d57600080fd5b50565b615f598161540c565b8114615f6457600080fd5b5056fea26469706673582212205a8063aa35f98e225d15d469adc68b4ace9cc92a06717f997484cd0f9e447da564736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000007d000000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : TotalTuffGuys (uint256): 10000
Arg [1] : PresaleTuffGuys (uint256): 2000
Arg [2] : _baseURI (string):

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [1] : 00000000000000000000000000000000000000000000000000000000000007d0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000


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.