ETH Price: $3,469.72 (-0.03%)
Gas: 4.97 Gwei

Token

BuyTruth (TRUTH)
 

Overview

Max Total Supply

7,049,974,354.524475477297487209 TRUTH

Holders

115

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

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BuyTruth

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
Yes with 5000 runs

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

import "./ERC20.sol"; 
import "@openzeppelin/contracts/access/Ownable.sol";

// Website - https://buytruth.cc
// Telegram - https://t.me/buytruth_chat
// X (Previously Twitter) - http://x.com/BuyTruthSellNot

contract BuyTruth is ERC20("BuyTruth", "TRUTH"), Ownable {

    /**
        "Buy the truth, and sell it not; also wisdom, and instruction, and understanding" - Proverbs 23:23 KJV

        This token is designed to encourage users to buy and hold the TRUTH token.
        Once TRUTH is purchased, if sending/selling before 90 days has elapsed a penalty will be applied to the transfer.
        The penalty is calculated on a gradient, with a maximum of 50% for holders of less than one day, and no penalty for holders of 90 days or more.
        The 90 day holding counter is reset every time a purchase of TRUTH tokens is made.
         
        Penalties - All penalties are distributed in the following way: 
            1) 45% of the penalty amount is placed into a rewards pool held by this contract
            2) 30% of the penalty amount is burned (removed from circulation)
            3) 15% of the penalty amount is transfered to a charity address, to be used to fund Kingdom works
            4) 10% of the penalty amount is transfered to a dev fund address, to be used per dev discretion

        Rewards - TRUTH holders are encouraged to claim rewards from the rewards pool using the dApp
            1) Holders can claim based on their allocation of recently purchased TRUTH (until they claim rewards)
            2) Buy more TRUTH increase the percentage of the reward pool that is claimable
            3) Claiming rewards resets purchases that are eligible for making claims
                a) If you would like to claim more, you have to purchase more TRUTH
            4) Claiming rewards also resets the 90 day holding counter
     */
    
    uint public launchBlock; // Block number required to permit transfers (to support a fair launch)

    uint public antiWhaleBlockDelay; // Number of post-launch blocks required to be mined in order to purchase more than 1% of total supply

    uint constant private MULTIPLIER = 100; // used to increase accuracy in calculations

    uint256 constant private _totalSupply = 8100000000 * 10**18; // 8.1 billion tokens with 18 decimal places (one for every soul on the Earth)

    address immutable private _lpMaintainer; // Address that maintains the list of Automated Market Marker Routers and liquity pools
        
    address immutable private _devFundAddress; // For the Scripture says, “You must not muzzle an ox to keep it from eating as it treads out the grain.” And in another place, “Those who work deserve their pay!” - 1 Timothy 5:18 NLT

    address immutable private _charityAddress; // "Whoever is generous to the poor lends to the Lord, and he will repay him for his deed." - Proverbs 19:17 ESV
    
    uint256 private _totalBurned; // Tracks the total amount of penalties burned

    uint256 private _tokenSupplyEligibleForRewards; // Tracks the total amount of tokens bought and have not been sold or had rewards claimed

    mapping(address => bool) public isLiquidityPool; // Map of liquidity pools that sell TRUTH tokens (to avoid penalties being applied to the LP)

    mapping(address => uint) private _balanceUpdateTime; // Stores the last time TRUTH tokens were purchased for each address

    mapping(address => uint256) private _purchasesSinceLastClaim; // Stores total purchases since holders claimed their last reward
    
    constructor(address devFundAddress, address charityFundAddress) {
        _mint(msg.sender, _totalSupply);
        
        launchBlock = block.number + 67835; // 9.5 days worth of blocks
        antiWhaleBlockDelay = 21421; // 72 hours worth of blocks

        _devFundAddress = devFundAddress;
        _charityAddress = charityFundAddress;
        _lpMaintainer = msg.sender;

        isLiquidityPool[0xC36442b4a4522E871399CD717aBDD847Ab11FE88] = true; // Uniswap V3 NFT Manager
    }

    // Hopefully not needed, can be used to accelerate/delay launch prior to any purchases being made
    function updateLaunchBlocks(uint _launchBlockDelay, uint _antiWhaleBlockDelay) external onlyOwner {

        require(_tokenSupplyEligibleForRewards == 0, "Purchases have already been made, cannot update");

        launchBlock = block.number + _launchBlockDelay;
        antiWhaleBlockDelay = _antiWhaleBlockDelay;
    }

    // Invoked when token holder sends token
    // Penalty amount (if applicable) is added to the amount requested to be transferred
    function transfer(address to, uint256 transferAmount) public override returns (bool) {

        // Allow Uniswap to provide a quote the block prior to launch (required to allow transactions on launch block)
        // Exception for contract owner so that liquidity pool can be created. Ownership will be revoked prior to launch.
        require(msg.sender == owner() || block.number >= launchBlock - 1, "Purchases are not allowed yet."); 
        
        // Checks if tokens are being bought
        if (isLiquidityPool[msg.sender]) {

            //Anti-whale - No buys for more than 1% of supply for the first ~72 hours (based on 12 seconds per block)
            if(transferAmount > (_totalSupply / 100)){
                require(block.number >= (launchBlock + antiWhaleBlockDelay), "Cannot buy more than 1% of total supply at a time yet");    
            }
                        
            // Transfer the original amount minus any penalty amount (if applicable) to the recipient
            _transfer(msg.sender, to, transferAmount);

            // Exempt addresses do not pay penalties, or contribute to total eligible supply
            if(!_isExempt(to)){
                _balanceUpdateTime[to] = block.timestamp; // resets 90 day countdown
                _purchasesSinceLastClaim[to] += transferAmount; // adds to token purchases since last rewards claim
                _tokenSupplyEligibleForRewards += transferAmount; // adds to total token purchases that have not been claimed against
            }
        }
        // Holder is selling or sending tokens
        else {

            // Penalty only applies when sender has not held the token for at least 90 days
            uint penaltyPercent = calculatePenaltyPercentWithMultiplier(msg.sender); // Needs to be divided by MULTIPLIER to get actual percentage
            uint256 penaltyAmount = (((transferAmount * MULTIPLIER * MULTIPLIER) / ((MULTIPLIER * MULTIPLIER) - penaltyPercent)) * penaltyPercent) / MULTIPLIER / MULTIPLIER; // Use of MULTIPLIER for decimal precision for divisor
            uint256 totalAmount = transferAmount + penaltyAmount;

            // Account for rounding errors by reducing penalty by 1 if needed
            if(penaltyAmount > 0 && _balances[msg.sender] < totalAmount){
                penaltyAmount--;
                totalAmount--;
            }

            require(_balances[msg.sender] >= totalAmount, "Insufficient balance, possibly due to penalties");
        
            // Ensure penaltyAmount is never greater than the transfer amount to prevent underflow
            require(penaltyAmount <= transferAmount, "Penalty amount exceeds transfer amount");

            // Transfer the original amount minus any penalty amount (if applicable) to the recipient
            _transfer(msg.sender, to, transferAmount);

            // Exempt addresses do not pay penalties, or contribute to total eligible supply    
            if(!_isExempt(msg.sender)){

                // Apply the penalty, if any
                if (penaltyAmount > 0) {
                    _applyPenalty(msg.sender, penaltyAmount);
                }

                // Selling
                if(isLiquidityPool[to]){
                    // If sending more (incl penalties) than the purchases since their last claim (indicates prior balance), reduce _tokenSupplyEligibleForRewards by the recent purchases only
                    uint256 amountToReduce = totalAmount > _purchasesSinceLastClaim[msg.sender] ? _purchasesSinceLastClaim[msg.sender] : totalAmount;
                    _tokenSupplyEligibleForRewards = _tokenSupplyEligibleForRewards >= amountToReduce ? _tokenSupplyEligibleForRewards - amountToReduce : 0;
                } 
                // Sending to another wallet
                else {
                    _tokenSupplyEligibleForRewards = _tokenSupplyEligibleForRewards - penaltyAmount;
                    _purchasesSinceLastClaim[to] = _purchasesSinceLastClaim[to] + transferAmount;
                }
                
                // Reduce qualifying token purchases when sending tokens
                _purchasesSinceLastClaim[msg.sender] = _purchasesSinceLastClaim[msg.sender] >= totalAmount ? _purchasesSinceLastClaim[msg.sender] - totalAmount : 0;

                // Reset unclaimed rewards if user empties their wallet
                if(_balances[msg.sender] == 0){
                    _purchasesSinceLastClaim[msg.sender] = 0;
                    _balanceUpdateTime[msg.sender] = 0;
                }
            }
        }
        
        return true;
    }

    // Invoked from UniSwap contract after approval to spend token
    // Penalty amount (if applicable) is added to the amount requested to be transferred
    function transferFrom(address from, address to, uint256 transferAmount) public override returns (bool) {

        // Allow Uniswap to provide a quote the block prior to launch (required to allow transactions on launch block)
        // Exception for contract owner so that liquidity pool can be created. Ownership will be revoked prior to launch.
        require(from == owner() || block.number >= launchBlock - 1, "Purchases are not allowed yet.");
        
        // Checks if tokens are being bought
        if (isLiquidityPool[from]) {

            //Anti-whale - No buys for more than 1% of supply for the first ~72 hours (based on 12 seconds per block)
            if(transferAmount > (_totalSupply / 100)){
                require(block.number >= (launchBlock + antiWhaleBlockDelay), "Cannot buy more than 1% of total supply at a time yet");    
            }
            
            // Ensure the sender (DEX like UniSwap) has enough allowance to send the transferAmount
            require(allowance(from, msg.sender) >= transferAmount, "Allowance too low");
                        
            // Transfer the original amount minus any penalty amount (if applicable) to the recipient
            _transfer(from, to, transferAmount);
            
            // Exempt addresses do not pay penalties, or contribute to total eligible supply
            if(!_isExempt(to)){
                _balanceUpdateTime[to] = block.timestamp; // resets 90 day countdown
                _purchasesSinceLastClaim[to] += transferAmount; // adds to token purchases since last rewards claim
                _tokenSupplyEligibleForRewards += transferAmount; // adds to total token purchases that have not been claimed against
            }
                        
            // Adjust the allowance
            uint256 currentAllowance = allowance(from, msg.sender);
            require(currentAllowance >= transferAmount, "Allowance decreased during transfer");
            _approve(from, msg.sender, currentAllowance - transferAmount);
        }
        // Holder (or holder's agent) is selling or sending tokens
        else {

            // Penalty only applies when sender has not held the token for at least 90 days
            uint256 penaltyPercent = calculatePenaltyPercentWithMultiplier(from);
            uint256 penaltyAmount = (((transferAmount * MULTIPLIER * MULTIPLIER) / ((MULTIPLIER * MULTIPLIER) - penaltyPercent)) * penaltyPercent) / MULTIPLIER / MULTIPLIER; // Use of MULTIPLIER for decimal precision for divisor
            uint256 totalAmount = transferAmount + penaltyAmount;

            // Account for rounding errors by reducing penalty by 1 if needed
            if(penaltyAmount > 0 && _balances[from] < totalAmount){
                penaltyAmount--;
                totalAmount--;
            }

            require(_balances[from] >= totalAmount, "Insufficient balance, possibly due to penalties");

            // Ensure the sender has enough allowance to send the totalAmount
            require(allowance(from, msg.sender) >= totalAmount, "Allowance too low");
        
            // Ensure penaltyAmount is never greater than the transfer amount to prevent underflow
            require(penaltyAmount <= transferAmount, "Penalty amount exceeds transfer amount");

            // Transfer the original amount minus any penalty amount (if applicable) to the recipient
            _transfer(from, to, transferAmount);

            // Exempt addresses do not pay penalties, or contribute to total eligible supply    
            if(!_isExempt(from)){

                // Apply the penalty, if any
                if (penaltyAmount > 0) {
                    _applyPenalty(from, penaltyAmount);
                }

                // Selling
                if(isLiquidityPool[to]){
                    // If sending more (incl penalties) than the purchases since their last claim (indicates prior balance), reduce _tokenSupplyEligibleForRewards by the recent purchases only
                    uint256 amountToReduce = totalAmount > _purchasesSinceLastClaim[from] ? _purchasesSinceLastClaim[from] : totalAmount;
                    _tokenSupplyEligibleForRewards = _tokenSupplyEligibleForRewards >= amountToReduce ? _tokenSupplyEligibleForRewards - amountToReduce : 0;
                } 
                // Sending to another wallet
                else {
                    _tokenSupplyEligibleForRewards = _tokenSupplyEligibleForRewards - penaltyAmount;
                    _purchasesSinceLastClaim[to] = _purchasesSinceLastClaim[to] + transferAmount;
                }

                // Reduce qualifying token purchases when sending tokens
                _purchasesSinceLastClaim[from] = _purchasesSinceLastClaim[from] >= totalAmount ? _purchasesSinceLastClaim[from] - totalAmount : 0;

                // Reset unclaimed rewards if user empties their wallet
                if(_balances[from] == 0){
                    _purchasesSinceLastClaim[from] = 0;
                    _balanceUpdateTime[from] = 0;
                }
            }

            // Adjust the allowance
            uint256 currentAllowance = allowance(from, msg.sender);
            require(currentAllowance >= totalAmount, "Allowance decreased during transfer");
            _approve(from, msg.sender, currentAllowance - totalAmount);

        }

        return true;
    }

    // Determine max sendable amount
    function balanceOf(address account) public view virtual override returns (uint256) {
        uint256 totalBalance = _balances[account];
        return totalBalance - ((totalBalance * calculatePenaltyPercentWithMultiplier(account)) / 100 / MULTIPLIER);
    }

    // Determine total balance amount
    function balanceTotalOf(address account) public view virtual returns (uint256) {
        return _balances[account];
    }

    // Calculate the number of days held - gets reset every buy or reward claim
    function numDaysHeld(address account) public view returns (uint256) {
        // If _balanceUpdateTime never set, default to uint245.max
        if(_balanceUpdateTime[account] == 0){
            return type(uint256).max; 
        }

        return (block.timestamp - _balanceUpdateTime[account]) / 86400; // 86400 seconds in a day
    }

    // For increased accuracy there is a multiplier of 100. 
    // IMPORTANT: The return value needs to be divided by MULTIPLIER after any calculations
    function calculatePenaltyPercentWithMultiplier(address account) public view returns (uint) {
        if (_isExempt(account)) {
            return 0; // No penalties for excempt addresses to send tokens
        }
        
        uint256 daysHeld = numDaysHeld(account);

        // Calculate penalty percent based on a gradient
        if (daysHeld < 90) {
            return ((90 - daysHeld) * 50 * MULTIPLIER) / (90); // Max 50% penalty for 0 days of holding
        } else {
            return 0; // No penalty for 90 or more days of holding
        }
    }

    // Internal function that distributes 10% of the burn amount to the devFund address, destroys the remainder
    function _applyPenalty(address fromAccount, uint256 totalPenaltyAmount) internal {
        uint256 rewardsAmount = (totalPenaltyAmount * 45) / 100; // 45% 
        uint256 burnAmount = (totalPenaltyAmount * 30) / 100; // 30% 
        uint256 charityAmount = (totalPenaltyAmount * 15) / 100; // 15% 
        uint256 devFundAmount = totalPenaltyAmount - (rewardsAmount + burnAmount + charityAmount); // Remaining 10% to devFund address
        
        // Remove 30% of penalty amount from circulating supply
        _burn(fromAccount, burnAmount);
        _totalBurned += burnAmount;

        // Contract hold 45% of penalty amount for token holders to claim as rewards
        _transfer(fromAccount, address(this), rewardsAmount);

        // charity address gets 15% of penalty amount
        _transfer(fromAccount, _charityAddress, charityAmount);

        // devFund address gets 10% of penalty amount
        _transfer(fromAccount, _devFundAddress, devFundAmount);
    }

    function availableRewards(address account) public view returns (uint256) {

        require(!_isExempt(account), "Exempt addresses cannot claim rewards");

        return _tokenSupplyEligibleForRewards == 0 ? 0 : (_purchasesSinceLastClaim[account] * _balances[address(this)] ) / _tokenSupplyEligibleForRewards;
    }

    // Transfers rewards from the contract's pool to the token holder
    function claimRewards() external {

        uint256 claimableRewards = availableRewards(msg.sender);
        require(claimableRewards > 0, "No rewards available for this address");

        // This contract transfers rewards to caller, and resets their 90 day countdown
        _transfer(address(this), msg.sender, claimableRewards); 

        // Reset 90 day countdown
        _balanceUpdateTime[msg.sender] = block.timestamp;

        // Reduce the count of tokens that have not been claimed against
        _tokenSupplyEligibleForRewards -= _purchasesSinceLastClaim[msg.sender];
        
        // Reset the count of tokens that make one eligible to claim rewards
        _purchasesSinceLastClaim[msg.sender] = 0;
    }

    // LP owner, charity, dev fund, and liquidity pool accounts are exempt from penalties, but cannot claim rewards
    function _isExempt(address account) internal view returns (bool) {
        return account == _lpMaintainer || account == _devFundAddress || account == _charityAddress || isLiquidityPool[account];
    }

    function devAddress() external view returns (address) {
        return _devFundAddress; 
    }

    function charityAddress() external view returns (address) {
        return _charityAddress; 
    }

    function totalBurned() external view returns (uint256) {
        return _totalBurned;
    }

    function rewardsPoolBalance() external view returns (uint256) {
        return _balances[address(this)];
    }

    function balanceEligibleForRewards(address account) external view returns (uint256) {
        return _purchasesSinceLastClaim[account]; 
    }

    function supplyEligibleForRewards() external view returns (uint256) {
        return _tokenSupplyEligibleForRewards; 
    }

    function blocksTillLaunch() external view returns (uint) {
        return launchBlock < block.number ? 0 : (launchBlock - block.number); 
    }

    modifier lpMaintainer() {
        require(msg.sender == _lpMaintainer, "Not authorized");
        _;
    }

    function addLiquidityPool(address lpAddress) external lpMaintainer {
        require(!isLiquidityPool[lpAddress], "Address is already added as LP");
        isLiquidityPool[lpAddress] = true;
    }

    function removeLiquidityPool(address lpAddress) external lpMaintainer {
        require(isLiquidityPool[lpAddress], "Address is not an LP");
        isLiquidityPool[lpAddress] = false;
    }
}

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 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity 0.8.21;

import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
import "@openzeppelin/contracts/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].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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) internal _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}.
     *
     * 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 default value returned by this function, unless
     * it's 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 {}
}

File 4 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 5 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 6 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);
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"devFundAddress","type":"address"},{"internalType":"address","name":"charityFundAddress","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":"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":"lpAddress","type":"address"}],"name":"addLiquidityPool","outputs":[],"stateMutability":"nonpayable","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":[],"name":"antiWhaleBlockDelay","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":"availableRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceEligibleForRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceTotalOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blocksTillLaunch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"calculatePenaltyPercentWithMultiplier","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"charityAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimRewards","outputs":[],"stateMutability":"nonpayable","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":"devAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"address","name":"","type":"address"}],"name":"isLiquidityPool","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"launchBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"numDaysHeld","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"lpAddress","type":"address"}],"name":"removeLiquidityPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardsPoolBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"supplyEligibleForRewards","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":"totalBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"transferAmount","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":"transferAmount","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":[{"internalType":"uint256","name":"_launchBlockDelay","type":"uint256"},{"internalType":"uint256","name":"_antiWhaleBlockDelay","type":"uint256"}],"name":"updateLaunchBlocks","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e060405234801562000010575f80fd5b50604051620027453803806200274583398101604081905262000033916200027d565b60405180604001604052806008815260200167084eaf2a8e4eae8d60c31b815250604051806040016040528060058152602001640a8a4aaa8960db1b815250816003908162000083919062000352565b50600462000092828262000352565b505050620000af620000a96200014360201b60201c565b62000147565b620000c7336b1a2c29b7db4c0eba2400000062000198565b620000d643620108fb6200041a565b6006556153ad6007556001600160a01b0391821660a0521660c0523360805273c36442b4a4522e871399cd717abdd847ab11fe885f52600a6020527f66cd5a530f6760ec4ab86e37df2e081462224955ed23f314f2ea54d9197d3238805460ff1916600117905562000440565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038216620001f35760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060025f8282546200020691906200041a565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b80516001600160a01b038116811462000278575f80fd5b919050565b5f80604083850312156200028f575f80fd5b6200029a8362000261565b9150620002aa6020840162000261565b90509250929050565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620002dc57607f821691505b602082108103620002fb57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200025c575f81815260208120601f850160051c81016020861015620003295750805b601f850160051c820191505b818110156200034a5782815560010162000335565b505050505050565b81516001600160401b038111156200036e576200036e620002b3565b62000386816200037f8454620002c7565b8462000301565b602080601f831160018114620003bc575f8415620003a45750858301515b5f19600386901b1c1916600185901b1785556200034a565b5f85815260208120601f198616915b82811015620003ec57888601518255948401946001909101908401620003cb565b50858210156200040a57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156200043a57634e487b7160e01b5f52601160045260245ffd5b92915050565b60805160a05160c0516122b0620004955f395f818161038c01528181611ce80152611de201525f818161029a01528181611cac0152611e0d01525f81816115410152818161165e0152611c7101526122b05ff3fe608060405234801561000f575f80fd5b50600436106101e7575f3560e01c80637e9867af11610109578063d89135cd1161009e578063e85455d71161006e578063e85455d714610449578063ee6a934c1461046b578063f2fde38b1461047e578063f854a27f14610491575f80fd5b8063d89135cd146103b9578063d8979bbe146103c1578063d9c1a344146103e9578063dd62ed3e14610411575f80fd5b8063a9059cbb116100d9578063a9059cbb14610364578063ae22107f14610377578063afcf2fc41461038a578063d00efb2f146103b0575f80fd5b80637e9867af146103305780638da5cb5b1461033857806395d89b4114610349578063a457c2d714610351575f80fd5b8063395093511161017f5780636fbbd2771161014f5780636fbbd277146102ef57806370a0823114610302578063715018a6146103155780637b06bcb01461031d575f80fd5b806339509351146102855780633ad10ef6146102985780634a066852146102d25780635f006240146102e6575f80fd5b806318160ddd116101ba57806318160ddd1461025357806323b872dd1461025b578063313ce5671461026e578063372500ab1461027d575f80fd5b806306fdde03146101eb5780630769981c14610209578063095ea7b31461021b57806315d9cc301461023e575b5f80fd5b6101f36104a4565b604051610200919061200a565b60405180910390f35b6009545b604051908152602001610200565b61022e61022936600461208e565b610534565b6040519015158152602001610200565b61025161024c3660046120b6565b61054d565b005b60025461020d565b61022e6102693660046120d6565b6105e3565b60405160128152602001610200565b610251610d3a565b61022e61029336600461208e565b610e0c565b7f00000000000000000000000000000000000000000000000000000000000000005b6040516001600160a01b039091168152602001610200565b305f9081526020819052604090205461020d565b61020d60075481565b61020d6102fd36600461210f565b610e45565b61020d61031036600461210f565b610ebb565b610251610f0e565b61020d61032b36600461210f565b610f21565b61020d610f87565b6005546001600160a01b03166102ba565b6101f3610fa9565b61022e61035f36600461208e565b610fb8565b61022e61037236600461208e565b61106c565b61025161038536600461210f565b611536565b7f00000000000000000000000000000000000000000000000000000000000000006102ba565b61020d60065481565b60085461020d565b61020d6103cf36600461210f565b6001600160a01b03165f908152600c602052604090205490565b61020d6103f736600461210f565b6001600160a01b03165f9081526020819052604090205490565b61020d61041f366004612128565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b61022e61045736600461210f565b600a6020525f908152604090205460ff1681565b61025161047936600461210f565b611653565b61025161048c36600461210f565b611774565b61020d61049f36600461210f565b611804565b6060600380546104b390612159565b80601f01602080910402602001604051908101604052809291908181526020018280546104df90612159565b801561052a5780601f106105015761010080835404028352916020019161052a565b820191905f5260205f20905b81548152906001019060200180831161050d57829003601f168201915b5050505050905090565b5f336105418185856118d1565b60019150505b92915050565b610555611a28565b600954156105d05760405162461bcd60e51b815260206004820152602f60248201527f507572636861736573206861766520616c7265616479206265656e206d61646560448201527f2c2063616e6e6f7420757064617465000000000000000000000000000000000060648201526084015b60405180910390fd5b6105da82436121d1565b60065560075550565b5f6105f66005546001600160a01b031690565b6001600160a01b0316846001600160a01b031614806106235750600160065461061f91906121e4565b4310155b61066f5760405162461bcd60e51b815260206004820152601e60248201527f50757263686173657320617265206e6f7420616c6c6f776564207965742e000060448201526064016105c7565b6001600160a01b0384165f908152600a602052604090205460ff16156108c1576106a660646b1a2c29b7db4c0eba240000006121f7565b821115610732576007546006546106bd91906121d1565b4310156107325760405162461bcd60e51b815260206004820152603560248201527f43616e6e6f7420627579206d6f7265207468616e203125206f6620746f74616c60448201527f20737570706c7920617420612074696d6520796574000000000000000000000060648201526084016105c7565b6001600160a01b0384165f9081526001602090815260408083203384529091529020548211156107a45760405162461bcd60e51b815260206004820152601160248201527f416c6c6f77616e636520746f6f206c6f7700000000000000000000000000000060448201526064016105c7565b6107af848484611a82565b6107b883611c6e565b61080e576001600160a01b0383165f908152600b60209081526040808320429055600c909152812080548492906107f09084906121d1565b925050819055508160095f82825461080891906121d1565b90915550505b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156108a75760405162461bcd60e51b815260206004820152602360248201527f416c6c6f77616e63652064656372656173656420647572696e67207472616e7360448201527f666572000000000000000000000000000000000000000000000000000000000060648201526084016105c7565b6108bb85336108b686856121e4565b6118d1565b50610d30565b5f6108cb85610f21565b90505f60648083806108dd838061222f565b6108e791906121e4565b60646108f3818a61222f565b6108fd919061222f565b61090791906121f7565b610911919061222f565b61091b91906121f7565b61092591906121f7565b90505f61093282866121d1565b90505f8211801561095957506001600160a01b0387165f9081526020819052604090205481115b1561097a578161096881612246565b925050808061097690612246565b9150505b6001600160a01b0387165f90815260208190526040902054811115610a075760405162461bcd60e51b815260206004820152602f60248201527f496e73756666696369656e742062616c616e63652c20706f737369626c79206460448201527f756520746f2070656e616c74696573000000000000000000000000000000000060648201526084016105c7565b6001600160a01b0387165f908152600160209081526040808320338452909152902054811115610a795760405162461bcd60e51b815260206004820152601160248201527f416c6c6f77616e636520746f6f206c6f7700000000000000000000000000000060448201526064016105c7565b84821115610aef5760405162461bcd60e51b815260206004820152602660248201527f50656e616c747920616d6f756e742065786365656473207472616e736665722060448201527f616d6f756e74000000000000000000000000000000000000000000000000000060648201526084016105c7565b610afa878787611a82565b610b0387611c6e565b610c83578115610b1757610b178783611d40565b6001600160a01b0386165f908152600a602052604090205460ff1615610b9d576001600160a01b0387165f908152600c60205260408120548211610b5b5781610b74565b6001600160a01b0388165f908152600c60205260409020545b9050806009541015610b86575f610b94565b80600954610b9491906121e4565b60095550610bea565b81600954610bab91906121e4565b6009556001600160a01b0386165f908152600c6020526040902054610bd19086906121d1565b6001600160a01b0387165f908152600c60205260409020555b6001600160a01b0387165f908152600c6020526040902054811115610c0f575f610c32565b6001600160a01b0387165f908152600c6020526040902054610c329082906121e4565b6001600160a01b0388165f908152600c6020908152604080832093909355819052908120549003610c83576001600160a01b0387165f908152600c60209081526040808320839055600b9091528120555b6001600160a01b0387165f90815260016020908152604080832033845290915290205481811015610d1c5760405162461bcd60e51b815260206004820152602360248201527f416c6c6f77616e63652064656372656173656420647572696e67207472616e7360448201527f666572000000000000000000000000000000000000000000000000000000000060648201526084016105c7565b610d2b88336108b685856121e4565b505050505b5060019392505050565b5f610d4433611804565b90505f8111610dbb5760405162461bcd60e51b815260206004820152602560248201527f4e6f207265776172647320617661696c61626c6520666f72207468697320616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016105c7565b610dc6303383611a82565b335f908152600b60209081526040808320429055600c9091528120546009805491929091610df59084906121e4565b9091555050335f908152600c602052604081205550565b335f8181526001602090815260408083206001600160a01b038716845290915281205490919061054190829086906108b69087906121d1565b6001600160a01b0381165f908152600b60205260408120548103610e8a57507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff919050565b6001600160a01b0382165f908152600b60205260409020546201518090610eb190426121e4565b61054791906121f7565b6001600160a01b0381165f90815260208190526040812054606480610edf85610f21565b610ee9908461222f565b610ef391906121f7565b610efd91906121f7565b610f0790826121e4565b9392505050565b610f16611a28565b610f1f5f611e3a565b565b5f610f2b82611c6e565b15610f3757505f919050565b5f610f4183610e45565b9050605a811015610f7957605a6064610f5a83836121e4565b610f6590603261222f565b610f6f919061222f565b610f0791906121f7565b505f92915050565b50919050565b5f4360065410610fa45743600654610f9f91906121e4565b905090565b505f90565b6060600480546104b390612159565b335f8181526001602090815260408083206001600160a01b0387168452909152812054909190838110156110545760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016105c7565b61106182868684036118d1565b506001949350505050565b5f61107f6005546001600160a01b031690565b6001600160a01b0316336001600160a01b031614806110ac575060016006546110a891906121e4565b4310155b6110f85760405162461bcd60e51b815260206004820152601e60248201527f50757263686173657320617265206e6f7420616c6c6f776564207965742e000060448201526064016105c7565b335f908152600a602052604090205460ff16156112215761112660646b1a2c29b7db4c0eba240000006121f7565b8211156111b25760075460065461113d91906121d1565b4310156111b25760405162461bcd60e51b815260206004820152603560248201527f43616e6e6f7420627579206d6f7265207468616e203125206f6620746f74616c60448201527f20737570706c7920617420612074696d6520796574000000000000000000000060648201526084016105c7565b6111bd338484611a82565b6111c683611c6e565b61121c576001600160a01b0383165f908152600b60209081526040808320429055600c909152812080548492906111fe9084906121d1565b925050819055508160095f82825461121691906121d1565b90915550505b61152d565b5f61122b33610f21565b90505f606480838061123d838061222f565b61124791906121e4565b6064611253818a61222f565b61125d919061222f565b61126791906121f7565b611271919061222f565b61127b91906121f7565b61128591906121f7565b90505f61129282866121d1565b90505f821180156112b05750335f9081526020819052604090205481115b156112d157816112bf81612246565b92505080806112cd90612246565b9150505b335f908152602081905260409020548111156113555760405162461bcd60e51b815260206004820152602f60248201527f496e73756666696369656e742062616c616e63652c20706f737369626c79206460448201527f756520746f2070656e616c74696573000000000000000000000000000000000060648201526084016105c7565b848211156113cb5760405162461bcd60e51b815260206004820152602660248201527f50656e616c747920616d6f756e742065786365656473207472616e736665722060448201527f616d6f756e74000000000000000000000000000000000000000000000000000060648201526084016105c7565b6113d6338787611a82565b6113df33611c6e565b6115295781156113f3576113f33383611d40565b6001600160a01b0386165f908152600a602052604090205460ff161561146757335f908152600c6020526040812054821161142e578161143e565b335f908152600c60205260409020545b9050806009541015611450575f61145e565b8060095461145e91906121e4565b600955506114b4565b8160095461147591906121e4565b6009556001600160a01b0386165f908152600c602052604090205461149b9086906121d1565b6001600160a01b0387165f908152600c60205260409020555b335f908152600c60205260409020548111156114d0575f6114ea565b335f908152600c60205260409020546114ea9082906121e4565b335f908152600c602090815260408083209390935581905290812054900361152957335f908152600c60209081526040808320839055600b9091528120555b5050505b50600192915050565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146115ae5760405162461bcd60e51b815260206004820152600e60248201527f4e6f7420617574686f72697a656400000000000000000000000000000000000060448201526064016105c7565b6001600160a01b0381165f908152600a602052604090205460ff166116155760405162461bcd60e51b815260206004820152601460248201527f41646472657373206973206e6f7420616e204c5000000000000000000000000060448201526064016105c7565b6001600160a01b03165f908152600a6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b336001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016146116cb5760405162461bcd60e51b815260206004820152600e60248201527f4e6f7420617574686f72697a656400000000000000000000000000000000000060448201526064016105c7565b6001600160a01b0381165f908152600a602052604090205460ff16156117335760405162461bcd60e51b815260206004820152601e60248201527f4164647265737320697320616c7265616479206164646564206173204c50000060448201526064016105c7565b6001600160a01b03165f908152600a6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b61177c611a28565b6001600160a01b0381166117f85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016105c7565b61180181611e3a565b50565b5f61180e82611c6e565b156118815760405162461bcd60e51b815260206004820152602560248201527f4578656d7074206164647265737365732063616e6e6f7420636c61696d20726560448201527f776172647300000000000000000000000000000000000000000000000000000060648201526084016105c7565b600954156118ca57600954305f90815260208181526040808320546001600160a01b0387168452600c909252909120546118bb919061222f565b6118c591906121f7565b610547565b5f92915050565b6001600160a01b03831661194c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016105c7565b6001600160a01b0382166119c85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016105c7565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610f1f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105c7565b6001600160a01b038316611afe5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016105c7565b6001600160a01b038216611b7a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016105c7565b6001600160a01b0383165f9081526020819052604090205481811015611c085760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016105c7565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b5f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161480611ce057507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316145b80611d1c57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316145b806105475750506001600160a01b03165f908152600a602052604090205460ff1690565b5f6064611d4e83602d61222f565b611d5891906121f7565b90505f6064611d6884601e61222f565b611d7291906121f7565b90505f6064611d8285600f61222f565b611d8c91906121f7565b90505f81611d9a84866121d1565b611da491906121d1565b611dae90866121e4565b9050611dba8684611ea3565b8260085f828254611dcb91906121d1565b90915550611ddc9050863086611a82565b611e07867f000000000000000000000000000000000000000000000000000000000000000084611a82565b611e32867f000000000000000000000000000000000000000000000000000000000000000083611a82565b505050505050565b600580546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038216611f1f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016105c7565b6001600160a01b0382165f9081526020819052604090205481811015611fad5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016105c7565b6001600160a01b0383165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b5f6020808352835180828501525f5b8181101561203557858101830151858201604001528201612019565b505f6040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b80356001600160a01b0381168114612089575f80fd5b919050565b5f806040838503121561209f575f80fd5b6120a883612073565b946020939093013593505050565b5f80604083850312156120c7575f80fd5b50508035926020909101359150565b5f805f606084860312156120e8575f80fd5b6120f184612073565b92506120ff60208501612073565b9150604084013590509250925092565b5f6020828403121561211f575f80fd5b610f0782612073565b5f8060408385031215612139575f80fd5b61214283612073565b915061215060208401612073565b90509250929050565b600181811c9082168061216d57607f821691505b602082108103610f81577f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b80820180821115610547576105476121a4565b81810381811115610547576105476121a4565b5f8261222a577f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b500490565b8082028115828204841417610547576105476121a4565b5f81612254576122546121a4565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff019056fea2646970667358221220222a6249c3b325f8a65606dcf9b153e6b84baa5e1f4187a7c6c2b67014d0f0c764736f6c63430008150033000000000000000000000000ccd117d210d7f73bd6ae363c22b9921002cb2e67000000000000000000000000ca2bfb05e7fa10946ea4344031344e128d018ccf

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106101e7575f3560e01c80637e9867af11610109578063d89135cd1161009e578063e85455d71161006e578063e85455d714610449578063ee6a934c1461046b578063f2fde38b1461047e578063f854a27f14610491575f80fd5b8063d89135cd146103b9578063d8979bbe146103c1578063d9c1a344146103e9578063dd62ed3e14610411575f80fd5b8063a9059cbb116100d9578063a9059cbb14610364578063ae22107f14610377578063afcf2fc41461038a578063d00efb2f146103b0575f80fd5b80637e9867af146103305780638da5cb5b1461033857806395d89b4114610349578063a457c2d714610351575f80fd5b8063395093511161017f5780636fbbd2771161014f5780636fbbd277146102ef57806370a0823114610302578063715018a6146103155780637b06bcb01461031d575f80fd5b806339509351146102855780633ad10ef6146102985780634a066852146102d25780635f006240146102e6575f80fd5b806318160ddd116101ba57806318160ddd1461025357806323b872dd1461025b578063313ce5671461026e578063372500ab1461027d575f80fd5b806306fdde03146101eb5780630769981c14610209578063095ea7b31461021b57806315d9cc301461023e575b5f80fd5b6101f36104a4565b604051610200919061200a565b60405180910390f35b6009545b604051908152602001610200565b61022e61022936600461208e565b610534565b6040519015158152602001610200565b61025161024c3660046120b6565b61054d565b005b60025461020d565b61022e6102693660046120d6565b6105e3565b60405160128152602001610200565b610251610d3a565b61022e61029336600461208e565b610e0c565b7f000000000000000000000000ccd117d210d7f73bd6ae363c22b9921002cb2e675b6040516001600160a01b039091168152602001610200565b305f9081526020819052604090205461020d565b61020d60075481565b61020d6102fd36600461210f565b610e45565b61020d61031036600461210f565b610ebb565b610251610f0e565b61020d61032b36600461210f565b610f21565b61020d610f87565b6005546001600160a01b03166102ba565b6101f3610fa9565b61022e61035f36600461208e565b610fb8565b61022e61037236600461208e565b61106c565b61025161038536600461210f565b611536565b7f000000000000000000000000ca2bfb05e7fa10946ea4344031344e128d018ccf6102ba565b61020d60065481565b60085461020d565b61020d6103cf36600461210f565b6001600160a01b03165f908152600c602052604090205490565b61020d6103f736600461210f565b6001600160a01b03165f9081526020819052604090205490565b61020d61041f366004612128565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b61022e61045736600461210f565b600a6020525f908152604090205460ff1681565b61025161047936600461210f565b611653565b61025161048c36600461210f565b611774565b61020d61049f36600461210f565b611804565b6060600380546104b390612159565b80601f01602080910402602001604051908101604052809291908181526020018280546104df90612159565b801561052a5780601f106105015761010080835404028352916020019161052a565b820191905f5260205f20905b81548152906001019060200180831161050d57829003601f168201915b5050505050905090565b5f336105418185856118d1565b60019150505b92915050565b610555611a28565b600954156105d05760405162461bcd60e51b815260206004820152602f60248201527f507572636861736573206861766520616c7265616479206265656e206d61646560448201527f2c2063616e6e6f7420757064617465000000000000000000000000000000000060648201526084015b60405180910390fd5b6105da82436121d1565b60065560075550565b5f6105f66005546001600160a01b031690565b6001600160a01b0316846001600160a01b031614806106235750600160065461061f91906121e4565b4310155b61066f5760405162461bcd60e51b815260206004820152601e60248201527f50757263686173657320617265206e6f7420616c6c6f776564207965742e000060448201526064016105c7565b6001600160a01b0384165f908152600a602052604090205460ff16156108c1576106a660646b1a2c29b7db4c0eba240000006121f7565b821115610732576007546006546106bd91906121d1565b4310156107325760405162461bcd60e51b815260206004820152603560248201527f43616e6e6f7420627579206d6f7265207468616e203125206f6620746f74616c60448201527f20737570706c7920617420612074696d6520796574000000000000000000000060648201526084016105c7565b6001600160a01b0384165f9081526001602090815260408083203384529091529020548211156107a45760405162461bcd60e51b815260206004820152601160248201527f416c6c6f77616e636520746f6f206c6f7700000000000000000000000000000060448201526064016105c7565b6107af848484611a82565b6107b883611c6e565b61080e576001600160a01b0383165f908152600b60209081526040808320429055600c909152812080548492906107f09084906121d1565b925050819055508160095f82825461080891906121d1565b90915550505b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156108a75760405162461bcd60e51b815260206004820152602360248201527f416c6c6f77616e63652064656372656173656420647572696e67207472616e7360448201527f666572000000000000000000000000000000000000000000000000000000000060648201526084016105c7565b6108bb85336108b686856121e4565b6118d1565b50610d30565b5f6108cb85610f21565b90505f60648083806108dd838061222f565b6108e791906121e4565b60646108f3818a61222f565b6108fd919061222f565b61090791906121f7565b610911919061222f565b61091b91906121f7565b61092591906121f7565b90505f61093282866121d1565b90505f8211801561095957506001600160a01b0387165f9081526020819052604090205481115b1561097a578161096881612246565b925050808061097690612246565b9150505b6001600160a01b0387165f90815260208190526040902054811115610a075760405162461bcd60e51b815260206004820152602f60248201527f496e73756666696369656e742062616c616e63652c20706f737369626c79206460448201527f756520746f2070656e616c74696573000000000000000000000000000000000060648201526084016105c7565b6001600160a01b0387165f908152600160209081526040808320338452909152902054811115610a795760405162461bcd60e51b815260206004820152601160248201527f416c6c6f77616e636520746f6f206c6f7700000000000000000000000000000060448201526064016105c7565b84821115610aef5760405162461bcd60e51b815260206004820152602660248201527f50656e616c747920616d6f756e742065786365656473207472616e736665722060448201527f616d6f756e74000000000000000000000000000000000000000000000000000060648201526084016105c7565b610afa878787611a82565b610b0387611c6e565b610c83578115610b1757610b178783611d40565b6001600160a01b0386165f908152600a602052604090205460ff1615610b9d576001600160a01b0387165f908152600c60205260408120548211610b5b5781610b74565b6001600160a01b0388165f908152600c60205260409020545b9050806009541015610b86575f610b94565b80600954610b9491906121e4565b60095550610bea565b81600954610bab91906121e4565b6009556001600160a01b0386165f908152600c6020526040902054610bd19086906121d1565b6001600160a01b0387165f908152600c60205260409020555b6001600160a01b0387165f908152600c6020526040902054811115610c0f575f610c32565b6001600160a01b0387165f908152600c6020526040902054610c329082906121e4565b6001600160a01b0388165f908152600c6020908152604080832093909355819052908120549003610c83576001600160a01b0387165f908152600c60209081526040808320839055600b9091528120555b6001600160a01b0387165f90815260016020908152604080832033845290915290205481811015610d1c5760405162461bcd60e51b815260206004820152602360248201527f416c6c6f77616e63652064656372656173656420647572696e67207472616e7360448201527f666572000000000000000000000000000000000000000000000000000000000060648201526084016105c7565b610d2b88336108b685856121e4565b505050505b5060019392505050565b5f610d4433611804565b90505f8111610dbb5760405162461bcd60e51b815260206004820152602560248201527f4e6f207265776172647320617661696c61626c6520666f72207468697320616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016105c7565b610dc6303383611a82565b335f908152600b60209081526040808320429055600c9091528120546009805491929091610df59084906121e4565b9091555050335f908152600c602052604081205550565b335f8181526001602090815260408083206001600160a01b038716845290915281205490919061054190829086906108b69087906121d1565b6001600160a01b0381165f908152600b60205260408120548103610e8a57507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff919050565b6001600160a01b0382165f908152600b60205260409020546201518090610eb190426121e4565b61054791906121f7565b6001600160a01b0381165f90815260208190526040812054606480610edf85610f21565b610ee9908461222f565b610ef391906121f7565b610efd91906121f7565b610f0790826121e4565b9392505050565b610f16611a28565b610f1f5f611e3a565b565b5f610f2b82611c6e565b15610f3757505f919050565b5f610f4183610e45565b9050605a811015610f7957605a6064610f5a83836121e4565b610f6590603261222f565b610f6f919061222f565b610f0791906121f7565b505f92915050565b50919050565b5f4360065410610fa45743600654610f9f91906121e4565b905090565b505f90565b6060600480546104b390612159565b335f8181526001602090815260408083206001600160a01b0387168452909152812054909190838110156110545760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084016105c7565b61106182868684036118d1565b506001949350505050565b5f61107f6005546001600160a01b031690565b6001600160a01b0316336001600160a01b031614806110ac575060016006546110a891906121e4565b4310155b6110f85760405162461bcd60e51b815260206004820152601e60248201527f50757263686173657320617265206e6f7420616c6c6f776564207965742e000060448201526064016105c7565b335f908152600a602052604090205460ff16156112215761112660646b1a2c29b7db4c0eba240000006121f7565b8211156111b25760075460065461113d91906121d1565b4310156111b25760405162461bcd60e51b815260206004820152603560248201527f43616e6e6f7420627579206d6f7265207468616e203125206f6620746f74616c60448201527f20737570706c7920617420612074696d6520796574000000000000000000000060648201526084016105c7565b6111bd338484611a82565b6111c683611c6e565b61121c576001600160a01b0383165f908152600b60209081526040808320429055600c909152812080548492906111fe9084906121d1565b925050819055508160095f82825461121691906121d1565b90915550505b61152d565b5f61122b33610f21565b90505f606480838061123d838061222f565b61124791906121e4565b6064611253818a61222f565b61125d919061222f565b61126791906121f7565b611271919061222f565b61127b91906121f7565b61128591906121f7565b90505f61129282866121d1565b90505f821180156112b05750335f9081526020819052604090205481115b156112d157816112bf81612246565b92505080806112cd90612246565b9150505b335f908152602081905260409020548111156113555760405162461bcd60e51b815260206004820152602f60248201527f496e73756666696369656e742062616c616e63652c20706f737369626c79206460448201527f756520746f2070656e616c74696573000000000000000000000000000000000060648201526084016105c7565b848211156113cb5760405162461bcd60e51b815260206004820152602660248201527f50656e616c747920616d6f756e742065786365656473207472616e736665722060448201527f616d6f756e74000000000000000000000000000000000000000000000000000060648201526084016105c7565b6113d6338787611a82565b6113df33611c6e565b6115295781156113f3576113f33383611d40565b6001600160a01b0386165f908152600a602052604090205460ff161561146757335f908152600c6020526040812054821161142e578161143e565b335f908152600c60205260409020545b9050806009541015611450575f61145e565b8060095461145e91906121e4565b600955506114b4565b8160095461147591906121e4565b6009556001600160a01b0386165f908152600c602052604090205461149b9086906121d1565b6001600160a01b0387165f908152600c60205260409020555b335f908152600c60205260409020548111156114d0575f6114ea565b335f908152600c60205260409020546114ea9082906121e4565b335f908152600c602090815260408083209390935581905290812054900361152957335f908152600c60209081526040808320839055600b9091528120555b5050505b50600192915050565b336001600160a01b037f000000000000000000000000bc99ce48c919e081aa3a9f0fe9c8f6ad1a63b39e16146115ae5760405162461bcd60e51b815260206004820152600e60248201527f4e6f7420617574686f72697a656400000000000000000000000000000000000060448201526064016105c7565b6001600160a01b0381165f908152600a602052604090205460ff166116155760405162461bcd60e51b815260206004820152601460248201527f41646472657373206973206e6f7420616e204c5000000000000000000000000060448201526064016105c7565b6001600160a01b03165f908152600a6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b336001600160a01b037f000000000000000000000000bc99ce48c919e081aa3a9f0fe9c8f6ad1a63b39e16146116cb5760405162461bcd60e51b815260206004820152600e60248201527f4e6f7420617574686f72697a656400000000000000000000000000000000000060448201526064016105c7565b6001600160a01b0381165f908152600a602052604090205460ff16156117335760405162461bcd60e51b815260206004820152601e60248201527f4164647265737320697320616c7265616479206164646564206173204c50000060448201526064016105c7565b6001600160a01b03165f908152600a6020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b61177c611a28565b6001600160a01b0381166117f85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f646472657373000000000000000000000000000000000000000000000000000060648201526084016105c7565b61180181611e3a565b50565b5f61180e82611c6e565b156118815760405162461bcd60e51b815260206004820152602560248201527f4578656d7074206164647265737365732063616e6e6f7420636c61696d20726560448201527f776172647300000000000000000000000000000000000000000000000000000060648201526084016105c7565b600954156118ca57600954305f90815260208181526040808320546001600160a01b0387168452600c909252909120546118bb919061222f565b6118c591906121f7565b610547565b5f92915050565b6001600160a01b03831661194c5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f726573730000000000000000000000000000000000000000000000000000000060648201526084016105c7565b6001600160a01b0382166119c85760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f737300000000000000000000000000000000000000000000000000000000000060648201526084016105c7565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b03163314610f1f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016105c7565b6001600160a01b038316611afe5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f647265737300000000000000000000000000000000000000000000000000000060648201526084016105c7565b6001600160a01b038216611b7a5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f657373000000000000000000000000000000000000000000000000000000000060648201526084016105c7565b6001600160a01b0383165f9081526020819052604090205481811015611c085760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e6365000000000000000000000000000000000000000000000000000060648201526084016105c7565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a350505050565b5f7f000000000000000000000000bc99ce48c919e081aa3a9f0fe9c8f6ad1a63b39e6001600160a01b0316826001600160a01b03161480611ce057507f000000000000000000000000ccd117d210d7f73bd6ae363c22b9921002cb2e676001600160a01b0316826001600160a01b0316145b80611d1c57507f000000000000000000000000ca2bfb05e7fa10946ea4344031344e128d018ccf6001600160a01b0316826001600160a01b0316145b806105475750506001600160a01b03165f908152600a602052604090205460ff1690565b5f6064611d4e83602d61222f565b611d5891906121f7565b90505f6064611d6884601e61222f565b611d7291906121f7565b90505f6064611d8285600f61222f565b611d8c91906121f7565b90505f81611d9a84866121d1565b611da491906121d1565b611dae90866121e4565b9050611dba8684611ea3565b8260085f828254611dcb91906121d1565b90915550611ddc9050863086611a82565b611e07867f000000000000000000000000ca2bfb05e7fa10946ea4344031344e128d018ccf84611a82565b611e32867f000000000000000000000000ccd117d210d7f73bd6ae363c22b9921002cb2e6783611a82565b505050505050565b600580546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038216611f1f5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f730000000000000000000000000000000000000000000000000000000000000060648201526084016105c7565b6001600160a01b0382165f9081526020819052604090205481811015611fad5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f636500000000000000000000000000000000000000000000000000000000000060648201526084016105c7565b6001600160a01b0383165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b5f6020808352835180828501525f5b8181101561203557858101830151858201604001528201612019565b505f6040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b80356001600160a01b0381168114612089575f80fd5b919050565b5f806040838503121561209f575f80fd5b6120a883612073565b946020939093013593505050565b5f80604083850312156120c7575f80fd5b50508035926020909101359150565b5f805f606084860312156120e8575f80fd5b6120f184612073565b92506120ff60208501612073565b9150604084013590509250925092565b5f6020828403121561211f575f80fd5b610f0782612073565b5f8060408385031215612139575f80fd5b61214283612073565b915061215060208401612073565b90509250929050565b600181811c9082168061216d57607f821691505b602082108103610f81577f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b80820180821115610547576105476121a4565b81810381811115610547576105476121a4565b5f8261222a577f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b500490565b8082028115828204841417610547576105476121a4565b5f81612254576122546121a4565b507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff019056fea2646970667358221220222a6249c3b325f8a65606dcf9b153e6b84baa5e1f4187a7c6c2b67014d0f0c764736f6c63430008150033

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

000000000000000000000000ccd117d210d7f73bd6ae363c22b9921002cb2e67000000000000000000000000ca2bfb05e7fa10946ea4344031344e128d018ccf

-----Decoded View---------------
Arg [0] : devFundAddress (address): 0xccD117d210d7f73bD6Ae363c22B9921002Cb2E67
Arg [1] : charityFundAddress (address): 0xCA2Bfb05E7fa10946EA4344031344E128d018cCf

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000ccd117d210d7f73bd6ae363c22b9921002cb2e67
Arg [1] : 000000000000000000000000ca2bfb05e7fa10946ea4344031344e128d018ccf


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.