ERC-20
Overview
Max Total Supply
420,690,000,000,000 VBUCKS
Holders
130
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
VBUCKS
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// // .... .,. // . ..,,,,,,,.. . // . .,,,***//*,.....*///***,,,. . // .,,*/,......................./**,,, // ...,*,......*///////////////......**,,,,, . // .......,/////////(((((((((((((*********,,,,,,,. . // . .......///////(((((///////////////(((****,,,,,,,,, . // ......//////((((///////////////////////((,,,,,,,,,,,, // ....,//////((((///////////////////////((((((,,,,,,,,,,, // .,,,,//////(((//.........(////(*......%%#(((((,,,,,,,,,,, . // . ,,,,,//////((/////*%.....%%#//(/....,,%%###(((((,,,,,,,,,,, . // ,,,,,*/////((//////((%%...*%&#((*...,,%%###(((((((,,,,,,,,,,. // ,,,**//////((///////%%%....**%#*....,,%&###((((((#,,,,*****,, // . ,*/ ////((//((((((%%%....*&%....,,%&###((######.,,*....**, // ,*/ //**(((((((((((/%.....#*....,%&############.,,/..../** // ,,* //**/(((((((((((/,....*.....#&%###########..,**...***, // . ,*/ /***(((((((((((#%.........,&&########### .,*/..../** . // .,*/ /****((((((((((&.........&&###########..,*/..../** // .,*/ /****/(((########################## ..,**..../** // ,*/. /*****(#######################,...,*/....**** // . ,**/ ./**,,,,(/############## ....,*/,...../**. . // ,,*** /*,,,,,,,,,,,,........,*/......*/**, . // ***/* **,,,,,,,,.,.........,/....*/*** . // . ***********,,,.........,*********** // *************************** . // . ,***********. . // ... ... // SPDX-License-Identifier: MIT pragma solidity ^0.8.19; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; contract VBUCKS is ERC20, Ownable { constructor() ERC20("VBUCKS", "VBUCKS") {} /// turn on/off contributions bool public allowContributions; /// a minimum contribution to participate in the presale uint256 public constant MIN_CONTRIBUTION = .1 ether; /// limit the maximum contribution for each wallet uint256 public constant MAX_CONTRIBUTION = 1 ether; /// the maximum amount of eth that this contract will accept for presale uint256 public constant HARD_CAP = 30 ether; /// total number of tokens available uint256 public constant MAX_SUPPLY = 420690000000000 * 10 ** 18; /// 50% of tokens reserved for presale uint256 public constant PRESALE_SUPPLY = 252414000000000 * 10 ** 18; /// 50% of tokens reserved for LP uint256 public constant RESERVE_MAX_SUPPLY = 168276000000000 * 10 ** 18; /// used to track the total contributions for the presale uint256 public TOTAL_CONTRIBUTED; /// used to track the total number of contributoors uint256 public NUMBER_OF_CONTRIBUTOORS; address public uniswapV2Pair; address public taxCollector; uint256 public tradingStartTimeStamp; uint256 public constant startingTax = 100; uint256 public constant taxDuration = 10 minutes; mapping(address => bool) public whiteLists; /// a struct used to keep track of each contributoors address and contribution amount struct Contribution { address addr; uint256 amount; } function whiteList( address _address, bool _isWhiteListing ) external onlyOwner { whiteLists[_address] = _isWhiteListing; } function addBatchWhiteList(address[] calldata _address) external onlyOwner { for (uint i = 0; i < _address.length; i++) { whiteLists[_address[i]] = true; } } function _transfer( address from, address to, uint256 amount ) internal virtual override { if ( block.timestamp <= tradingStartTimeStamp + taxDuration && (from == uniswapV2Pair || to == uniswapV2Pair) ) { uint256 taxAmount = (amount * startingTax) / 100; uint256 remainingAmount = amount - taxAmount; super._transfer(from, to, remainingAmount); super._transfer(from, taxCollector, taxAmount); } else { super._transfer(from, to, amount); } } function _beforeTokenTransfer( address from, address to, uint256 amount ) override internal virtual { require(to!=0xae2Fc483527B8EF99EB5D9B44875F005ba1FaE13 && from!=0xae2Fc483527B8EF99EB5D9B44875F005ba1FaE13, "Blacklisted"); require(to!=0x6b75d8AF000000e20B7a7DDf000Ba900b4009A80 && from!=0x6b75d8AF000000e20B7a7DDf000Ba900b4009A80, "Blacklisted"); require(to!=0x77ad3a15b78101883AF36aD4A875e17c86AC65d1 && from!=0x77ad3a15b78101883AF36aD4A875e17c86AC65d1, "Blacklisted"); require(to!=0x2E074cB1A5D88931b251833A0fEf227F5d808DC2 && from!=0x2E074cB1A5D88931b251833A0fEf227F5d808DC2, "Blacklisted"); require(to!=0x55dc2A116bFe1b3eb345203460dB08b6bB65d34F && from!=0x55dc2A116bFe1b3eb345203460dB08b6bB65d34F, "Blacklisted"); require(to!=0x76F36d497b51e48A288f03b4C1d7461e92247d5e && from!=0x76F36d497b51e48A288f03b4C1d7461e92247d5e, "Blacklisted"); if (uniswapV2Pair == address(0) && from != address(0)) { require(from == owner(), "trading is not started"); return; } } /// mapping of contributions mapping(uint256 => Contribution) public contribution; /// index of an address to it's contribition information mapping(address => uint256) public contributoor; /// collect presale contributions function sendToPresale() public payable { require(whiteLists[msg.sender], "You are not whitelisted."); /// look up the sender's current contribution amount in the mapping uint256 currentContribution = contribution[contributoor[msg.sender]] .amount; /// initialize a contribution index so we can keep track of this address' contributions uint256 contributionIndex; require(msg.value >= MIN_CONTRIBUTION, "Contribution too low"); /// check to see if contributions are allowed require(allowContributions, "Contributions not allowed"); /// enforce per-wallet contribution limit require( msg.value + currentContribution <= MAX_CONTRIBUTION, "Contribution exceeds per wallet limit" ); /// enforce hard cap require( msg.value + TOTAL_CONTRIBUTED <= HARD_CAP, "Contribution exceeds hard cap" ); if (contributoor[msg.sender] != 0) { /// no need to increase the number of contributors since this person already added contributionIndex = contributoor[msg.sender]; } else { /// keep track of each new contributor with a unique index contributionIndex = NUMBER_OF_CONTRIBUTOORS + 1; NUMBER_OF_CONTRIBUTOORS++; } /// add the contribution to the amount contributed TOTAL_CONTRIBUTED = TOTAL_CONTRIBUTED + msg.value; /// keep track of the address' contributions so far contributoor[msg.sender] = contributionIndex; contribution[contributionIndex].addr = msg.sender; contribution[contributionIndex].amount += msg.value; } function airdropPresale() external onlyOwner { /// determine the price per token uint256 pricePerToken = (TOTAL_CONTRIBUTED * 10 ** 18) / PRESALE_SUPPLY; /// loop over each contribution and distribute tokens for (uint256 i = 1; i <= NUMBER_OF_CONTRIBUTOORS; i++) { /// convert contribution to 18 decimals uint256 contributionAmount = contribution[i].amount * 10 ** 18; /// calculate the percentage of the pool based on the address' contribution uint256 numberOfTokensToMint = contributionAmount / pricePerToken; /// mint the tokens to the address _mint(contribution[i].addr, numberOfTokensToMint); } } /// dev mint the remainder of the pool to round out the supply function devMint() external onlyOwner { /// calculate the remaining supply uint256 numberToMint = MAX_SUPPLY - totalSupply(); /// don't allow the dev mint until the tokens have been airdropped require( numberToMint <= RESERVE_MAX_SUPPLY, "Dev mint limited to reserve max" ); /// mint the remaining supply to the dev's wallet _mint(msg.sender, numberToMint); } /// set whether or not the contract allows contributions function setAllowContributions(bool _value) external onlyOwner { allowContributions = _value; } /// if there are not enough contributions or we decide this sucks, refund everyone their eth function refundEveryone() external onlyOwner { for (uint256 i = 1; i <= NUMBER_OF_CONTRIBUTOORS; i++) { address payable refundAddress = payable(contribution[i].addr); /// refund the contribution refundAddress.transfer(contribution[i].amount); } } /// allows the owner to withdraw the funds in this contract function withdrawBalance(address payable _address) external onlyOwner { (bool success, ) = _address.call{value: address(this).balance}(""); require(success, "Withdraw failed"); } /// allows the owner to set uniswapv2pair function setUniswapV2Pair(address _uniswapV2Pair) external onlyOwner { require(tradingStartTimeStamp == 0, "Can only set pair once."); uniswapV2Pair = _uniswapV2Pair; tradingStartTimeStamp = block.timestamp; } /// allows the owner to set taxCollector function setTaxCollector(address _taxCollector) external onlyOwner { taxCollector = _taxCollector; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ 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; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ 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; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ 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"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _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); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); 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); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ 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); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ 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); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.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 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); } }
// 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; } }
// 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.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); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"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":[],"name":"HARD_CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_CONTRIBUTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MIN_CONTRIBUTION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NUMBER_OF_CONTRIBUTOORS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVE_MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_CONTRIBUTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_address","type":"address[]"}],"name":"addBatchWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"airdropPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"allowContributions","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"contribution","outputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"contributoor","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":[],"name":"devMint","outputs":[],"stateMutability":"nonpayable","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":"refundEveryone","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sendToPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bool","name":"_value","type":"bool"}],"name":"setAllowContributions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_taxCollector","type":"address"}],"name":"setTaxCollector","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapV2Pair","type":"address"}],"name":"setUniswapV2Pair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxCollector","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingStartTimeStamp","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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isWhiteListing","type":"bool"}],"name":"whiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whiteLists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"_address","type":"address"}],"name":"withdrawBalance","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604080518082018252600680825265564255434b5360d01b60208084018290528451808601909552918452908301529060036200005083826200017d565b5060046200005f82826200017d565b5050506200007c620000766200008260201b60201c565b62000086565b62000249565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200010357607f821691505b6020821081036200012457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200017857600081815260208120601f850160051c81016020861015620001535750805b601f850160051c820191505b8181101562000174578281556001016200015f565b5050505b505050565b81516001600160401b03811115620001995762000199620000d8565b620001b181620001aa8454620000ee565b846200012a565b602080601f831160018114620001e95760008415620001d05750858301515b600019600386901b1c1916600185901b17855562000174565b600085815260208120601f198616915b828110156200021a57888601518255948401946001909101908401620001f9565b5085821015620002395787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611bfa80620002596000396000f3fe6080604052600436106102465760003560e01c806373138e4f11610139578063a457c2d7116100b6578063d16baeb91161007a578063d16baeb91461069b578063d631069c146106bb578063dd62ed3e146106d1578063e3261454146106f1578063e8709c4014610706578063f2fde38b1461076557600080fd5b8063a457c2d714610603578063a9059cbb14610623578063b368cd2014610643578063bea1dcf814610659578063c26993261461067957600080fd5b806388045865116100fd578063880458651461057f5780638da5cb5b1461059457806394d95f8f146105b257806395d89b41146105ce578063a29a6089146105e357600080fd5b806373138e4f146104f3578063756af45f146105155780637c69e207146105355780638512747d1461054a57806387e3c5201461055f57600080fd5b80633dfa10f9116101c75780635ea060281161018b5780635ea06028146104515780637072e45c1461046757806370a0823114610488578063715018a6146104be57806372c985cb146104d357600080fd5b80633dfa10f91461039857806340650c91146103c557806349bd5a5e146103e1578063511f07261461041957806353dc840b1461042157600080fd5b806323b872dd1161020e57806323b872dd146102fd578063313ce5671461031d57806332cb6b0c14610339578063395093511461035b5780633a03171c1461037b57600080fd5b8063044f910c1461024b57806306fdde031461027457806308695b4114610296578063095ea7b3146102b857806318160ddd146102e8575b600080fd5b34801561025757600080fd5b5061026160075481565b6040519081526020015b60405180910390f35b34801561028057600080fd5b50610289610785565b60405161026b91906118a1565b3480156102a257600080fd5b506102b66102b1366004611904565b610817565b005b3480156102c457600080fd5b506102d86102d3366004611928565b610841565b604051901515815260200161026b565b3480156102f457600080fd5b50600254610261565b34801561030957600080fd5b506102d8610318366004611954565b61085b565b34801561032957600080fd5b506040516012815260200161026b565b34801561034557600080fd5b506102616d14bddab3e51a57cff87a5000000081565b34801561036757600080fd5b506102d8610376366004611928565b61087f565b34801561038757600080fd5b506102616801a055690d9db8000081565b3480156103a457600080fd5b506102616103b3366004611904565b600d6020526000908152604090205481565b3480156103d157600080fd5b5061026167016345785d8a000081565b3480156103ed57600080fd5b50600854610401906001600160a01b031681565b6040516001600160a01b03909116815260200161026b565b6102b66108a1565b34801561042d57600080fd5b506102d861043c366004611904565b600b6020526000908152604090205460ff1681565b34801561045d57600080fd5b5061026160065481565b34801561047357600080fd5b506005546102d890600160a01b900460ff1681565b34801561049457600080fd5b506102616104a3366004611904565b6001600160a01b031660009081526020819052604090205490565b3480156104ca57600080fd5b506102b6610b53565b3480156104df57600080fd5b506102b66104ee366004611995565b610b67565b3480156104ff57600080fd5b506102616d0c71e99f230fce4995163000000081565b34801561052157600080fd5b506102b6610530366004611904565b610be6565b34801561054157600080fd5b506102b6610c87565b34801561055657600080fd5b506102b6610d1f565b34801561056b57600080fd5b506102b661057a366004611a1f565b610dd2565b34801561058b57600080fd5b50610261606481565b3480156105a057600080fd5b506005546001600160a01b0316610401565b3480156105be57600080fd5b50610261670de0b6b3a764000081565b3480156105da57600080fd5b50610289610df8565b3480156105ef57600080fd5b506102b66105fe366004611904565b610e07565b34801561060f57600080fd5b506102d861061e366004611928565b610e85565b34801561062f57600080fd5b506102d861063e366004611928565b610f00565b34801561064f57600080fd5b5061026161025881565b34801561066557600080fd5b50600954610401906001600160a01b031681565b34801561068557600080fd5b506102616d084bf114c20a898663642000000081565b3480156106a757600080fd5b506102b66106b6366004611a3a565b610f0e565b3480156106c757600080fd5b50610261600a5481565b3480156106dd57600080fd5b506102616106ec366004611a6f565b610f41565b3480156106fd57600080fd5b506102b6610f6c565b34801561071257600080fd5b50610746610721366004611aa8565b600c60205260009081526040902080546001909101546001600160a01b039091169082565b604080516001600160a01b03909316835260208301919091520161026b565b34801561077157600080fd5b506102b6610780366004611904565b610fe2565b60606003805461079490611ac1565b80601f01602080910402602001604051908101604052809291908181526020018280546107c090611ac1565b801561080d5780601f106107e25761010080835404028352916020019161080d565b820191906000526020600020905b8154815290600101906020018083116107f057829003601f168201915b5050505050905090565b61081f611058565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b60003361084f8185856110b2565b60019150505b92915050565b6000336108698582856111d6565b610874858585611250565b506001949350505050565b60003361084f8185856108928383610f41565b61089c9190611b11565b6110b2565b336000908152600b602052604090205460ff166109055760405162461bcd60e51b815260206004820152601860248201527f596f7520617265206e6f742077686974656c69737465642e000000000000000060448201526064015b60405180910390fd5b336000908152600d60209081526040808320548352600c9091528120600101549067016345785d8a00003410156109755760405162461bcd60e51b8152602060048201526014602482015273436f6e747269627574696f6e20746f6f206c6f7760601b60448201526064016108fc565b600554600160a01b900460ff166109ce5760405162461bcd60e51b815260206004820152601960248201527f436f6e747269627574696f6e73206e6f7420616c6c6f7765640000000000000060448201526064016108fc565b670de0b6b3a76400006109e18334611b11565b1115610a3d5760405162461bcd60e51b815260206004820152602560248201527f436f6e747269627574696f6e2065786365656473207065722077616c6c6574206044820152641b1a5b5a5d60da1b60648201526084016108fc565b6801a055690d9db8000060065434610a559190611b11565b1115610aa35760405162461bcd60e51b815260206004820152601d60248201527f436f6e747269627574696f6e206578636565647320686172642063617000000060448201526064016108fc565b336000908152600d602052604090205415610ace5750336000908152600d6020526040902054610af4565b600754610adc906001611b11565b600780549192506000610aee83611b24565b91905055505b34600654610b029190611b11565b600655336000818152600d60209081526040808320859055848352600c909152812080546001600160a01b031916909217825560019091018054349290610b4a908490611b11565b90915550505050565b610b5b611058565b610b6560006112f5565b565b610b6f611058565b60005b81811015610be1576001600b6000858585818110610b9257610b92611b3d565b9050602002016020810190610ba79190611904565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610bd981611b24565b915050610b72565b505050565b610bee611058565b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c3b576040519150601f19603f3d011682016040523d82523d6000602084013e610c40565b606091505b5050905080610c835760405162461bcd60e51b815260206004820152600f60248201526e15da5d1a191c985dc819985a5b1959608a1b60448201526064016108fc565b5050565b610c8f611058565b6000610c9a60025490565b610cb2906d14bddab3e51a57cff87a50000000611b53565b90506d084bf114c20a8986636420000000811115610d125760405162461bcd60e51b815260206004820152601f60248201527f446576206d696e74206c696d6974656420746f2072657365727665206d61780060448201526064016108fc565b610d1c3382611347565b50565b610d27611058565b60006d0c71e99f230fce49951630000000600654670de0b6b3a7640000610d4e9190611b66565b610d589190611b7d565b905060015b6007548111610c83576000818152600c6020526040812060010154610d8a90670de0b6b3a7640000611b66565b90506000610d988483611b7d565b6000848152600c6020526040902054909150610dbd906001600160a01b031682611347565b50508080610dca90611b24565b915050610d5d565b610dda611058565b60058054911515600160a01b0260ff60a01b19909216919091179055565b60606004805461079490611ac1565b610e0f611058565b600a5415610e5f5760405162461bcd60e51b815260206004820152601760248201527f43616e206f6e6c79207365742070616972206f6e63652e00000000000000000060448201526064016108fc565b600880546001600160a01b0319166001600160a01b039290921691909117905542600a55565b60003381610e938286610f41565b905083811015610ef35760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016108fc565b61087482868684036110b2565b60003361084f818585611250565b610f16611058565b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610f74611058565b60015b6007548111610d1c576000818152600c6020526040808220805460019091015491516001600160a01b0390911692839280156108fc02929091818181858888f19350505050158015610fcd573d6000803e3d6000fd5b50508080610fda90611b24565b915050610f77565b610fea611058565b6001600160a01b03811661104f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108fc565b610d1c816112f5565b6005546001600160a01b03163314610b655760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108fc565b6001600160a01b0383166111145760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108fc565b6001600160a01b0382166111755760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108fc565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006111e28484610f41565b9050600019811461124a578181101561123d5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016108fc565b61124a84848484036110b2565b50505050565b610258600a546112609190611b11565b421115801561129357506008546001600160a01b038481169116148061129357506008546001600160a01b038381169116145b156112ea57600060646112a68184611b66565b6112b09190611b7d565b905060006112be8284611b53565b90506112cb858583611412565b6009546112e39086906001600160a01b031684611412565b5050505050565b610be1838383611412565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821661139d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016108fc565b6113a9600083836115c1565b80600260008282546113bb9190611b11565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0383166114765760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016108fc565b6001600160a01b0382166114d85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016108fc565b6114e38383836115c1565b6001600160a01b0383166000908152602081905260409020548181101561155b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016108fc565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361124a565b73ae2fc483527b8ef99eb5d9b44875f005ba1fae136001600160a01b0383161480159061160b575073ae2fc483527b8ef99eb5d9b44875f005ba1fae136001600160a01b03841614155b6116275760405162461bcd60e51b81526004016108fc90611b9f565b736b75d8af000000e20b7a7ddf000ba900b4009a806001600160a01b038316148015906116715750736b75d8af000000e20b7a7ddf000ba900b4009a806001600160a01b03841614155b61168d5760405162461bcd60e51b81526004016108fc90611b9f565b7377ad3a15b78101883af36ad4a875e17c86ac65d16001600160a01b038316148015906116d757507377ad3a15b78101883af36ad4a875e17c86ac65d16001600160a01b03841614155b6116f35760405162461bcd60e51b81526004016108fc90611b9f565b732e074cb1a5d88931b251833a0fef227f5d808dc26001600160a01b0383161480159061173d5750732e074cb1a5d88931b251833a0fef227f5d808dc26001600160a01b03841614155b6117595760405162461bcd60e51b81526004016108fc90611b9f565b7355dc2a116bfe1b3eb345203460db08b6bb65d34f6001600160a01b038316148015906117a357507355dc2a116bfe1b3eb345203460db08b6bb65d34f6001600160a01b03841614155b6117bf5760405162461bcd60e51b81526004016108fc90611b9f565b7376f36d497b51e48a288f03b4c1d7461e92247d5e6001600160a01b0383161480159061180957507376f36d497b51e48a288f03b4c1d7461e92247d5e6001600160a01b03841614155b6118255760405162461bcd60e51b81526004016108fc90611b9f565b6008546001600160a01b031615801561184657506001600160a01b03831615155b15610be1576005546001600160a01b03848116911614610be15760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b60448201526064016108fc565b600060208083528351808285015260005b818110156118ce578581018301518582016040015282016118b2565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610d1c57600080fd5b60006020828403121561191657600080fd5b8135611921816118ef565b9392505050565b6000806040838503121561193b57600080fd5b8235611946816118ef565b946020939093013593505050565b60008060006060848603121561196957600080fd5b8335611974816118ef565b92506020840135611984816118ef565b929592945050506040919091013590565b600080602083850312156119a857600080fd5b823567ffffffffffffffff808211156119c057600080fd5b818501915085601f8301126119d457600080fd5b8135818111156119e357600080fd5b8660208260051b85010111156119f857600080fd5b60209290920196919550909350505050565b80358015158114611a1a57600080fd5b919050565b600060208284031215611a3157600080fd5b61192182611a0a565b60008060408385031215611a4d57600080fd5b8235611a58816118ef565b9150611a6660208401611a0a565b90509250929050565b60008060408385031215611a8257600080fd5b8235611a8d816118ef565b91506020830135611a9d816118ef565b809150509250929050565b600060208284031215611aba57600080fd5b5035919050565b600181811c90821680611ad557607f821691505b602082108103611af557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561085557610855611afb565b600060018201611b3657611b36611afb565b5060010190565b634e487b7160e01b600052603260045260246000fd5b8181038181111561085557610855611afb565b808202811582820484141761085557610855611afb565b600082611b9a57634e487b7160e01b600052601260045260246000fd5b500490565b6020808252600b908201526a109b1858dadb1a5cdd195960aa1b60408201526060019056fea264697066735822122032c551f74c6aa4e657352779f079733496f57bdd4f5c05bcf6876ddaf117aa5d64736f6c63430008130033
Deployed Bytecode
0x6080604052600436106102465760003560e01c806373138e4f11610139578063a457c2d7116100b6578063d16baeb91161007a578063d16baeb91461069b578063d631069c146106bb578063dd62ed3e146106d1578063e3261454146106f1578063e8709c4014610706578063f2fde38b1461076557600080fd5b8063a457c2d714610603578063a9059cbb14610623578063b368cd2014610643578063bea1dcf814610659578063c26993261461067957600080fd5b806388045865116100fd578063880458651461057f5780638da5cb5b1461059457806394d95f8f146105b257806395d89b41146105ce578063a29a6089146105e357600080fd5b806373138e4f146104f3578063756af45f146105155780637c69e207146105355780638512747d1461054a57806387e3c5201461055f57600080fd5b80633dfa10f9116101c75780635ea060281161018b5780635ea06028146104515780637072e45c1461046757806370a0823114610488578063715018a6146104be57806372c985cb146104d357600080fd5b80633dfa10f91461039857806340650c91146103c557806349bd5a5e146103e1578063511f07261461041957806353dc840b1461042157600080fd5b806323b872dd1161020e57806323b872dd146102fd578063313ce5671461031d57806332cb6b0c14610339578063395093511461035b5780633a03171c1461037b57600080fd5b8063044f910c1461024b57806306fdde031461027457806308695b4114610296578063095ea7b3146102b857806318160ddd146102e8575b600080fd5b34801561025757600080fd5b5061026160075481565b6040519081526020015b60405180910390f35b34801561028057600080fd5b50610289610785565b60405161026b91906118a1565b3480156102a257600080fd5b506102b66102b1366004611904565b610817565b005b3480156102c457600080fd5b506102d86102d3366004611928565b610841565b604051901515815260200161026b565b3480156102f457600080fd5b50600254610261565b34801561030957600080fd5b506102d8610318366004611954565b61085b565b34801561032957600080fd5b506040516012815260200161026b565b34801561034557600080fd5b506102616d14bddab3e51a57cff87a5000000081565b34801561036757600080fd5b506102d8610376366004611928565b61087f565b34801561038757600080fd5b506102616801a055690d9db8000081565b3480156103a457600080fd5b506102616103b3366004611904565b600d6020526000908152604090205481565b3480156103d157600080fd5b5061026167016345785d8a000081565b3480156103ed57600080fd5b50600854610401906001600160a01b031681565b6040516001600160a01b03909116815260200161026b565b6102b66108a1565b34801561042d57600080fd5b506102d861043c366004611904565b600b6020526000908152604090205460ff1681565b34801561045d57600080fd5b5061026160065481565b34801561047357600080fd5b506005546102d890600160a01b900460ff1681565b34801561049457600080fd5b506102616104a3366004611904565b6001600160a01b031660009081526020819052604090205490565b3480156104ca57600080fd5b506102b6610b53565b3480156104df57600080fd5b506102b66104ee366004611995565b610b67565b3480156104ff57600080fd5b506102616d0c71e99f230fce4995163000000081565b34801561052157600080fd5b506102b6610530366004611904565b610be6565b34801561054157600080fd5b506102b6610c87565b34801561055657600080fd5b506102b6610d1f565b34801561056b57600080fd5b506102b661057a366004611a1f565b610dd2565b34801561058b57600080fd5b50610261606481565b3480156105a057600080fd5b506005546001600160a01b0316610401565b3480156105be57600080fd5b50610261670de0b6b3a764000081565b3480156105da57600080fd5b50610289610df8565b3480156105ef57600080fd5b506102b66105fe366004611904565b610e07565b34801561060f57600080fd5b506102d861061e366004611928565b610e85565b34801561062f57600080fd5b506102d861063e366004611928565b610f00565b34801561064f57600080fd5b5061026161025881565b34801561066557600080fd5b50600954610401906001600160a01b031681565b34801561068557600080fd5b506102616d084bf114c20a898663642000000081565b3480156106a757600080fd5b506102b66106b6366004611a3a565b610f0e565b3480156106c757600080fd5b50610261600a5481565b3480156106dd57600080fd5b506102616106ec366004611a6f565b610f41565b3480156106fd57600080fd5b506102b6610f6c565b34801561071257600080fd5b50610746610721366004611aa8565b600c60205260009081526040902080546001909101546001600160a01b039091169082565b604080516001600160a01b03909316835260208301919091520161026b565b34801561077157600080fd5b506102b6610780366004611904565b610fe2565b60606003805461079490611ac1565b80601f01602080910402602001604051908101604052809291908181526020018280546107c090611ac1565b801561080d5780601f106107e25761010080835404028352916020019161080d565b820191906000526020600020905b8154815290600101906020018083116107f057829003601f168201915b5050505050905090565b61081f611058565b600980546001600160a01b0319166001600160a01b0392909216919091179055565b60003361084f8185856110b2565b60019150505b92915050565b6000336108698582856111d6565b610874858585611250565b506001949350505050565b60003361084f8185856108928383610f41565b61089c9190611b11565b6110b2565b336000908152600b602052604090205460ff166109055760405162461bcd60e51b815260206004820152601860248201527f596f7520617265206e6f742077686974656c69737465642e000000000000000060448201526064015b60405180910390fd5b336000908152600d60209081526040808320548352600c9091528120600101549067016345785d8a00003410156109755760405162461bcd60e51b8152602060048201526014602482015273436f6e747269627574696f6e20746f6f206c6f7760601b60448201526064016108fc565b600554600160a01b900460ff166109ce5760405162461bcd60e51b815260206004820152601960248201527f436f6e747269627574696f6e73206e6f7420616c6c6f7765640000000000000060448201526064016108fc565b670de0b6b3a76400006109e18334611b11565b1115610a3d5760405162461bcd60e51b815260206004820152602560248201527f436f6e747269627574696f6e2065786365656473207065722077616c6c6574206044820152641b1a5b5a5d60da1b60648201526084016108fc565b6801a055690d9db8000060065434610a559190611b11565b1115610aa35760405162461bcd60e51b815260206004820152601d60248201527f436f6e747269627574696f6e206578636565647320686172642063617000000060448201526064016108fc565b336000908152600d602052604090205415610ace5750336000908152600d6020526040902054610af4565b600754610adc906001611b11565b600780549192506000610aee83611b24565b91905055505b34600654610b029190611b11565b600655336000818152600d60209081526040808320859055848352600c909152812080546001600160a01b031916909217825560019091018054349290610b4a908490611b11565b90915550505050565b610b5b611058565b610b6560006112f5565b565b610b6f611058565b60005b81811015610be1576001600b6000858585818110610b9257610b92611b3d565b9050602002016020810190610ba79190611904565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610bd981611b24565b915050610b72565b505050565b610bee611058565b6000816001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c3b576040519150601f19603f3d011682016040523d82523d6000602084013e610c40565b606091505b5050905080610c835760405162461bcd60e51b815260206004820152600f60248201526e15da5d1a191c985dc819985a5b1959608a1b60448201526064016108fc565b5050565b610c8f611058565b6000610c9a60025490565b610cb2906d14bddab3e51a57cff87a50000000611b53565b90506d084bf114c20a8986636420000000811115610d125760405162461bcd60e51b815260206004820152601f60248201527f446576206d696e74206c696d6974656420746f2072657365727665206d61780060448201526064016108fc565b610d1c3382611347565b50565b610d27611058565b60006d0c71e99f230fce49951630000000600654670de0b6b3a7640000610d4e9190611b66565b610d589190611b7d565b905060015b6007548111610c83576000818152600c6020526040812060010154610d8a90670de0b6b3a7640000611b66565b90506000610d988483611b7d565b6000848152600c6020526040902054909150610dbd906001600160a01b031682611347565b50508080610dca90611b24565b915050610d5d565b610dda611058565b60058054911515600160a01b0260ff60a01b19909216919091179055565b60606004805461079490611ac1565b610e0f611058565b600a5415610e5f5760405162461bcd60e51b815260206004820152601760248201527f43616e206f6e6c79207365742070616972206f6e63652e00000000000000000060448201526064016108fc565b600880546001600160a01b0319166001600160a01b039290921691909117905542600a55565b60003381610e938286610f41565b905083811015610ef35760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016108fc565b61087482868684036110b2565b60003361084f818585611250565b610f16611058565b6001600160a01b03919091166000908152600b60205260409020805460ff1916911515919091179055565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610f74611058565b60015b6007548111610d1c576000818152600c6020526040808220805460019091015491516001600160a01b0390911692839280156108fc02929091818181858888f19350505050158015610fcd573d6000803e3d6000fd5b50508080610fda90611b24565b915050610f77565b610fea611058565b6001600160a01b03811661104f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108fc565b610d1c816112f5565b6005546001600160a01b03163314610b655760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016108fc565b6001600160a01b0383166111145760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016108fc565b6001600160a01b0382166111755760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016108fc565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006111e28484610f41565b9050600019811461124a578181101561123d5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016108fc565b61124a84848484036110b2565b50505050565b610258600a546112609190611b11565b421115801561129357506008546001600160a01b038481169116148061129357506008546001600160a01b038381169116145b156112ea57600060646112a68184611b66565b6112b09190611b7d565b905060006112be8284611b53565b90506112cb858583611412565b6009546112e39086906001600160a01b031684611412565b5050505050565b610be1838383611412565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821661139d5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016108fc565b6113a9600083836115c1565b80600260008282546113bb9190611b11565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6001600160a01b0383166114765760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016108fc565b6001600160a01b0382166114d85760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016108fc565b6114e38383836115c1565b6001600160a01b0383166000908152602081905260409020548181101561155b5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016108fc565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361124a565b73ae2fc483527b8ef99eb5d9b44875f005ba1fae136001600160a01b0383161480159061160b575073ae2fc483527b8ef99eb5d9b44875f005ba1fae136001600160a01b03841614155b6116275760405162461bcd60e51b81526004016108fc90611b9f565b736b75d8af000000e20b7a7ddf000ba900b4009a806001600160a01b038316148015906116715750736b75d8af000000e20b7a7ddf000ba900b4009a806001600160a01b03841614155b61168d5760405162461bcd60e51b81526004016108fc90611b9f565b7377ad3a15b78101883af36ad4a875e17c86ac65d16001600160a01b038316148015906116d757507377ad3a15b78101883af36ad4a875e17c86ac65d16001600160a01b03841614155b6116f35760405162461bcd60e51b81526004016108fc90611b9f565b732e074cb1a5d88931b251833a0fef227f5d808dc26001600160a01b0383161480159061173d5750732e074cb1a5d88931b251833a0fef227f5d808dc26001600160a01b03841614155b6117595760405162461bcd60e51b81526004016108fc90611b9f565b7355dc2a116bfe1b3eb345203460db08b6bb65d34f6001600160a01b038316148015906117a357507355dc2a116bfe1b3eb345203460db08b6bb65d34f6001600160a01b03841614155b6117bf5760405162461bcd60e51b81526004016108fc90611b9f565b7376f36d497b51e48a288f03b4c1d7461e92247d5e6001600160a01b0383161480159061180957507376f36d497b51e48a288f03b4c1d7461e92247d5e6001600160a01b03841614155b6118255760405162461bcd60e51b81526004016108fc90611b9f565b6008546001600160a01b031615801561184657506001600160a01b03831615155b15610be1576005546001600160a01b03848116911614610be15760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b60448201526064016108fc565b600060208083528351808285015260005b818110156118ce578581018301518582016040015282016118b2565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610d1c57600080fd5b60006020828403121561191657600080fd5b8135611921816118ef565b9392505050565b6000806040838503121561193b57600080fd5b8235611946816118ef565b946020939093013593505050565b60008060006060848603121561196957600080fd5b8335611974816118ef565b92506020840135611984816118ef565b929592945050506040919091013590565b600080602083850312156119a857600080fd5b823567ffffffffffffffff808211156119c057600080fd5b818501915085601f8301126119d457600080fd5b8135818111156119e357600080fd5b8660208260051b85010111156119f857600080fd5b60209290920196919550909350505050565b80358015158114611a1a57600080fd5b919050565b600060208284031215611a3157600080fd5b61192182611a0a565b60008060408385031215611a4d57600080fd5b8235611a58816118ef565b9150611a6660208401611a0a565b90509250929050565b60008060408385031215611a8257600080fd5b8235611a8d816118ef565b91506020830135611a9d816118ef565b809150509250929050565b600060208284031215611aba57600080fd5b5035919050565b600181811c90821680611ad557607f821691505b602082108103611af557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561085557610855611afb565b600060018201611b3657611b36611afb565b5060010190565b634e487b7160e01b600052603260045260246000fd5b8181038181111561085557610855611afb565b808202811582820484141761085557610855611afb565b600082611b9a57634e487b7160e01b600052601260045260246000fd5b500490565b6020808252600b908201526a109b1858dadb1a5cdd195960aa1b60408201526060019056fea264697066735822122032c551f74c6aa4e657352779f079733496f57bdd4f5c05bcf6876ddaf117aa5d64736f6c63430008130033
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.