ETH Price: $2,407.48 (+1.48%)

Token

GTA 6 (GTA6)
 

Overview

Max Total Supply

1,000,000,000 GTA6

Holders

36

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.622276345693743174 GTA6

Value
$0.00
0x4af5a1b944bfe59171e11643274c096ace4c5dc7
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:
GTA6

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 6 : GTA6.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

import "../uniswap/IUniswapV2Factory.sol";

contract GTA6 is IERC20, IERC20Metadata, Ownable {
    string private _name;
    string private _symbol;
    uint256 private _totalSupply;

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

    address public uniswapPair;
    address public taxWallet;

    mapping(address => bool) public excludeFromTax;
    uint16 public taxBps;

    constructor(uint256 totalSupply_, uint16 taxBps_) {
        _name = "GTA 6";
        _symbol = "GTA6";

        excludeFromTax[msg.sender] = true;

        taxWallet = msg.sender;

        _mint(msg.sender, totalSupply_);

        taxBps = taxBps_;

        IUniswapV2Factory factory = IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f);
        uniswapPair = factory.createPair(address(this), 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2);
    }

    function name() public view virtual override returns (string memory) {
        return _name;
    }

    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");

        if ((from==uniswapPair || to==uniswapPair) &&
            !excludeFromTax[from] &&
            !excludeFromTax[to]) {
            uint256 tax = amount * taxBps / 10000;
            uint256 receiveAmount = amount - tax;

            _balances[from] = fromBalance - amount;

            _balances[to] += receiveAmount;
            emit Transfer(from, to, receiveAmount);

            if (tax > 0) {
                require(taxWallet!=address(0));

                _balances[taxWallet] += tax;
                emit Transfer(from, taxWallet, tax);
            }
        }
        else {
            _balances[from] = fromBalance - amount;
            _balances[to] += amount;

            emit Transfer(from, to, amount);
        }
    }

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);
    }

    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    function setTaxBps(uint16 taxBps_) public onlyOwner {
        require(taxBps_ <= 10000);

        taxBps = taxBps_;
    }

    function setExcludeFromFees(address account, bool value) public onlyOwner {
        excludeFromTax[account] = value;
    }

    function setTaxWallet(address taxWallet_) public onlyOwner {
        require(taxWallet_!=address(0));
        taxWallet = taxWallet_;
        excludeFromTax[taxWallet_] = true;
    }
}

File 2 of 6 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

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

pragma solidity ^0.8.0;

import "../IERC20.sol";

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

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

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

File 4 of 6 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);

    /**
     * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount) external returns (bool);
}

File 5 of 6 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 6 of 6 : IUniswapV2Factory.sol
pragma solidity >=0.5.0;

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"totalSupply_","type":"uint256"},{"internalType":"uint16","name":"taxBps_","type":"uint16"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","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":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"excludeFromTax","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setExcludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"taxBps_","type":"uint16"}],"name":"setTaxBps","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"taxWallet_","type":"address"}],"name":"setTaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxBps","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b50604051620029b3380380620029b3833981810160405281019062000037919062000537565b620000576200004b620002a660201b60201c565b620002ae60201b60201c565b6040518060400160405280600581526020017f4754412036000000000000000000000000000000000000000000000000000000815250600190816200009d9190620007ee565b506040518060400160405280600481526020017f475441360000000000000000000000000000000000000000000000000000000081525060029081620000e49190620007ee565b506001600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555033600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200019033836200037260201b60201c565b80600960006101000a81548161ffff021916908361ffff1602179055506000735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f90508073ffffffffffffffffffffffffffffffffffffffff1663c9c653963073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26040518363ffffffff1660e01b8152600401620002179291906200091a565b6020604051808303816000875af115801562000237573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200025d919062000978565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050505062000ac5565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620003e4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003db9062000a0b565b60405180910390fd5b8060036000828254620003f8919062000a5c565b9250508190555080600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004ac919062000aa8565b60405180910390a35050565b600080fd5b6000819050919050565b620004d281620004bd565b8114620004de57600080fd5b50565b600081519050620004f281620004c7565b92915050565b600061ffff82169050919050565b6200051181620004f8565b81146200051d57600080fd5b50565b600081519050620005318162000506565b92915050565b60008060408385031215620005515762000550620004b8565b5b60006200056185828601620004e1565b9250506020620005748582860162000520565b9150509250929050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200060057607f821691505b602082108103620006165762000615620005b8565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006807fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000641565b6200068c868362000641565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620006cf620006c9620006c384620004bd565b620006a4565b620004bd565b9050919050565b6000819050919050565b620006eb83620006ae565b62000703620006fa82620006d6565b8484546200064e565b825550505050565b600090565b6200071a6200070b565b62000727818484620006e0565b505050565b5b818110156200074f576200074360008262000710565b6001810190506200072d565b5050565b601f8211156200079e5762000768816200061c565b620007738462000631565b8101602085101562000783578190505b6200079b620007928562000631565b8301826200072c565b50505b505050565b600082821c905092915050565b6000620007c360001984600802620007a3565b1980831691505092915050565b6000620007de8383620007b0565b9150826002028217905092915050565b620007f9826200057e565b67ffffffffffffffff81111562000815576200081462000589565b5b620008218254620005e7565b6200082e82828562000753565b600060209050601f83116001811462000866576000841562000851578287015190505b6200085d8582620007d0565b865550620008cd565b601f19841662000876866200061c565b60005b82811015620008a05784890151825560018201915060208501945060208101905062000879565b86831015620008c05784890151620008bc601f891682620007b0565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200090282620008d5565b9050919050565b6200091481620008f5565b82525050565b600060408201905062000931600083018562000909565b62000940602083018462000909565b9392505050565b6200095281620008f5565b81146200095e57600080fd5b50565b600081519050620009728162000947565b92915050565b600060208284031215620009915762000990620004b8565b5b6000620009a18482850162000961565b91505092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620009f3601f83620009aa565b915062000a0082620009bb565b602082019050919050565b6000602082019050818103600083015262000a2681620009e4565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000a6982620004bd565b915062000a7683620004bd565b925082820190508082111562000a915762000a9062000a2d565b5b92915050565b62000aa281620004bd565b82525050565b600060208201905062000abf600083018462000a97565b92915050565b611ede8062000ad56000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b8578063c816841b1161007c578063c816841b14610368578063d0f5a9bc14610386578063d63cad22146103a2578063dd62ed3e146103be578063ea414b28146103ee578063f2fde38b1461040a57610137565b8063715018a6146102c25780638da5cb5b146102cc57806395d89b41146102ea578063a457c2d714610308578063a9059cbb1461033857610137565b8063313ce567116100ff578063313ce567146101f657806339509351146102145780633eacd2f81461024457806360d1259e1461026257806370a082311461029257610137565b806306fdde031461013c578063095ea7b31461015a57806318160ddd1461018a57806323b872dd146101a85780632dc0562d146101d8575b600080fd5b610144610426565b60405161015191906114c0565b60405180910390f35b610174600480360381019061016f919061157b565b6104b8565b60405161018191906115d6565b60405180910390f35b6101926104db565b60405161019f9190611600565b60405180910390f35b6101c260048036038101906101bd919061161b565b6104e5565b6040516101cf91906115d6565b60405180910390f35b6101e0610514565b6040516101ed919061167d565b60405180910390f35b6101fe61053a565b60405161020b91906116b4565b60405180910390f35b61022e6004803603810190610229919061157b565b610543565b60405161023b91906115d6565b60405180910390f35b61024c61057a565b60405161025991906116ec565b60405180910390f35b61027c60048036038101906102779190611707565b61058e565b60405161028991906115d6565b60405180910390f35b6102ac60048036038101906102a79190611707565b6105ae565b6040516102b99190611600565b60405180910390f35b6102ca6105f7565b005b6102d461060b565b6040516102e1919061167d565b60405180910390f35b6102f2610634565b6040516102ff91906114c0565b60405180910390f35b610322600480360381019061031d919061157b565b6106c6565b60405161032f91906115d6565b60405180910390f35b610352600480360381019061034d919061157b565b61073d565b60405161035f91906115d6565b60405180910390f35b610370610760565b60405161037d919061167d565b60405180910390f35b6103a0600480360381019061039b9190611760565b610786565b005b6103bc60048036038101906103b791906117b9565b6107c1565b005b6103d860048036038101906103d391906117f9565b610824565b6040516103e59190611600565b60405180910390f35b61040860048036038101906104039190611707565b6108ab565b005b610424600480360381019061041f9190611707565b610988565b005b60606001805461043590611868565b80601f016020809104026020016040519081016040528092919081815260200182805461046190611868565b80156104ae5780601f10610483576101008083540402835291602001916104ae565b820191906000526020600020905b81548152906001019060200180831161049157829003601f168201915b5050505050905090565b6000806104c3610a0b565b90506104d0818585610a13565b600191505092915050565b6000600354905090565b6000806104f0610a0b565b90506104fd858285610bdc565b610508858585610c68565b60019150509392505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b60008061054e610a0b565b905061056f8185856105608589610824565b61056a91906118c8565b610a13565b600191505092915050565b600960009054906101000a900461ffff1681565b60086020528060005260406000206000915054906101000a900460ff1681565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105ff6112ee565b610609600061136c565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461064390611868565b80601f016020809104026020016040519081016040528092919081815260200182805461066f90611868565b80156106bc5780601f10610691576101008083540402835291602001916106bc565b820191906000526020600020905b81548152906001019060200180831161069f57829003601f168201915b5050505050905090565b6000806106d1610a0b565b905060006106df8286610824565b905083811015610724576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071b9061196e565b60405180910390fd5b6107318286868403610a13565b60019250505092915050565b600080610748610a0b565b9050610755818585610c68565b600191505092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61078e6112ee565b6127108161ffff1611156107a157600080fd5b80600960006101000a81548161ffff021916908361ffff16021790555050565b6107c96112ee565b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108b36112ee565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108ec57600080fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6109906112ee565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f690611a00565b60405180910390fd5b610a088161136c565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7990611a92565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae890611b24565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bcf9190611600565b60405180910390a3505050565b6000610be88484610824565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c625781811015610c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4b90611b90565b60405180910390fd5b610c618484848403610a13565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cce90611c22565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3d90611cb4565b60405180910390fd5b6000600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc490611d46565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610e765750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b8015610ecc5750600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015610f225750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156111dd576000612710600960009054906101000a900461ffff1661ffff1684610f4c9190611d66565b610f569190611dd7565b905060008184610f669190611e08565b90508383610f749190611e08565b600460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461100691906118c8565b925050819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161106a9190611600565b60405180910390a360008211156111d657600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036110d657600080fd5b8160046000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461114791906118c8565b92505081905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111cd9190611600565b60405180910390a35b50506112e8565b81816111e99190611e08565b600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461127b91906118c8565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112df9190611600565b60405180910390a35b50505050565b6112f6610a0b565b73ffffffffffffffffffffffffffffffffffffffff1661131461060b565b73ffffffffffffffffffffffffffffffffffffffff161461136a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136190611e88565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561146a57808201518184015260208101905061144f565b60008484015250505050565b6000601f19601f8301169050919050565b600061149282611430565b61149c818561143b565b93506114ac81856020860161144c565b6114b581611476565b840191505092915050565b600060208201905081810360008301526114da8184611487565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611512826114e7565b9050919050565b61152281611507565b811461152d57600080fd5b50565b60008135905061153f81611519565b92915050565b6000819050919050565b61155881611545565b811461156357600080fd5b50565b6000813590506115758161154f565b92915050565b60008060408385031215611592576115916114e2565b5b60006115a085828601611530565b92505060206115b185828601611566565b9150509250929050565b60008115159050919050565b6115d0816115bb565b82525050565b60006020820190506115eb60008301846115c7565b92915050565b6115fa81611545565b82525050565b600060208201905061161560008301846115f1565b92915050565b600080600060608486031215611634576116336114e2565b5b600061164286828701611530565b935050602061165386828701611530565b925050604061166486828701611566565b9150509250925092565b61167781611507565b82525050565b6000602082019050611692600083018461166e565b92915050565b600060ff82169050919050565b6116ae81611698565b82525050565b60006020820190506116c960008301846116a5565b92915050565b600061ffff82169050919050565b6116e6816116cf565b82525050565b600060208201905061170160008301846116dd565b92915050565b60006020828403121561171d5761171c6114e2565b5b600061172b84828501611530565b91505092915050565b61173d816116cf565b811461174857600080fd5b50565b60008135905061175a81611734565b92915050565b600060208284031215611776576117756114e2565b5b60006117848482850161174b565b91505092915050565b611796816115bb565b81146117a157600080fd5b50565b6000813590506117b38161178d565b92915050565b600080604083850312156117d0576117cf6114e2565b5b60006117de85828601611530565b92505060206117ef858286016117a4565b9150509250929050565b600080604083850312156118105761180f6114e2565b5b600061181e85828601611530565b925050602061182f85828601611530565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061188057607f821691505b60208210810361189357611892611839565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006118d382611545565b91506118de83611545565b92508282019050808211156118f6576118f5611899565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061195860258361143b565b9150611963826118fc565b604082019050919050565b600060208201905081810360008301526119878161194b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006119ea60268361143b565b91506119f58261198e565b604082019050919050565b60006020820190508181036000830152611a19816119dd565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611a7c60248361143b565b9150611a8782611a20565b604082019050919050565b60006020820190508181036000830152611aab81611a6f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b0e60228361143b565b9150611b1982611ab2565b604082019050919050565b60006020820190508181036000830152611b3d81611b01565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611b7a601d8361143b565b9150611b8582611b44565b602082019050919050565b60006020820190508181036000830152611ba981611b6d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611c0c60258361143b565b9150611c1782611bb0565b604082019050919050565b60006020820190508181036000830152611c3b81611bff565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611c9e60238361143b565b9150611ca982611c42565b604082019050919050565b60006020820190508181036000830152611ccd81611c91565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611d3060268361143b565b9150611d3b82611cd4565b604082019050919050565b60006020820190508181036000830152611d5f81611d23565b9050919050565b6000611d7182611545565b9150611d7c83611545565b9250828202611d8a81611545565b91508282048414831517611da157611da0611899565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611de282611545565b9150611ded83611545565b925082611dfd57611dfc611da8565b5b828204905092915050565b6000611e1382611545565b9150611e1e83611545565b9250828203905081811115611e3657611e35611899565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611e7260208361143b565b9150611e7d82611e3c565b602082019050919050565b60006020820190508181036000830152611ea181611e65565b905091905056fea264697066735822122045ecf81392f560b69c54fd427727c766a7497d133fceab6e73f57b42caea542764736f6c634300081300330000000000000000000000000000000000000000033b2e3c9fd0803ce800000000000000000000000000000000000000000000000000000000000000000001f4

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c8063715018a6116100b8578063c816841b1161007c578063c816841b14610368578063d0f5a9bc14610386578063d63cad22146103a2578063dd62ed3e146103be578063ea414b28146103ee578063f2fde38b1461040a57610137565b8063715018a6146102c25780638da5cb5b146102cc57806395d89b41146102ea578063a457c2d714610308578063a9059cbb1461033857610137565b8063313ce567116100ff578063313ce567146101f657806339509351146102145780633eacd2f81461024457806360d1259e1461026257806370a082311461029257610137565b806306fdde031461013c578063095ea7b31461015a57806318160ddd1461018a57806323b872dd146101a85780632dc0562d146101d8575b600080fd5b610144610426565b60405161015191906114c0565b60405180910390f35b610174600480360381019061016f919061157b565b6104b8565b60405161018191906115d6565b60405180910390f35b6101926104db565b60405161019f9190611600565b60405180910390f35b6101c260048036038101906101bd919061161b565b6104e5565b6040516101cf91906115d6565b60405180910390f35b6101e0610514565b6040516101ed919061167d565b60405180910390f35b6101fe61053a565b60405161020b91906116b4565b60405180910390f35b61022e6004803603810190610229919061157b565b610543565b60405161023b91906115d6565b60405180910390f35b61024c61057a565b60405161025991906116ec565b60405180910390f35b61027c60048036038101906102779190611707565b61058e565b60405161028991906115d6565b60405180910390f35b6102ac60048036038101906102a79190611707565b6105ae565b6040516102b99190611600565b60405180910390f35b6102ca6105f7565b005b6102d461060b565b6040516102e1919061167d565b60405180910390f35b6102f2610634565b6040516102ff91906114c0565b60405180910390f35b610322600480360381019061031d919061157b565b6106c6565b60405161032f91906115d6565b60405180910390f35b610352600480360381019061034d919061157b565b61073d565b60405161035f91906115d6565b60405180910390f35b610370610760565b60405161037d919061167d565b60405180910390f35b6103a0600480360381019061039b9190611760565b610786565b005b6103bc60048036038101906103b791906117b9565b6107c1565b005b6103d860048036038101906103d391906117f9565b610824565b6040516103e59190611600565b60405180910390f35b61040860048036038101906104039190611707565b6108ab565b005b610424600480360381019061041f9190611707565b610988565b005b60606001805461043590611868565b80601f016020809104026020016040519081016040528092919081815260200182805461046190611868565b80156104ae5780601f10610483576101008083540402835291602001916104ae565b820191906000526020600020905b81548152906001019060200180831161049157829003601f168201915b5050505050905090565b6000806104c3610a0b565b90506104d0818585610a13565b600191505092915050565b6000600354905090565b6000806104f0610a0b565b90506104fd858285610bdc565b610508858585610c68565b60019150509392505050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60006012905090565b60008061054e610a0b565b905061056f8185856105608589610824565b61056a91906118c8565b610a13565b600191505092915050565b600960009054906101000a900461ffff1681565b60086020528060005260406000206000915054906101000a900460ff1681565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105ff6112ee565b610609600061136c565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461064390611868565b80601f016020809104026020016040519081016040528092919081815260200182805461066f90611868565b80156106bc5780601f10610691576101008083540402835291602001916106bc565b820191906000526020600020905b81548152906001019060200180831161069f57829003601f168201915b5050505050905090565b6000806106d1610a0b565b905060006106df8286610824565b905083811015610724576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071b9061196e565b60405180910390fd5b6107318286868403610a13565b60019250505092915050565b600080610748610a0b565b9050610755818585610c68565b600191505092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61078e6112ee565b6127108161ffff1611156107a157600080fd5b80600960006101000a81548161ffff021916908361ffff16021790555050565b6107c96112ee565b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108b36112ee565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108ec57600080fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6109906112ee565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f690611a00565b60405180910390fd5b610a088161136c565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7990611a92565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610af1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae890611b24565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610bcf9190611600565b60405180910390a3505050565b6000610be88484610824565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c625781811015610c54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4b90611b90565b60405180910390fd5b610c618484848403610a13565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610cd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cce90611c22565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d46576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3d90611cb4565b60405180910390fd5b6000600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610dcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dc490611d46565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480610e765750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b8015610ecc5750600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015610f225750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156111dd576000612710600960009054906101000a900461ffff1661ffff1684610f4c9190611d66565b610f569190611dd7565b905060008184610f669190611e08565b90508383610f749190611e08565b600460008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461100691906118c8565b925050819055508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161106a9190611600565b60405180910390a360008211156111d657600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036110d657600080fd5b8160046000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461114791906118c8565b92505081905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111cd9190611600565b60405180910390a35b50506112e8565b81816111e99190611e08565b600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461127b91906118c8565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112df9190611600565b60405180910390a35b50505050565b6112f6610a0b565b73ffffffffffffffffffffffffffffffffffffffff1661131461060b565b73ffffffffffffffffffffffffffffffffffffffff161461136a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136190611e88565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561146a57808201518184015260208101905061144f565b60008484015250505050565b6000601f19601f8301169050919050565b600061149282611430565b61149c818561143b565b93506114ac81856020860161144c565b6114b581611476565b840191505092915050565b600060208201905081810360008301526114da8184611487565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611512826114e7565b9050919050565b61152281611507565b811461152d57600080fd5b50565b60008135905061153f81611519565b92915050565b6000819050919050565b61155881611545565b811461156357600080fd5b50565b6000813590506115758161154f565b92915050565b60008060408385031215611592576115916114e2565b5b60006115a085828601611530565b92505060206115b185828601611566565b9150509250929050565b60008115159050919050565b6115d0816115bb565b82525050565b60006020820190506115eb60008301846115c7565b92915050565b6115fa81611545565b82525050565b600060208201905061161560008301846115f1565b92915050565b600080600060608486031215611634576116336114e2565b5b600061164286828701611530565b935050602061165386828701611530565b925050604061166486828701611566565b9150509250925092565b61167781611507565b82525050565b6000602082019050611692600083018461166e565b92915050565b600060ff82169050919050565b6116ae81611698565b82525050565b60006020820190506116c960008301846116a5565b92915050565b600061ffff82169050919050565b6116e6816116cf565b82525050565b600060208201905061170160008301846116dd565b92915050565b60006020828403121561171d5761171c6114e2565b5b600061172b84828501611530565b91505092915050565b61173d816116cf565b811461174857600080fd5b50565b60008135905061175a81611734565b92915050565b600060208284031215611776576117756114e2565b5b60006117848482850161174b565b91505092915050565b611796816115bb565b81146117a157600080fd5b50565b6000813590506117b38161178d565b92915050565b600080604083850312156117d0576117cf6114e2565b5b60006117de85828601611530565b92505060206117ef858286016117a4565b9150509250929050565b600080604083850312156118105761180f6114e2565b5b600061181e85828601611530565b925050602061182f85828601611530565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061188057607f821691505b60208210810361189357611892611839565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006118d382611545565b91506118de83611545565b92508282019050808211156118f6576118f5611899565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061195860258361143b565b9150611963826118fc565b604082019050919050565b600060208201905081810360008301526119878161194b565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006119ea60268361143b565b91506119f58261198e565b604082019050919050565b60006020820190508181036000830152611a19816119dd565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611a7c60248361143b565b9150611a8782611a20565b604082019050919050565b60006020820190508181036000830152611aab81611a6f565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b0e60228361143b565b9150611b1982611ab2565b604082019050919050565b60006020820190508181036000830152611b3d81611b01565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611b7a601d8361143b565b9150611b8582611b44565b602082019050919050565b60006020820190508181036000830152611ba981611b6d565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611c0c60258361143b565b9150611c1782611bb0565b604082019050919050565b60006020820190508181036000830152611c3b81611bff565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611c9e60238361143b565b9150611ca982611c42565b604082019050919050565b60006020820190508181036000830152611ccd81611c91565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611d3060268361143b565b9150611d3b82611cd4565b604082019050919050565b60006020820190508181036000830152611d5f81611d23565b9050919050565b6000611d7182611545565b9150611d7c83611545565b9250828202611d8a81611545565b91508282048414831517611da157611da0611899565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000611de282611545565b9150611ded83611545565b925082611dfd57611dfc611da8565b5b828204905092915050565b6000611e1382611545565b9150611e1e83611545565b9250828203905081811115611e3657611e35611899565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611e7260208361143b565b9150611e7d82611e3c565b602082019050919050565b60006020820190508181036000830152611ea181611e65565b905091905056fea264697066735822122045ecf81392f560b69c54fd427727c766a7497d133fceab6e73f57b42caea542764736f6c63430008130033

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

0000000000000000000000000000000000000000033b2e3c9fd0803ce800000000000000000000000000000000000000000000000000000000000000000001f4

-----Decoded View---------------
Arg [0] : totalSupply_ (uint256): 1000000000000000000000000000
Arg [1] : taxBps_ (uint16): 500

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
Arg [1] : 00000000000000000000000000000000000000000000000000000000000001f4


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.