ETH Price: $2,527.40 (+0.17%)

Contract

0x3D0A17185610a095873Dada98D52242933923F91
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Buy138898282021-12-27 21:55:54977 days ago1640642154IN
0x3D0A1718...933923F91
0.06 ETH0.0020517368.22985279
Buy138603192021-12-23 8:30:12981 days ago1640248212IN
0x3D0A1718...933923F91
0.06 ETH0.0022630675.25727867
Transfer Ownersh...138440212021-12-20 19:40:58984 days ago1640029258IN
0x3D0A1718...933923F91
0 ETH0.0021055472.5522906
Withdraw ETH138395822021-12-20 3:17:02984 days ago1639970222IN
0x3D0A1718...933923F91
0 ETH0.0015860752.07937672
Buy138366172021-12-19 16:11:22985 days ago1639930282IN
0x3D0A1718...933923F91
0.06 ETH0.0029438185.84057674
Buy138365952021-12-19 16:04:50985 days ago1639929890IN
0x3D0A1718...933923F91
0.06 ETH0.0024346570.9936513
Buy138362822021-12-19 14:59:25985 days ago1639925965IN
0x3D0A1718...933923F91
0.06 ETH0.0012625136.81459432
Buy138361992021-12-19 14:41:55985 days ago1639924915IN
0x3D0A1718...933923F91
0.02553403 ETH0.0015764845.96967252
Buy138361762021-12-19 14:38:00985 days ago1639924680IN
0x3D0A1718...933923F91
0.059 ETH0.0018640154.35398715
Buy138361612021-12-19 14:33:26985 days ago1639924406IN
0x3D0A1718...933923F91
0.05 ETH0.0017272350.36562591
Buy138361612021-12-19 14:33:26985 days ago1639924406IN
0x3D0A1718...933923F91
0.025 ETH0.0017272350.36562591
Buy138361592021-12-19 14:33:01985 days ago1639924381IN
0x3D0A1718...933923F91
0.06 ETH0.0020063658.50473581
Buy138361582021-12-19 14:32:59985 days ago1639924379IN
0x3D0A1718...933923F91
0.06 ETH0.001533144.70461863
Buy138361582021-12-19 14:32:59985 days ago1639924379IN
0x3D0A1718...933923F91
0.03 ETH0.001533144.70461863
Buy138361582021-12-19 14:32:59985 days ago1639924379IN
0x3D0A1718...933923F91
0.04 ETH0.0015432345
Buy138361582021-12-19 14:32:59985 days ago1639924379IN
0x3D0A1718...933923F91
0.06 ETH0.0015432345
Buy138361582021-12-19 14:32:59985 days ago1639924379IN
0x3D0A1718...933923F91
0.06 ETH0.0015432345
Buy138361582021-12-19 14:32:59985 days ago1639924379IN
0x3D0A1718...933923F91
0.06 ETH0.0015432345
Buy138361582021-12-19 14:32:59985 days ago1639924379IN
0x3D0A1718...933923F91
0.06 ETH0.0015432345
Buy138361582021-12-19 14:32:59985 days ago1639924379IN
0x3D0A1718...933923F91
0.06 ETH0.0017352750.6
Buy138361582021-12-19 14:32:59985 days ago1639924379IN
0x3D0A1718...933923F91
0.06 ETH0.0015466545.1
Buy138361582021-12-19 14:32:59985 days ago1639924379IN
0x3D0A1718...933923F91
0.06 ETH0.0016057346.82253891
Buy138361582021-12-19 14:32:59985 days ago1639924379IN
0x3D0A1718...933923F91
0.06 ETH0.0016118147
Buy138361582021-12-19 14:32:59985 days ago1639924379IN
0x3D0A1718...933923F91
0.06 ETH0.0016118147
Buy138361552021-12-19 14:32:31985 days ago1639924351IN
0x3D0A1718...933923F91
0.05 ETH0.0019004555.41643684
View all transactions

Latest 2 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
138395822021-12-20 3:17:02984 days ago1639970222
0x3D0A1718...933923F91
24.95347459 ETH
138296662021-12-18 14:28:56986 days ago1639837736
0x3D0A1718...933923F91
0.05 ETH
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Presale

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 4 : Presale.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import '@openzeppelin/contracts/token/ERC20/IERC20.sol';
import '@openzeppelin/contracts/access/Ownable.sol';

contract Presale is Ownable {

    IERC20 kataToken;

    uint256 public fundingGoal = 25 ether;    //  ETH

    uint256 public soldAmount;
    uint256 public ethRaised;

    uint256 public startTime;
    uint256 public endTime;
    uint256 public whitelistTime;

    uint256 public minETHAmount = 0.025 ether;
    uint256 public maxETHAmount = 0.06 ether;

    uint256 public price = 5333333;       // 1 ETH = 5333333 $KATA

    mapping(address => bool) public whitelist;
    mapping(address => uint256) public buyETH;
    mapping(address => uint256) public buyTokens;
    mapping(address => uint256) public claimedTokens;

    uint256 public tgeAmount = 15;
    uint256 public tgeCliffTime = 1645617600;
    uint256 public tgeTime = 1640260800;
    uint256 public duration = 60 * 60 * 24 * 30 * 5;    // 5 months

    constructor(uint256 _startTime, uint256 _endTime, uint256 _whitelistTime, uint256 _tgeTime, uint256 _tgeCliffTime) {
        startTime = _startTime;
        endTime = _endTime;
        whitelistTime = _whitelistTime;
        tgeTime = _tgeTime;
        tgeCliffTime = _tgeCliffTime;
    }

    function buy() payable external {
        require(msg.value > 0, "Zero ETH sent");
        require(msg.value >= minETHAmount && msg.value <= maxETHAmount,
            "Invalid ETH amount");

        require(block.timestamp >= startTime && block.timestamp <= endTime,
            "Sales not live");

        require(ethRaised < fundingGoal, "sales completed");
        require(buyETH[msg.sender] + msg.value <= maxETHAmount,"max eth amount exceeds");

        if (block.timestamp < whitelistTime) {
            require(whitelist[msg.sender], "you are not whitelisted");
        }

        ethRaised = ethRaised + msg.value;
        uint256 amount = price * msg.value;

        soldAmount = soldAmount + amount;
        buyTokens[msg.sender] = buyTokens[msg.sender] + amount;
        buyETH[msg.sender] = buyETH[msg.sender] + msg.value;
    }

    function getClaimable() public view returns(uint256) {
        if (block.timestamp < tgeTime) return 0;
        if (block.timestamp < tgeCliffTime) {
          return (buyTokens[msg.sender] * tgeAmount) / 100;
        }
        if (buyTokens[msg.sender] <= 0) return 0;
        if (buyTokens[msg.sender] <= claimedTokens[msg.sender]) return 0;

        uint256 timeElapsed = block.timestamp - tgeCliffTime;

        if (timeElapsed > duration)
            timeElapsed = duration;

        uint256 _tge = 100 - tgeAmount;
        uint256 unlockedPercent = (10**6 * _tge * timeElapsed) / duration;
        unlockedPercent = unlockedPercent + tgeAmount * 10**6;

        uint256 unlockedAmount = (buyTokens[msg.sender] * unlockedPercent) / (100 * 10**6);

        if (unlockedAmount < claimedTokens[msg.sender]) {
          return 0;
        }

        uint256 claimable = unlockedAmount - claimedTokens[msg.sender];

        return claimable;
    }

    function claim() external {
        require(block.timestamp > endTime, "Sales not ended yet");
        require(buyTokens[msg.sender] > 0, "No token purcahsed");
        require(buyTokens[msg.sender] > claimedTokens[msg.sender], "You already claimed all");
        require(address(kataToken) != address(0), "Not initialised");

        uint256 claimable = getClaimable();

        require (claimable > 0, "No token to claim");

        kataToken.transfer(msg.sender, claimable);

        claimedTokens[msg.sender] = claimedTokens[msg.sender] + claimable;
    }

    function withdrawETH() external onlyOwner {
        uint256 ethAmount = address(this).balance;
        payable(msg.sender).transfer(ethAmount);
    }

    function setSalesTime(uint256 _startTime, uint256 _endTime, uint256 _whitelistTime) external onlyOwner {
        require(_whitelistTime < _endTime, "Invalid time");
        require(_startTime < _whitelistTime, "Invalid time");

        startTime = _startTime;
        endTime = _endTime;
        whitelistTime = _whitelistTime;
    }

    function setETHrange(uint256 _minETHAmount, uint256 _maxETHAmount) external onlyOwner {
        require(minETHAmount < maxETHAmount, "Invalid range");
        minETHAmount = _minETHAmount;
        maxETHAmount = _maxETHAmount;
    }

    function setPrice(uint256 _price) external onlyOwner {
        price = _price;
    }

    function setVesting(uint256 _tgeAmount, uint256 _tgeTime, uint256 _tgeCliffTime, uint256 _duration) external onlyOwner {
        tgeAmount = _tgeAmount;
        tgeTime = _tgeTime;
        tgeCliffTime = _tgeCliffTime;
        duration = _duration;
    }

    function setKataToken(address _kata) external onlyOwner {
        kataToken = IERC20(_kata);
    }

    function setFundingGoal(uint256 _fundingGoal) external onlyOwner {
        fundingGoal = _fundingGoal;
    }

    function registerWhitelist(address[] memory addrs) external onlyOwner {
        for(uint256 i = 0; i < addrs.length; i++)
            whitelist[addrs[i]] = true;
    }
}

File 2 of 4 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 3 of 4 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_startTime","type":"uint256"},{"internalType":"uint256","name":"_endTime","type":"uint256"},{"internalType":"uint256","name":"_whitelistTime","type":"uint256"},{"internalType":"uint256","name":"_tgeTime","type":"uint256"},{"internalType":"uint256","name":"_tgeCliffTime","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"buyETH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"buyTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"claimedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"duration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ethRaised","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fundingGoal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getClaimable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxETHAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minETHAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addrs","type":"address[]"}],"name":"registerWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minETHAmount","type":"uint256"},{"internalType":"uint256","name":"_maxETHAmount","type":"uint256"}],"name":"setETHrange","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_fundingGoal","type":"uint256"}],"name":"setFundingGoal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_kata","type":"address"}],"name":"setKataToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startTime","type":"uint256"},{"internalType":"uint256","name":"_endTime","type":"uint256"},{"internalType":"uint256","name":"_whitelistTime","type":"uint256"}],"name":"setSalesTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tgeAmount","type":"uint256"},{"internalType":"uint256","name":"_tgeTime","type":"uint256"},{"internalType":"uint256","name":"_tgeCliffTime","type":"uint256"},{"internalType":"uint256","name":"_duration","type":"uint256"}],"name":"setVesting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"soldAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tgeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tgeCliffTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tgeTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405268015af1d78b58c400006002556658d15e1762800060085566d529ae9e86000060095562516155600a55600f805563621621c06010556361c464c060115562c5c1006012553480156200005657600080fd5b506040516200291b3803806200291b83398181016040528101906200007c9190620001ad565b6200009c62000090620000ca60201b60201c565b620000d260201b60201c565b8460058190555083600681905550826007819055508160118190555080601081905550505050505062000253565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050620001a78162000239565b92915050565b600080600080600060a08688031215620001c657600080fd5b6000620001d68882890162000196565b9550506020620001e98882890162000196565b9450506040620001fc8882890162000196565b93505060606200020f8882890162000196565b9250506080620002228882890162000196565b9150509295509295909350565b6000819050919050565b62000244816200022f565b81146200025057600080fd5b50565b6126b880620002636000396000f3fe6080604052600436106101d85760003560e01c80637910d9fd11610102578063c2c0277011610095578063ee28b74411610064578063ee28b74414610643578063f2fde38b1461066e578063fa1a5f5914610697578063fddf0fc0146106c2576101d8565b8063c2c027701461059b578063c4f94a68146105c4578063e086e5ec146105ef578063ec8ac4d814610606576101d8565b80639b19251a116100d15780639b19251a146104ec578063a035b1fe14610529578063a6f2ae3a14610554578063a960c65f1461055e576101d8565b80637910d9fd146104445780637a3a0e841461046d5780638da5cb5b1461049857806391b7f5ed146104c3576101d8565b806345a00cc91161017a5780636ee56f33116101495780636ee56f331461039a578063715018a6146103d757806378878b5d146103ee57806378e9792514610419576101d8565b806345a00cc9146103045780634e71d92d1461032f578063576eac66146103465780636bebe8e01461036f576101d8565b80633163e3a8116101b65780633163e3a81461025c5780633197cbb6146102875780633feb7532146102b2578063426fb489146102db576101d8565b80630fb5a6b4146101dd5780631091827a146102085780632ce7183214610233575b600080fd5b3480156101e957600080fd5b506101f26106ed565b6040516101ff9190612381565b60405180910390f35b34801561021457600080fd5b5061021d6106f3565b60405161022a9190612381565b60405180910390f35b34801561023f57600080fd5b5061025a60048036038101906102559190611ccc565b6106f9565b005b34801561026857600080fd5b50610271610797565b60405161027e9190612381565b60405180910390f35b34801561029357600080fd5b5061029c61079d565b6040516102a99190612381565b60405180910390f35b3480156102be57600080fd5b506102d960048036038101906102d49190611c7d565b6107a3565b005b3480156102e757600080fd5b5061030260048036038101906102fd9190611c41565b6108bd565b005b34801561031057600080fd5b50610319610991565b6040516103269190612381565b60405180910390f35b34801561033b57600080fd5b50610344610997565b005b34801561035257600080fd5b5061036d60048036038101906103689190611c18565b610d3f565b005b34801561037b57600080fd5b50610384610dc5565b6040516103919190612381565b60405180910390f35b3480156103a657600080fd5b506103c160048036038101906103bc9190611b85565b610dcb565b6040516103ce9190612381565b60405180910390f35b3480156103e357600080fd5b506103ec610de3565b005b3480156103fa57600080fd5b50610403610e6b565b6040516104109190612381565b60405180910390f35b34801561042557600080fd5b5061042e610e71565b60405161043b9190612381565b60405180910390f35b34801561045057600080fd5b5061046b60048036038101906104669190611b85565b610e77565b005b34801561047957600080fd5b50610482610f37565b60405161048f9190612381565b60405180910390f35b3480156104a457600080fd5b506104ad610f3d565b6040516104ba9190612142565b60405180910390f35b3480156104cf57600080fd5b506104ea60048036038101906104e59190611c18565b610f66565b005b3480156104f857600080fd5b50610513600480360381019061050e9190611b85565b610fec565b6040516105209190612186565b60405180910390f35b34801561053557600080fd5b5061053e61100c565b60405161054b9190612381565b60405180910390f35b61055c611012565b005b34801561056a57600080fd5b5061058560048036038101906105809190611b85565b6113c0565b6040516105929190612381565b60405180910390f35b3480156105a757600080fd5b506105c260048036038101906105bd9190611bae565b6113d8565b005b3480156105d057600080fd5b506105d961150f565b6040516105e69190612381565b60405180910390f35b3480156105fb57600080fd5b50610604611515565b005b34801561061257600080fd5b5061062d60048036038101906106289190611b85565b6115e0565b60405161063a9190612381565b60405180910390f35b34801561064f57600080fd5b506106586115f8565b6040516106659190612381565b60405180910390f35b34801561067a57600080fd5b5061069560048036038101906106909190611b85565b6118e0565b005b3480156106a357600080fd5b506106ac6119d8565b6040516106b99190612381565b60405180910390f35b3480156106ce57600080fd5b506106d76119de565b6040516106e49190612381565b60405180910390f35b60125481565b600f5481565b6107016119e4565b73ffffffffffffffffffffffffffffffffffffffff1661071f610f3d565b73ffffffffffffffffffffffffffffffffffffffff1614610775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076c90612281565b60405180910390fd5b83600f8190555082601181905550816010819055508060128190555050505050565b60115481565b60065481565b6107ab6119e4565b73ffffffffffffffffffffffffffffffffffffffff166107c9610f3d565b73ffffffffffffffffffffffffffffffffffffffff161461081f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081690612281565b60405180910390fd5b818110610861576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610858906121e1565b60405180910390fd5b8083106108a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089a906121e1565b60405180910390fd5b826005819055508160068190555080600781905550505050565b6108c56119e4565b73ffffffffffffffffffffffffffffffffffffffff166108e3610f3d565b73ffffffffffffffffffffffffffffffffffffffff1614610939576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093090612281565b60405180910390fd5b6009546008541061097f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097690612221565b60405180910390fd5b81600881905550806009819055505050565b60095481565b60065442116109db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d2906122a1565b60405180910390fd5b6000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5490612361565b60405180910390fd5b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1490612201565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610baf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba690612341565b60405180910390fd5b6000610bb96115f8565b905060008111610bfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf590612261565b60405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610c5b92919061215d565b602060405180830381600087803b158015610c7557600080fd5b505af1158015610c89573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cad9190611bef565b5080600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cf9919061240a565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b610d476119e4565b73ffffffffffffffffffffffffffffffffffffffff16610d65610f3d565b73ffffffffffffffffffffffffffffffffffffffff1614610dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db290612281565b60405180910390fd5b8060028190555050565b60085481565b600c6020528060005260406000206000915090505481565b610deb6119e4565b73ffffffffffffffffffffffffffffffffffffffff16610e09610f3d565b73ffffffffffffffffffffffffffffffffffffffff1614610e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5690612281565b60405180910390fd5b610e6960006119ec565b565b60105481565b60055481565b610e7f6119e4565b73ffffffffffffffffffffffffffffffffffffffff16610e9d610f3d565b73ffffffffffffffffffffffffffffffffffffffff1614610ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eea90612281565b60405180910390fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60025481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f6e6119e4565b73ffffffffffffffffffffffffffffffffffffffff16610f8c610f3d565b73ffffffffffffffffffffffffffffffffffffffff1614610fe2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd990612281565b60405180910390fd5b80600a8190555050565b600b6020528060005260406000206000915054906101000a900460ff1681565b600a5481565b60003411611055576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104c906121a1565b60405180910390fd5b600854341015801561106957506009543411155b6110a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109f90612241565b60405180910390fd5b60055442101580156110bc57506006544211155b6110fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f2906122c1565b60405180910390fd5b60025460045410611141576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113890612301565b60405180910390fd5b60095434600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461118f919061240a565b11156111d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c790612321565b60405180910390fd5b60075442101561126757600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125d906122e1565b60405180910390fd5b5b34600454611275919061240a565b600481905550600034600a5461128b9190612491565b90508060035461129b919061240a565b60038190555080600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112ec919061240a565b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555034600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461137a919061240a565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b600e6020528060005260406000206000915090505481565b6113e06119e4565b73ffffffffffffffffffffffffffffffffffffffff166113fe610f3d565b73ffffffffffffffffffffffffffffffffffffffff1614611454576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144b90612281565b60405180910390fd5b60005b815181101561150b576001600b600084848151811061149f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061150390612567565b915050611457565b5050565b60075481565b61151d6119e4565b73ffffffffffffffffffffffffffffffffffffffff1661153b610f3d565b73ffffffffffffffffffffffffffffffffffffffff1614611591576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158890612281565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156115dc573d6000803e3d6000fd5b5050565b600d6020528060005260406000206000915090505481565b600060115442101561160d57600090506118dd565b601054421015611677576064600f54600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116669190612491565b6116709190612460565b90506118dd565b6000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116116c757600090506118dd565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541161175557600090506118dd565b60006010544261176591906124eb565b90506012548111156117775760125490505b6000600f54606461178891906124eb565b905060006012548383620f424061179f9190612491565b6117a99190612491565b6117b39190612460565b9050620f4240600f546117c69190612491565b816117d1919061240a565b905060006305f5e10082600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118259190612491565b61182f9190612460565b9050600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548110156118855760009450505050506118dd565b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054826118d291906124eb565b905080955050505050505b90565b6118e86119e4565b73ffffffffffffffffffffffffffffffffffffffff16611906610f3d565b73ffffffffffffffffffffffffffffffffffffffff161461195c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195390612281565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c3906121c1565b60405180910390fd5b6119d5816119ec565b50565b60035481565b60045481565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611ac3611abe846123cd565b61239c565b90508083825260208201905082856020860282011115611ae257600080fd5b60005b85811015611b125781611af88882611b1c565b845260208401935060208301925050600181019050611ae5565b5050509392505050565b600081359050611b2b8161263d565b92915050565b600082601f830112611b4257600080fd5b8135611b52848260208601611ab0565b91505092915050565b600081519050611b6a81612654565b92915050565b600081359050611b7f8161266b565b92915050565b600060208284031215611b9757600080fd5b6000611ba584828501611b1c565b91505092915050565b600060208284031215611bc057600080fd5b600082013567ffffffffffffffff811115611bda57600080fd5b611be684828501611b31565b91505092915050565b600060208284031215611c0157600080fd5b6000611c0f84828501611b5b565b91505092915050565b600060208284031215611c2a57600080fd5b6000611c3884828501611b70565b91505092915050565b60008060408385031215611c5457600080fd5b6000611c6285828601611b70565b9250506020611c7385828601611b70565b9150509250929050565b600080600060608486031215611c9257600080fd5b6000611ca086828701611b70565b9350506020611cb186828701611b70565b9250506040611cc286828701611b70565b9150509250925092565b60008060008060808587031215611ce257600080fd5b6000611cf087828801611b70565b9450506020611d0187828801611b70565b9350506040611d1287828801611b70565b9250506060611d2387828801611b70565b91505092959194509250565b611d388161251f565b82525050565b611d4781612531565b82525050565b6000611d5a600d836123f9565b91507f5a65726f204554482073656e74000000000000000000000000000000000000006000830152602082019050919050565b6000611d9a6026836123f9565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611e00600c836123f9565b91507f496e76616c69642074696d6500000000000000000000000000000000000000006000830152602082019050919050565b6000611e406017836123f9565b91507f596f7520616c726561647920636c61696d656420616c6c0000000000000000006000830152602082019050919050565b6000611e80600d836123f9565b91507f496e76616c69642072616e6765000000000000000000000000000000000000006000830152602082019050919050565b6000611ec06012836123f9565b91507f496e76616c69642045544820616d6f756e7400000000000000000000000000006000830152602082019050919050565b6000611f006011836123f9565b91507f4e6f20746f6b656e20746f20636c61696d0000000000000000000000000000006000830152602082019050919050565b6000611f406020836123f9565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611f806013836123f9565b91507f53616c6573206e6f7420656e64656420796574000000000000000000000000006000830152602082019050919050565b6000611fc0600e836123f9565b91507f53616c6573206e6f74206c6976650000000000000000000000000000000000006000830152602082019050919050565b60006120006017836123f9565b91507f796f7520617265206e6f742077686974656c69737465640000000000000000006000830152602082019050919050565b6000612040600f836123f9565b91507f73616c657320636f6d706c6574656400000000000000000000000000000000006000830152602082019050919050565b60006120806016836123f9565b91507f6d61782065746820616d6f756e742065786365656473000000000000000000006000830152602082019050919050565b60006120c0600f836123f9565b91507f4e6f7420696e697469616c6973656400000000000000000000000000000000006000830152602082019050919050565b60006121006012836123f9565b91507f4e6f20746f6b656e2070757263616873656400000000000000000000000000006000830152602082019050919050565b61213c8161255d565b82525050565b60006020820190506121576000830184611d2f565b92915050565b60006040820190506121726000830185611d2f565b61217f6020830184612133565b9392505050565b600060208201905061219b6000830184611d3e565b92915050565b600060208201905081810360008301526121ba81611d4d565b9050919050565b600060208201905081810360008301526121da81611d8d565b9050919050565b600060208201905081810360008301526121fa81611df3565b9050919050565b6000602082019050818103600083015261221a81611e33565b9050919050565b6000602082019050818103600083015261223a81611e73565b9050919050565b6000602082019050818103600083015261225a81611eb3565b9050919050565b6000602082019050818103600083015261227a81611ef3565b9050919050565b6000602082019050818103600083015261229a81611f33565b9050919050565b600060208201905081810360008301526122ba81611f73565b9050919050565b600060208201905081810360008301526122da81611fb3565b9050919050565b600060208201905081810360008301526122fa81611ff3565b9050919050565b6000602082019050818103600083015261231a81612033565b9050919050565b6000602082019050818103600083015261233a81612073565b9050919050565b6000602082019050818103600083015261235a816120b3565b9050919050565b6000602082019050818103600083015261237a816120f3565b9050919050565b60006020820190506123966000830184612133565b92915050565b6000604051905081810181811067ffffffffffffffff821117156123c3576123c261260e565b5b8060405250919050565b600067ffffffffffffffff8211156123e8576123e761260e565b5b602082029050602081019050919050565b600082825260208201905092915050565b60006124158261255d565b91506124208361255d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612455576124546125b0565b5b828201905092915050565b600061246b8261255d565b91506124768361255d565b925082612486576124856125df565b5b828204905092915050565b600061249c8261255d565b91506124a78361255d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156124e0576124df6125b0565b5b828202905092915050565b60006124f68261255d565b91506125018361255d565b925082821015612514576125136125b0565b5b828203905092915050565b600061252a8261253d565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006125728261255d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156125a5576125a46125b0565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6126468161251f565b811461265157600080fd5b50565b61265d81612531565b811461266857600080fd5b50565b6126748161255d565b811461267f57600080fd5b5056fea2646970667358221220aca2b4e67c465a88605300d0ba7d275c0a13fcefcefb8cb9a5718420766ac79a64736f6c634300080000330000000000000000000000000000000000000000000000000000017dcd69c2000000000000000000000000000000000000000000000000000000017dd7b67a000000000000000000000000000000000000000000000000000000017dd2901e000000000000000000000000000000000000000000000000000000017de7298e000000000000000000000000000000000000000000000000000000017f2673d600

Deployed Bytecode

0x6080604052600436106101d85760003560e01c80637910d9fd11610102578063c2c0277011610095578063ee28b74411610064578063ee28b74414610643578063f2fde38b1461066e578063fa1a5f5914610697578063fddf0fc0146106c2576101d8565b8063c2c027701461059b578063c4f94a68146105c4578063e086e5ec146105ef578063ec8ac4d814610606576101d8565b80639b19251a116100d15780639b19251a146104ec578063a035b1fe14610529578063a6f2ae3a14610554578063a960c65f1461055e576101d8565b80637910d9fd146104445780637a3a0e841461046d5780638da5cb5b1461049857806391b7f5ed146104c3576101d8565b806345a00cc91161017a5780636ee56f33116101495780636ee56f331461039a578063715018a6146103d757806378878b5d146103ee57806378e9792514610419576101d8565b806345a00cc9146103045780634e71d92d1461032f578063576eac66146103465780636bebe8e01461036f576101d8565b80633163e3a8116101b65780633163e3a81461025c5780633197cbb6146102875780633feb7532146102b2578063426fb489146102db576101d8565b80630fb5a6b4146101dd5780631091827a146102085780632ce7183214610233575b600080fd5b3480156101e957600080fd5b506101f26106ed565b6040516101ff9190612381565b60405180910390f35b34801561021457600080fd5b5061021d6106f3565b60405161022a9190612381565b60405180910390f35b34801561023f57600080fd5b5061025a60048036038101906102559190611ccc565b6106f9565b005b34801561026857600080fd5b50610271610797565b60405161027e9190612381565b60405180910390f35b34801561029357600080fd5b5061029c61079d565b6040516102a99190612381565b60405180910390f35b3480156102be57600080fd5b506102d960048036038101906102d49190611c7d565b6107a3565b005b3480156102e757600080fd5b5061030260048036038101906102fd9190611c41565b6108bd565b005b34801561031057600080fd5b50610319610991565b6040516103269190612381565b60405180910390f35b34801561033b57600080fd5b50610344610997565b005b34801561035257600080fd5b5061036d60048036038101906103689190611c18565b610d3f565b005b34801561037b57600080fd5b50610384610dc5565b6040516103919190612381565b60405180910390f35b3480156103a657600080fd5b506103c160048036038101906103bc9190611b85565b610dcb565b6040516103ce9190612381565b60405180910390f35b3480156103e357600080fd5b506103ec610de3565b005b3480156103fa57600080fd5b50610403610e6b565b6040516104109190612381565b60405180910390f35b34801561042557600080fd5b5061042e610e71565b60405161043b9190612381565b60405180910390f35b34801561045057600080fd5b5061046b60048036038101906104669190611b85565b610e77565b005b34801561047957600080fd5b50610482610f37565b60405161048f9190612381565b60405180910390f35b3480156104a457600080fd5b506104ad610f3d565b6040516104ba9190612142565b60405180910390f35b3480156104cf57600080fd5b506104ea60048036038101906104e59190611c18565b610f66565b005b3480156104f857600080fd5b50610513600480360381019061050e9190611b85565b610fec565b6040516105209190612186565b60405180910390f35b34801561053557600080fd5b5061053e61100c565b60405161054b9190612381565b60405180910390f35b61055c611012565b005b34801561056a57600080fd5b5061058560048036038101906105809190611b85565b6113c0565b6040516105929190612381565b60405180910390f35b3480156105a757600080fd5b506105c260048036038101906105bd9190611bae565b6113d8565b005b3480156105d057600080fd5b506105d961150f565b6040516105e69190612381565b60405180910390f35b3480156105fb57600080fd5b50610604611515565b005b34801561061257600080fd5b5061062d60048036038101906106289190611b85565b6115e0565b60405161063a9190612381565b60405180910390f35b34801561064f57600080fd5b506106586115f8565b6040516106659190612381565b60405180910390f35b34801561067a57600080fd5b5061069560048036038101906106909190611b85565b6118e0565b005b3480156106a357600080fd5b506106ac6119d8565b6040516106b99190612381565b60405180910390f35b3480156106ce57600080fd5b506106d76119de565b6040516106e49190612381565b60405180910390f35b60125481565b600f5481565b6107016119e4565b73ffffffffffffffffffffffffffffffffffffffff1661071f610f3d565b73ffffffffffffffffffffffffffffffffffffffff1614610775576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076c90612281565b60405180910390fd5b83600f8190555082601181905550816010819055508060128190555050505050565b60115481565b60065481565b6107ab6119e4565b73ffffffffffffffffffffffffffffffffffffffff166107c9610f3d565b73ffffffffffffffffffffffffffffffffffffffff161461081f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081690612281565b60405180910390fd5b818110610861576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610858906121e1565b60405180910390fd5b8083106108a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089a906121e1565b60405180910390fd5b826005819055508160068190555080600781905550505050565b6108c56119e4565b73ffffffffffffffffffffffffffffffffffffffff166108e3610f3d565b73ffffffffffffffffffffffffffffffffffffffff1614610939576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093090612281565b60405180910390fd5b6009546008541061097f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097690612221565b60405180910390fd5b81600881905550806009819055505050565b60095481565b60065442116109db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d2906122a1565b60405180910390fd5b6000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610a5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5490612361565b60405180910390fd5b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1490612201565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610baf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba690612341565b60405180910390fd5b6000610bb96115f8565b905060008111610bfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf590612261565b60405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610c5b92919061215d565b602060405180830381600087803b158015610c7557600080fd5b505af1158015610c89573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cad9190611bef565b5080600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610cf9919061240a565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b610d476119e4565b73ffffffffffffffffffffffffffffffffffffffff16610d65610f3d565b73ffffffffffffffffffffffffffffffffffffffff1614610dbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db290612281565b60405180910390fd5b8060028190555050565b60085481565b600c6020528060005260406000206000915090505481565b610deb6119e4565b73ffffffffffffffffffffffffffffffffffffffff16610e09610f3d565b73ffffffffffffffffffffffffffffffffffffffff1614610e5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5690612281565b60405180910390fd5b610e6960006119ec565b565b60105481565b60055481565b610e7f6119e4565b73ffffffffffffffffffffffffffffffffffffffff16610e9d610f3d565b73ffffffffffffffffffffffffffffffffffffffff1614610ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eea90612281565b60405180910390fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60025481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f6e6119e4565b73ffffffffffffffffffffffffffffffffffffffff16610f8c610f3d565b73ffffffffffffffffffffffffffffffffffffffff1614610fe2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd990612281565b60405180910390fd5b80600a8190555050565b600b6020528060005260406000206000915054906101000a900460ff1681565b600a5481565b60003411611055576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104c906121a1565b60405180910390fd5b600854341015801561106957506009543411155b6110a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109f90612241565b60405180910390fd5b60055442101580156110bc57506006544211155b6110fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f2906122c1565b60405180910390fd5b60025460045410611141576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113890612301565b60405180910390fd5b60095434600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461118f919061240a565b11156111d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c790612321565b60405180910390fd5b60075442101561126757600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611266576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125d906122e1565b60405180910390fd5b5b34600454611275919061240a565b600481905550600034600a5461128b9190612491565b90508060035461129b919061240a565b60038190555080600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112ec919061240a565b600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555034600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461137a919061240a565b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b600e6020528060005260406000206000915090505481565b6113e06119e4565b73ffffffffffffffffffffffffffffffffffffffff166113fe610f3d565b73ffffffffffffffffffffffffffffffffffffffff1614611454576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144b90612281565b60405180910390fd5b60005b815181101561150b576001600b600084848151811061149f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061150390612567565b915050611457565b5050565b60075481565b61151d6119e4565b73ffffffffffffffffffffffffffffffffffffffff1661153b610f3d565b73ffffffffffffffffffffffffffffffffffffffff1614611591576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158890612281565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156115dc573d6000803e3d6000fd5b5050565b600d6020528060005260406000206000915090505481565b600060115442101561160d57600090506118dd565b601054421015611677576064600f54600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546116669190612491565b6116709190612460565b90506118dd565b6000600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054116116c757600090506118dd565b600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541161175557600090506118dd565b60006010544261176591906124eb565b90506012548111156117775760125490505b6000600f54606461178891906124eb565b905060006012548383620f424061179f9190612491565b6117a99190612491565b6117b39190612460565b9050620f4240600f546117c69190612491565b816117d1919061240a565b905060006305f5e10082600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118259190612491565b61182f9190612460565b9050600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548110156118855760009450505050506118dd565b6000600e60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054826118d291906124eb565b905080955050505050505b90565b6118e86119e4565b73ffffffffffffffffffffffffffffffffffffffff16611906610f3d565b73ffffffffffffffffffffffffffffffffffffffff161461195c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161195390612281565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c3906121c1565b60405180910390fd5b6119d5816119ec565b50565b60035481565b60045481565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000611ac3611abe846123cd565b61239c565b90508083825260208201905082856020860282011115611ae257600080fd5b60005b85811015611b125781611af88882611b1c565b845260208401935060208301925050600181019050611ae5565b5050509392505050565b600081359050611b2b8161263d565b92915050565b600082601f830112611b4257600080fd5b8135611b52848260208601611ab0565b91505092915050565b600081519050611b6a81612654565b92915050565b600081359050611b7f8161266b565b92915050565b600060208284031215611b9757600080fd5b6000611ba584828501611b1c565b91505092915050565b600060208284031215611bc057600080fd5b600082013567ffffffffffffffff811115611bda57600080fd5b611be684828501611b31565b91505092915050565b600060208284031215611c0157600080fd5b6000611c0f84828501611b5b565b91505092915050565b600060208284031215611c2a57600080fd5b6000611c3884828501611b70565b91505092915050565b60008060408385031215611c5457600080fd5b6000611c6285828601611b70565b9250506020611c7385828601611b70565b9150509250929050565b600080600060608486031215611c9257600080fd5b6000611ca086828701611b70565b9350506020611cb186828701611b70565b9250506040611cc286828701611b70565b9150509250925092565b60008060008060808587031215611ce257600080fd5b6000611cf087828801611b70565b9450506020611d0187828801611b70565b9350506040611d1287828801611b70565b9250506060611d2387828801611b70565b91505092959194509250565b611d388161251f565b82525050565b611d4781612531565b82525050565b6000611d5a600d836123f9565b91507f5a65726f204554482073656e74000000000000000000000000000000000000006000830152602082019050919050565b6000611d9a6026836123f9565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611e00600c836123f9565b91507f496e76616c69642074696d6500000000000000000000000000000000000000006000830152602082019050919050565b6000611e406017836123f9565b91507f596f7520616c726561647920636c61696d656420616c6c0000000000000000006000830152602082019050919050565b6000611e80600d836123f9565b91507f496e76616c69642072616e6765000000000000000000000000000000000000006000830152602082019050919050565b6000611ec06012836123f9565b91507f496e76616c69642045544820616d6f756e7400000000000000000000000000006000830152602082019050919050565b6000611f006011836123f9565b91507f4e6f20746f6b656e20746f20636c61696d0000000000000000000000000000006000830152602082019050919050565b6000611f406020836123f9565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611f806013836123f9565b91507f53616c6573206e6f7420656e64656420796574000000000000000000000000006000830152602082019050919050565b6000611fc0600e836123f9565b91507f53616c6573206e6f74206c6976650000000000000000000000000000000000006000830152602082019050919050565b60006120006017836123f9565b91507f796f7520617265206e6f742077686974656c69737465640000000000000000006000830152602082019050919050565b6000612040600f836123f9565b91507f73616c657320636f6d706c6574656400000000000000000000000000000000006000830152602082019050919050565b60006120806016836123f9565b91507f6d61782065746820616d6f756e742065786365656473000000000000000000006000830152602082019050919050565b60006120c0600f836123f9565b91507f4e6f7420696e697469616c6973656400000000000000000000000000000000006000830152602082019050919050565b60006121006012836123f9565b91507f4e6f20746f6b656e2070757263616873656400000000000000000000000000006000830152602082019050919050565b61213c8161255d565b82525050565b60006020820190506121576000830184611d2f565b92915050565b60006040820190506121726000830185611d2f565b61217f6020830184612133565b9392505050565b600060208201905061219b6000830184611d3e565b92915050565b600060208201905081810360008301526121ba81611d4d565b9050919050565b600060208201905081810360008301526121da81611d8d565b9050919050565b600060208201905081810360008301526121fa81611df3565b9050919050565b6000602082019050818103600083015261221a81611e33565b9050919050565b6000602082019050818103600083015261223a81611e73565b9050919050565b6000602082019050818103600083015261225a81611eb3565b9050919050565b6000602082019050818103600083015261227a81611ef3565b9050919050565b6000602082019050818103600083015261229a81611f33565b9050919050565b600060208201905081810360008301526122ba81611f73565b9050919050565b600060208201905081810360008301526122da81611fb3565b9050919050565b600060208201905081810360008301526122fa81611ff3565b9050919050565b6000602082019050818103600083015261231a81612033565b9050919050565b6000602082019050818103600083015261233a81612073565b9050919050565b6000602082019050818103600083015261235a816120b3565b9050919050565b6000602082019050818103600083015261237a816120f3565b9050919050565b60006020820190506123966000830184612133565b92915050565b6000604051905081810181811067ffffffffffffffff821117156123c3576123c261260e565b5b8060405250919050565b600067ffffffffffffffff8211156123e8576123e761260e565b5b602082029050602081019050919050565b600082825260208201905092915050565b60006124158261255d565b91506124208361255d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612455576124546125b0565b5b828201905092915050565b600061246b8261255d565b91506124768361255d565b925082612486576124856125df565b5b828204905092915050565b600061249c8261255d565b91506124a78361255d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156124e0576124df6125b0565b5b828202905092915050565b60006124f68261255d565b91506125018361255d565b925082821015612514576125136125b0565b5b828203905092915050565b600061252a8261253d565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006125728261255d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156125a5576125a46125b0565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6126468161251f565b811461265157600080fd5b50565b61265d81612531565b811461266857600080fd5b50565b6126748161255d565b811461267f57600080fd5b5056fea2646970667358221220aca2b4e67c465a88605300d0ba7d275c0a13fcefcefb8cb9a5718420766ac79a64736f6c63430008000033

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

0000000000000000000000000000000000000000000000000000017dcd69c2000000000000000000000000000000000000000000000000000000017dd7b67a000000000000000000000000000000000000000000000000000000017dd2901e000000000000000000000000000000000000000000000000000000017de7298e000000000000000000000000000000000000000000000000000000017f2673d600

-----Decoded View---------------
Arg [0] : _startTime (uint256): 1639828800000
Arg [1] : _endTime (uint256): 1640001600000
Arg [2] : _whitelistTime (uint256): 1639915200000
Arg [3] : _tgeTime (uint256): 1640260800000
Arg [4] : _tgeCliffTime (uint256): 1645617600000

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000017dcd69c200
Arg [1] : 0000000000000000000000000000000000000000000000000000017dd7b67a00
Arg [2] : 0000000000000000000000000000000000000000000000000000017dd2901e00
Arg [3] : 0000000000000000000000000000000000000000000000000000017de7298e00
Arg [4] : 0000000000000000000000000000000000000000000000000000017f2673d600


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.