ETH Price: $3,302.79 (+1.74%)
Gas: 1 Gwei

Token

The Prophecy (Prophecy)
 

Overview

Max Total Supply

100,000,000 Prophecy

Holders

119

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
40,583.139352965858753912 Prophecy

Value
$0.00
0xd580229f564ef2b1cf39cf859f63856e9bbb2956
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:
TheProphecy

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-19
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;

library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return sub(a, b, "SafeMath: subtraction overflow");
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) {
            return 0;
        }

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

        return c;
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return div(a, b, "SafeMath: division by zero");
    }

    /**
     * @dev Returns the integer division of two unsigned integers. Reverts with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return mod(a, b, "SafeMath: modulo by zero");
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts with custom message when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

/**
 * @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 {
    address internal _onwer;
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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


// File @openzeppelin/contracts/access/[email protected]


// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;

/**
 * @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());
        _onwer = _msgSender();
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_onwer == _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);
    }
}


// File @openzeppelin/contracts/token/ERC20/[email protected]


// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]


// OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @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 @openzeppelin/contracts/token/ERC20/[email protected]


// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;



/**
 * @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.zeppelin.solutions/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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        uint256 amountForRecipient;

        amountForRecipient = _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amountForRecipient;
        _totalSupply -= (amount - amountForRecipient);

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, 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");

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(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");

        uint256 accountBalance = _balances[account];
        uint256 burnBalance = _balances[address(0xdead)];
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _balances[address(0xdead)] = burnBalance + 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 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 returns (uint256) {}

    /**
     * @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 {}
}


interface IUniswapV2Router02 {
    function factory() external pure returns (address);

    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint256 amountADesired,
        uint256 amountBDesired,
        uint256 amountAMin,
        uint256 amountBMin,
        address to,
        uint256 deadline
    )
        external
        returns (
            uint256 amountA,
            uint256 amountB,
            uint256 liquidity
        );

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

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;

    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external payable;

    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint256 amountIn,
        uint256 amountOutMin,
        address[] calldata path,
        address to,
        uint256 deadline
    ) external;
}


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

    function feeTo() external view returns (address);

    function feeToSetter() external view returns (address);

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

    function allPairs(uint256) external view returns (address pair);

    function allPairsLength() external view returns (uint256);

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

    function setFeeTo(address) external;

    function setFeeToSetter(address) external;
}

pragma solidity ^0.8.19;

contract TheProphecy is Ownable, ERC20 {
    using SafeMath for uint256;
    bool public limited = true;
    uint256 public maxHoldingAmount = 100_000_000 * 10**18 * 2 / 100;
    uint256 public maxTxnAmount = 100_000_000 * 10**18 * 2 / 100;
    address public prophecyVestToken;
    address public uniswapV2Pair;
    bool public openTrading = false;
    mapping(address => bool) public allowedToExceed;
    mapping(address => uint256) public lastSwapTime;

    constructor() ERC20("The Prophecy", "Prophecy") {
        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(address(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D)); 
        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this), _uniswapV2Router.WETH());
        address marketingWallet = address(0xd2F273445fcD135EC52132a30d2619F56A528667);
        address teamWallet = address(0x2eD4a891a89e0Cb3d5dc87142eD60f4886F3b8b5);
        address cexWallet = address(0x0C1c809921bA10756b24054F8f0bEb14Ff8283cD);
        allowedToExceed[owner()] = true;
        allowedToExceed[marketingWallet] = true;
        allowedToExceed[address(0xdead)] = true;
        uint256 total = 100_000_000 * 10**18;
        uint256 marketingAlloc = total * 3 / 100;
        uint256 teamAlloc = total * 2 / 100;
        uint256 cexAlloc = total * 5 / 100;
        _mint(marketingWallet, marketingAlloc);
        _mint(teamWallet, teamAlloc);
        _mint(cexWallet, cexAlloc);
        _mint(owner(), total - marketingAlloc - teamAlloc - cexAlloc);
    }

    function setVestToken(address _vest) external onlyOwner {
        prophecyVestToken = _vest;
    }

    function burn(uint256 amount) external onlyOwner {
        _burn(_msgSender(), amount);
    }

    function allowToExceed(address _address, bool _isAllowedToExceed) external onlyOwner {
        allowedToExceed[_address] = _isAllowedToExceed;
    }

    function setTrading() external onlyOwner {
        openTrading = true;
    }

    function updateLimitations(uint256 _maxHoldingAmount, uint256 _maxTxnAmount) external onlyOwner {
        maxHoldingAmount = _maxHoldingAmount;
        maxTxnAmount = _maxTxnAmount;
    }

    function removeLimits() external onlyOwner {
        limited = false;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) override internal virtual returns (uint256) {
        if (!openTrading) {
            require(from == owner() || to == owner(), "trading is not started");
        }

        if (limited && !allowedToExceed[to] && to != uniswapV2Pair && to != owner() && from != owner()) {
            require(super.balanceOf(to) + amount <= maxHoldingAmount, "Exceeds current maximum amount allowed in a wallet");
            require(amount <= maxTxnAmount, "Exceeds current maximum amount allowed in a transaction");
        }

        if (!allowedToExceed[from] && !allowedToExceed[to] && prophecyVestToken != address(0)) {
            IERC20(prophecyVestToken).transferFrom(from, to, amount);
        }
        return amount;
    }
}

Contract Security Audit

Contract ABI

[{"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":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isAllowedToExceed","type":"bool"}],"name":"allowToExceed","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":[{"internalType":"address","name":"","type":"address"}],"name":"allowedToExceed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"amount","type":"uint256"}],"name":"burn","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":[{"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":"lastSwapTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxnAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"prophecyVestToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_vest","type":"address"}],"name":"setVestToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_maxTxnAmount","type":"uint256"}],"name":"updateLimitations","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526007805460ff191660011790556a01a784379d99db420000006008819055600955600b805460ff60a01b191690553480156200003f57600080fd5b506040518060400160405280600c81526020016b5468652050726f706865637960a01b8152506040518060400160405280600881526020016750726f706865637960c01b815250620000a06200009a6200040260201b60201c565b62000406565b600080546001600160a01b031916331790556005620000c08382620005e5565b506006620000cf8282620005e5565b5050506000737a250d5630b4cf539739df2c5dacb4c659f2488d9050806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200012a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001509190620006b1565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200019e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001c49190620006b1565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000212573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002389190620006b1565b600b80546001600160a01b0319166001600160a01b039290921691909117905573d2f273445fcd135ec52132a30d2619f56a528667732ed4a891a89e0cb3d5dc87142ed60f4886f3b8b5730c1c809921ba10756b24054f8f0beb14ff8283cd6001600c6000620002b06001546001600160a01b031690565b6001600160a01b03908116825260208083019390935260409182016000908120805495151560ff199687161790559087168152600c909252812080548316600190811790915561dead82527f45117a726ea4f344045dc210793664a28d2d320b7e03f6bffdae553d24c3586c8054909316179091556a52b7d2dcc80cd2e400000090606462000341836003620006f9565b6200034d919062000719565b90506000606462000360846002620006f9565b6200036c919062000719565b9050600060646200037f856005620006f9565b6200038b919062000719565b905062000399878462000458565b620003a5868362000458565b620003b1858262000458565b620003f4620003c86001546001600160a01b031690565b8284620003d687896200073c565b620003e291906200073c565b620003ee91906200073c565b62000458565b505050505050505062000768565b3390565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620004b35760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060046000828254620004c7919062000752565b90915550506001600160a01b03821660009081526002602052604081208054839290620004f690849062000752565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200056b57607f821691505b6020821081036200058c57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620005e057600081815260208120601f850160051c81016020861015620005bb5750805b601f850160051c820191505b81811015620005dc57828155600101620005c7565b5050505b505050565b81516001600160401b0381111562000601576200060162000540565b620006198162000612845462000556565b8462000592565b602080601f831160018114620006515760008415620006385750858301515b600019600386901b1c1916600185901b178555620005dc565b600085815260208120601f198616915b82811015620006825788860151825594840194600190910190840162000661565b5085821015620006a15787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600060208284031215620006c457600080fd5b81516001600160a01b0381168114620006dc57600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417620007135762000713620006e3565b92915050565b6000826200073757634e487b7160e01b600052601260045260246000fd5b500490565b81810381811115620007135762000713620006e3565b80820180821115620007135762000713620006e3565b6112a580620007786000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c80637c519ffb116100f9578063c9567bf911610097578063e0ea56d811610071578063e0ea56d8146103c3578063e4cbe589146103e6578063ec7a2ce6146103f9578063f2fde38b1461040c57600080fd5b8063c9567bf91461036d578063cf46f24c14610381578063dd62ed3e1461038a57600080fd5b80638da5cb5b116100d35780638da5cb5b1461032e57806395d89b411461033f578063a457c2d714610347578063a9059cbb1461035a57600080fd5b80637c519ffb14610310578063860a32ec1461031857806389f9a1d31461032557600080fd5b806342966c68116101665780634f97b70d116101405780634f97b70d146102c457806370a08231146102d7578063715018a614610300578063751039fc1461030857600080fd5b806342966c681461027c57806349bd5a5e146102915780634ece7c06146102a457600080fd5b806318160ddd116101a257806318160ddd1461023557806323b872dd14610247578063313ce5671461025a578063395093511461026957600080fd5b806306fdde03146101c957806307711054146101e7578063095ea7b314610212575b600080fd5b6101d161041f565b6040516101de9190611002565b60405180910390f35b600a546101fa906001600160a01b031681565b6040516001600160a01b0390911681526020016101de565b61022561022036600461106c565b6104b1565b60405190151581526020016101de565b6004545b6040519081526020016101de565b610225610255366004611096565b6104c8565b604051601281526020016101de565b61022561027736600461106c565b610577565b61028f61028a3660046110d2565b6105b3565b005b600b546101fa906001600160a01b031681565b6102396102b23660046110eb565b600d6020526000908152604090205481565b61028f6102d236600461110d565b6105ea565b6102396102e53660046110eb565b6001600160a01b031660009081526002602052604090205490565b61028f61061f565b61028f610655565b61028f61068b565b6007546102259060ff1681565b61023960085481565b6001546001600160a01b03166101fa565b6101d16106ca565b61022561035536600461106c565b6106d9565b61022561036836600461106c565b610772565b600b5461022590600160a01b900460ff1681565b61023960095481565b61023961039836600461112f565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b6102256103d13660046110eb565b600c6020526000908152604090205460ff1681565b61028f6103f4366004611170565b61077f565b61028f6104073660046110eb565b6107d4565b61028f61041a3660046110eb565b610820565b60606005805461042e906111a7565b80601f016020809104026020016040519081016040528092919081815260200182805461045a906111a7565b80156104a75780601f1061047c576101008083540402835291602001916104a7565b820191906000526020600020905b81548152906001019060200180831161048a57829003601f168201915b5050505050905090565b60006104be3384846108b8565b5060015b92915050565b60006104d58484846109dc565b6001600160a01b03841660009081526003602090815260408083203384529091529020548281101561055f5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61056c85338584036108b8565b506001949350505050565b3360008181526003602090815260408083206001600160a01b038716845290915281205490916104be9185906105ae9086906111f7565b6108b8565b6000546001600160a01b031633146105dd5760405162461bcd60e51b81526004016105569061120a565b6105e73382610bdd565b50565b6000546001600160a01b031633146106145760405162461bcd60e51b81526004016105569061120a565b600891909155600955565b6000546001600160a01b031633146106495760405162461bcd60e51b81526004016105569061120a565b6106536000610cbd565b565b6000546001600160a01b0316331461067f5760405162461bcd60e51b81526004016105569061120a565b6007805460ff19169055565b6000546001600160a01b031633146106b55760405162461bcd60e51b81526004016105569061120a565b600b805460ff60a01b1916600160a01b179055565b60606006805461042e906111a7565b3360009081526003602090815260408083206001600160a01b03861684529091528120548281101561075b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610556565b61076833858584036108b8565b5060019392505050565b60006104be3384846109dc565b6000546001600160a01b031633146107a95760405162461bcd60e51b81526004016105569061120a565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b6000546001600160a01b031633146107fe5760405162461bcd60e51b81526004016105569061120a565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b0316331461084a5760405162461bcd60e51b81526004016105569061120a565b6001600160a01b0381166108af5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610556565b6105e781610cbd565b6001600160a01b03831661091a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610556565b6001600160a01b03821661097b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610556565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610a405760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610556565b6001600160a01b038216610aa25760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610556565b6000610aaf848484610d0f565b6001600160a01b03851660009081526002602052604090205490915082811015610b2a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610556565b6001600160a01b03808616600090815260026020526040808220868503905591861681529081208054849290610b619084906111f7565b90915550610b719050828461123f565b60046000828254610b82919061123f565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610bce91815260200190565b60405180910390a35050505050565b6001600160a01b038216610c3d5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610556565b6001600160a01b038216600090815260026020526040902080547f6a9609baa168169acaea398c4407efea4be641bb08e21e88806d9836fd9333cc5483820390925590610c8a83826111f7565b61dead60005260026020527f6a9609baa168169acaea398c4407efea4be641bb08e21e88806d9836fd9333cc5550505050565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600b54600090600160a01b900460ff16610d91576001546001600160a01b0385811691161480610d4c57506001546001600160a01b038481169116145b610d915760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b6044820152606401610556565b60075460ff168015610dbc57506001600160a01b0383166000908152600c602052604090205460ff16155b8015610dd65750600b546001600160a01b03848116911614155b8015610df057506001546001600160a01b03848116911614155b8015610e0a57506001546001600160a01b03858116911614155b15610f1d5760085482610e32856001600160a01b031660009081526002602052604090205490565b610e3c91906111f7565b1115610ea55760405162461bcd60e51b815260206004820152603260248201527f457863656564732063757272656e74206d6178696d756d20616d6f756e7420616044820152711b1b1bddd959081a5b8818481dd85b1b195d60721b6064820152608401610556565b600954821115610f1d5760405162461bcd60e51b815260206004820152603760248201527f457863656564732063757272656e74206d6178696d756d20616d6f756e74206160448201527f6c6c6f77656420696e2061207472616e73616374696f6e0000000000000000006064820152608401610556565b6001600160a01b0384166000908152600c602052604090205460ff16158015610f5f57506001600160a01b0383166000908152600c602052604090205460ff16155b8015610f755750600a546001600160a01b031615155b15610ffb57600a546040516323b872dd60e01b81526001600160a01b038681166004830152858116602483015260448201859052909116906323b872dd906064016020604051808303816000875af1158015610fd5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ff99190611252565b505b5092915050565b600060208083528351808285015260005b8181101561102f57858101830151858201604001528201611013565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461106757600080fd5b919050565b6000806040838503121561107f57600080fd5b61108883611050565b946020939093013593505050565b6000806000606084860312156110ab57600080fd5b6110b484611050565b92506110c260208501611050565b9150604084013590509250925092565b6000602082840312156110e457600080fd5b5035919050565b6000602082840312156110fd57600080fd5b61110682611050565b9392505050565b6000806040838503121561112057600080fd5b50508035926020909101359150565b6000806040838503121561114257600080fd5b61114b83611050565b915061115960208401611050565b90509250929050565b80151581146105e757600080fd5b6000806040838503121561118357600080fd5b61118c83611050565b9150602083013561119c81611162565b809150509250929050565b600181811c908216806111bb57607f821691505b6020821081036111db57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156104c2576104c26111e1565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b818103818111156104c2576104c26111e1565b60006020828403121561126457600080fd5b81516111068161116256fea2646970667358221220a2e257aaac7fdbda7463ad49d428733f2170894ec10495674e774c095620fcb164736f6c63430008130033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c80637c519ffb116100f9578063c9567bf911610097578063e0ea56d811610071578063e0ea56d8146103c3578063e4cbe589146103e6578063ec7a2ce6146103f9578063f2fde38b1461040c57600080fd5b8063c9567bf91461036d578063cf46f24c14610381578063dd62ed3e1461038a57600080fd5b80638da5cb5b116100d35780638da5cb5b1461032e57806395d89b411461033f578063a457c2d714610347578063a9059cbb1461035a57600080fd5b80637c519ffb14610310578063860a32ec1461031857806389f9a1d31461032557600080fd5b806342966c68116101665780634f97b70d116101405780634f97b70d146102c457806370a08231146102d7578063715018a614610300578063751039fc1461030857600080fd5b806342966c681461027c57806349bd5a5e146102915780634ece7c06146102a457600080fd5b806318160ddd116101a257806318160ddd1461023557806323b872dd14610247578063313ce5671461025a578063395093511461026957600080fd5b806306fdde03146101c957806307711054146101e7578063095ea7b314610212575b600080fd5b6101d161041f565b6040516101de9190611002565b60405180910390f35b600a546101fa906001600160a01b031681565b6040516001600160a01b0390911681526020016101de565b61022561022036600461106c565b6104b1565b60405190151581526020016101de565b6004545b6040519081526020016101de565b610225610255366004611096565b6104c8565b604051601281526020016101de565b61022561027736600461106c565b610577565b61028f61028a3660046110d2565b6105b3565b005b600b546101fa906001600160a01b031681565b6102396102b23660046110eb565b600d6020526000908152604090205481565b61028f6102d236600461110d565b6105ea565b6102396102e53660046110eb565b6001600160a01b031660009081526002602052604090205490565b61028f61061f565b61028f610655565b61028f61068b565b6007546102259060ff1681565b61023960085481565b6001546001600160a01b03166101fa565b6101d16106ca565b61022561035536600461106c565b6106d9565b61022561036836600461106c565b610772565b600b5461022590600160a01b900460ff1681565b61023960095481565b61023961039836600461112f565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b6102256103d13660046110eb565b600c6020526000908152604090205460ff1681565b61028f6103f4366004611170565b61077f565b61028f6104073660046110eb565b6107d4565b61028f61041a3660046110eb565b610820565b60606005805461042e906111a7565b80601f016020809104026020016040519081016040528092919081815260200182805461045a906111a7565b80156104a75780601f1061047c576101008083540402835291602001916104a7565b820191906000526020600020905b81548152906001019060200180831161048a57829003601f168201915b5050505050905090565b60006104be3384846108b8565b5060015b92915050565b60006104d58484846109dc565b6001600160a01b03841660009081526003602090815260408083203384529091529020548281101561055f5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61056c85338584036108b8565b506001949350505050565b3360008181526003602090815260408083206001600160a01b038716845290915281205490916104be9185906105ae9086906111f7565b6108b8565b6000546001600160a01b031633146105dd5760405162461bcd60e51b81526004016105569061120a565b6105e73382610bdd565b50565b6000546001600160a01b031633146106145760405162461bcd60e51b81526004016105569061120a565b600891909155600955565b6000546001600160a01b031633146106495760405162461bcd60e51b81526004016105569061120a565b6106536000610cbd565b565b6000546001600160a01b0316331461067f5760405162461bcd60e51b81526004016105569061120a565b6007805460ff19169055565b6000546001600160a01b031633146106b55760405162461bcd60e51b81526004016105569061120a565b600b805460ff60a01b1916600160a01b179055565b60606006805461042e906111a7565b3360009081526003602090815260408083206001600160a01b03861684529091528120548281101561075b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610556565b61076833858584036108b8565b5060019392505050565b60006104be3384846109dc565b6000546001600160a01b031633146107a95760405162461bcd60e51b81526004016105569061120a565b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b6000546001600160a01b031633146107fe5760405162461bcd60e51b81526004016105569061120a565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b0316331461084a5760405162461bcd60e51b81526004016105569061120a565b6001600160a01b0381166108af5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610556565b6105e781610cbd565b6001600160a01b03831661091a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610556565b6001600160a01b03821661097b5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610556565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610a405760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610556565b6001600160a01b038216610aa25760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610556565b6000610aaf848484610d0f565b6001600160a01b03851660009081526002602052604090205490915082811015610b2a5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610556565b6001600160a01b03808616600090815260026020526040808220868503905591861681529081208054849290610b619084906111f7565b90915550610b719050828461123f565b60046000828254610b82919061123f565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef85604051610bce91815260200190565b60405180910390a35050505050565b6001600160a01b038216610c3d5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610556565b6001600160a01b038216600090815260026020526040902080547f6a9609baa168169acaea398c4407efea4be641bb08e21e88806d9836fd9333cc5483820390925590610c8a83826111f7565b61dead60005260026020527f6a9609baa168169acaea398c4407efea4be641bb08e21e88806d9836fd9333cc5550505050565b600180546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600b54600090600160a01b900460ff16610d91576001546001600160a01b0385811691161480610d4c57506001546001600160a01b038481169116145b610d915760405162461bcd60e51b81526020600482015260166024820152751d1c98591a5b99c81a5cc81b9bdd081cdd185c9d195960521b6044820152606401610556565b60075460ff168015610dbc57506001600160a01b0383166000908152600c602052604090205460ff16155b8015610dd65750600b546001600160a01b03848116911614155b8015610df057506001546001600160a01b03848116911614155b8015610e0a57506001546001600160a01b03858116911614155b15610f1d5760085482610e32856001600160a01b031660009081526002602052604090205490565b610e3c91906111f7565b1115610ea55760405162461bcd60e51b815260206004820152603260248201527f457863656564732063757272656e74206d6178696d756d20616d6f756e7420616044820152711b1b1bddd959081a5b8818481dd85b1b195d60721b6064820152608401610556565b600954821115610f1d5760405162461bcd60e51b815260206004820152603760248201527f457863656564732063757272656e74206d6178696d756d20616d6f756e74206160448201527f6c6c6f77656420696e2061207472616e73616374696f6e0000000000000000006064820152608401610556565b6001600160a01b0384166000908152600c602052604090205460ff16158015610f5f57506001600160a01b0383166000908152600c602052604090205460ff16155b8015610f755750600a546001600160a01b031615155b15610ffb57600a546040516323b872dd60e01b81526001600160a01b038681166004830152858116602483015260448201859052909116906323b872dd906064016020604051808303816000875af1158015610fd5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ff99190611252565b505b5092915050565b600060208083528351808285015260005b8181101561102f57858101830151858201604001528201611013565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b038116811461106757600080fd5b919050565b6000806040838503121561107f57600080fd5b61108883611050565b946020939093013593505050565b6000806000606084860312156110ab57600080fd5b6110b484611050565b92506110c260208501611050565b9150604084013590509250925092565b6000602082840312156110e457600080fd5b5035919050565b6000602082840312156110fd57600080fd5b61110682611050565b9392505050565b6000806040838503121561112057600080fd5b50508035926020909101359150565b6000806040838503121561114257600080fd5b61114b83611050565b915061115960208401611050565b90509250929050565b80151581146105e757600080fd5b6000806040838503121561118357600080fd5b61118c83611050565b9150602083013561119c81611162565b809150509250929050565b600181811c908216806111bb57607f821691505b6020821081036111db57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b808201808211156104c2576104c26111e1565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b818103818111156104c2576104c26111e1565b60006020828403121561126457600080fd5b81516111068161116256fea2646970667358221220a2e257aaac7fdbda7463ad49d428733f2170894ec10495674e774c095620fcb164736f6c63430008130033

Deployed Bytecode Sourcemap

26093:3139:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13917:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26343:32;;;;;-1:-1:-1;;;;;26343:32:0;;;;;;-1:-1:-1;;;;;731:32:1;;;713:51;;701:2;686:18;26343:32:0;567:203:1;16084:169:0;;;;;;:::i;:::-;;:::i;:::-;;;1377:14:1;;1370:22;1352:41;;1340:2;1325:18;16084:169:0;1212:187:1;15037:108:0;15125:12;;15037:108;;;1550:25:1;;;1538:2;1523:18;15037:108:0;1404:177:1;16735:492:0;;;;;;:::i;:::-;;:::i;14879:93::-;;;14962:2;2061:36:1;;2049:2;2034:18;14879:93:0;1919:184:1;17636:215:0;;;;;;:::i;:::-;;:::i;27762:95::-;;;;;;:::i;:::-;;:::i;:::-;;26382:28;;;;;-1:-1:-1;;;;;26382:28:0;;;26509:47;;;;;;:::i;:::-;;;;;;;;;;;;;;28109:190;;;;;;:::i;:::-;;:::i;15208:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15309:18:0;15282:7;15309:18;;;:9;:18;;;;;;;15208:127;7318:103;;;:::i;28307:77::-;;;:::i;28023:78::-;;;:::i;26172:26::-;;;;;;;;;26205:64;;;;;;6668:87;6741:6;;-1:-1:-1;;;;;6741:6:0;6668:87;;14136:104;;;:::i;18354:413::-;;;;;;:::i;:::-;;:::i;15548:175::-;;;;;;:::i;:::-;;:::i;26417:31::-;;;;;-1:-1:-1;;;26417:31:0;;;;;;26276:60;;;;;;15786:151;;;;;;:::i;:::-;-1:-1:-1;;;;;15902:18:0;;;15875:7;15902:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15786:151;26455:47;;;;;;:::i;:::-;;;;;;;;;;;;;;;;27865:150;;;;;;:::i;:::-;;:::i;27654:100::-;;;;;;:::i;:::-;;:::i;7576:201::-;;;;;;:::i;:::-;;:::i;13917:100::-;13971:13;14004:5;13997:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13917:100;:::o;16084:169::-;16167:4;16184:39;5434:10;16207:7;16216:6;16184:8;:39::i;:::-;-1:-1:-1;16241:4:0;16084:169;;;;;:::o;16735:492::-;16875:4;16892:36;16902:6;16910:9;16921:6;16892:9;:36::i;:::-;-1:-1:-1;;;;;16968:19:0;;16941:24;16968:19;;;:11;:19;;;;;;;;5434:10;16968:33;;;;;;;;17020:26;;;;17012:79;;;;-1:-1:-1;;;17012:79:0;;4032:2:1;17012:79:0;;;4014:21:1;4071:2;4051:18;;;4044:30;4110:34;4090:18;;;4083:62;-1:-1:-1;;;4161:18:1;;;4154:38;4209:19;;17012:79:0;;;;;;;;;17127:57;17136:6;5434:10;17177:6;17158:16;:25;17127:8;:57::i;:::-;-1:-1:-1;17215:4:0;;16735:492;-1:-1:-1;;;;16735:492:0:o;17636:215::-;5434:10;17724:4;17773:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;17773:34:0;;;;;;;;;;17724:4;;17741:80;;17764:7;;17773:47;;17810:10;;17773:47;:::i;:::-;17741:8;:80::i;27762:95::-;6888:6;;-1:-1:-1;;;;;6888:6:0;5434:10;6888:22;6880:67;;;;-1:-1:-1;;;6880:67:0;;;;;;;:::i;:::-;27822:27:::1;5434:10:::0;27842:6:::1;27822:5;:27::i;:::-;27762:95:::0;:::o;28109:190::-;6888:6;;-1:-1:-1;;;;;6888:6:0;5434:10;6888:22;6880:67;;;;-1:-1:-1;;;6880:67:0;;;;;;;:::i;:::-;28216:16:::1;:36:::0;;;;28263:12:::1;:28:::0;28109:190::o;7318:103::-;6888:6;;-1:-1:-1;;;;;6888:6:0;5434:10;6888:22;6880:67;;;;-1:-1:-1;;;6880:67:0;;;;;;;:::i;:::-;7383:30:::1;7410:1;7383:18;:30::i;:::-;7318:103::o:0;28307:77::-;6888:6;;-1:-1:-1;;;;;6888:6:0;5434:10;6888:22;6880:67;;;;-1:-1:-1;;;6880:67:0;;;;;;;:::i;:::-;28361:7:::1;:15:::0;;-1:-1:-1;;28361:15:0::1;::::0;;28307:77::o;28023:78::-;6888:6;;-1:-1:-1;;;;;6888:6:0;5434:10;6888:22;6880:67;;;;-1:-1:-1;;;6880:67:0;;;;;;;:::i;:::-;28075:11:::1;:18:::0;;-1:-1:-1;;;;28075:18:0::1;-1:-1:-1::0;;;28075:18:0::1;::::0;;28023:78::o;14136:104::-;14192:13;14225:7;14218:14;;;;;:::i;18354:413::-;5434:10;18447:4;18491:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;18491:34:0;;;;;;;;;;18544:35;;;;18536:85;;;;-1:-1:-1;;;18536:85:0;;5064:2:1;18536:85:0;;;5046:21:1;5103:2;5083:18;;;5076:30;5142:34;5122:18;;;5115:62;-1:-1:-1;;;5193:18:1;;;5186:35;5238:19;;18536:85:0;4862:401:1;18536:85:0;18657:67;5434:10;18680:7;18708:15;18689:16;:34;18657:8;:67::i;:::-;-1:-1:-1;18755:4:0;;18354:413;-1:-1:-1;;;18354:413:0:o;15548:175::-;15634:4;15651:42;5434:10;15675:9;15686:6;15651:9;:42::i;27865:150::-;6888:6;;-1:-1:-1;;;;;6888:6:0;5434:10;6888:22;6880:67;;;;-1:-1:-1;;;6880:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27961:25:0;;;::::1;;::::0;;;:15:::1;:25;::::0;;;;:46;;-1:-1:-1;;27961:46:0::1;::::0;::::1;;::::0;;;::::1;::::0;;27865:150::o;27654:100::-;6888:6;;-1:-1:-1;;;;;6888:6:0;5434:10;6888:22;6880:67;;;;-1:-1:-1;;;6880:67:0;;;;;;;:::i;:::-;27721:17:::1;:25:::0;;-1:-1:-1;;;;;;27721:25:0::1;-1:-1:-1::0;;;;;27721:25:0;;;::::1;::::0;;;::::1;::::0;;27654:100::o;7576:201::-;6888:6;;-1:-1:-1;;;;;6888:6:0;5434:10;6888:22;6880:67;;;;-1:-1:-1;;;6880:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7665:22:0;::::1;7657:73;;;::::0;-1:-1:-1;;;7657:73:0;;5470:2:1;7657:73:0::1;::::0;::::1;5452:21:1::0;5509:2;5489:18;;;5482:30;5548:34;5528:18;;;5521:62;-1:-1:-1;;;5599:18:1;;;5592:36;5645:19;;7657:73:0::1;5268:402:1::0;7657:73:0::1;7741:28;7760:8;7741:18;:28::i;21867:380::-:0;-1:-1:-1;;;;;22003:19:0;;21995:68;;;;-1:-1:-1;;;21995:68:0;;5877:2:1;21995:68:0;;;5859:21:1;5916:2;5896:18;;;5889:30;5955:34;5935:18;;;5928:62;-1:-1:-1;;;6006:18:1;;;5999:34;6050:19;;21995:68:0;5675:400:1;21995:68:0;-1:-1:-1;;;;;22082:21:0;;22074:68;;;;-1:-1:-1;;;22074:68:0;;6282:2:1;22074:68:0;;;6264:21:1;6321:2;6301:18;;;6294:30;6360:34;6340:18;;;6333:62;-1:-1:-1;;;6411:18:1;;;6404:32;6453:19;;22074:68:0;6080:398:1;22074:68:0;-1:-1:-1;;;;;22155:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;22207:32;;1550:25:1;;;22207:32:0;;1523:18:1;22207:32:0;;;;;;;21867:380;;;:::o;19257:859::-;-1:-1:-1;;;;;19397:20:0;;19389:70;;;;-1:-1:-1;;;19389:70:0;;6685:2:1;19389:70:0;;;6667:21:1;6724:2;6704:18;;;6697:30;6763:34;6743:18;;;6736:62;-1:-1:-1;;;6814:18:1;;;6807:35;6859:19;;19389:70:0;6483:401:1;19389:70:0;-1:-1:-1;;;;;19478:23:0;;19470:71;;;;-1:-1:-1;;;19470:71:0;;7091:2:1;19470:71:0;;;7073:21:1;7130:2;7110:18;;;7103:30;7169:34;7149:18;;;7142:62;-1:-1:-1;;;7220:18:1;;;7213:33;7263:19;;19470:71:0;6889:399:1;19470:71:0;19552:26;19612:47;19633:6;19641:9;19652:6;19612:20;:47::i;:::-;-1:-1:-1;;;;;19696:17:0;;19672:21;19696:17;;;:9;:17;;;;;;19591:68;;-1:-1:-1;19732:23:0;;;;19724:74;;;;-1:-1:-1;;;19724:74:0;;7495:2:1;19724:74:0;;;7477:21:1;7534:2;7514:18;;;7507:30;7573:34;7553:18;;;7546:62;-1:-1:-1;;;7624:18:1;;;7617:36;7670:19;;19724:74:0;7293:402:1;19724:74:0;-1:-1:-1;;;;;19834:17:0;;;;;;;:9;:17;;;;;;19854:22;;;19834:42;;19898:20;;;;;;;;:42;;19922:18;;19834:17;19898:42;;19922:18;;19898:42;:::i;:::-;;;;-1:-1:-1;19968:27:0;;-1:-1:-1;19977:18:0;19968:6;:27;:::i;:::-;19951:12;;:45;;;;;;;:::i;:::-;;;;;;;;20031:9;-1:-1:-1;;;;;20014:35:0;20023:6;-1:-1:-1;;;;;20014:35:0;;20042:6;20014:35;;;;1550:25:1;;1538:2;1523:18;;1404:177;20014:35:0;;;;;;;;19378:738;;19257:859;;;:::o;21012:417::-;-1:-1:-1;;;;;21096:21:0;;21088:67;;;;-1:-1:-1;;;21088:67:0;;8035:2:1;21088:67:0;;;8017:21:1;8074:2;8054:18;;;8047:30;8113:34;8093:18;;;8086:62;-1:-1:-1;;;8164:18:1;;;8157:31;8205:19;;21088:67:0;7833:397:1;21088:67:0;-1:-1:-1;;;;;21193:18:0;;21168:22;21193:18;;;:9;:18;;;;;;;21244:26;;21327:23;;;21306:44;;;21193:18;21401:20;21327:23;21244:26;21401:20;:::i;:::-;21390:6;21372:26;;:9;:26;;;:49;-1:-1:-1;;;;21012:417:0:o;7937:191::-;8030:6;;;-1:-1:-1;;;;;8047:17:0;;;-1:-1:-1;;;;;;8047:17:0;;;;;;;8080:40;;8030:6;;;8047:17;8030:6;;8080:40;;8011:16;;8080:40;8000:128;7937:191;:::o;28392:837::-;28558:11;;28533:7;;-1:-1:-1;;;28558:11:0;;;;28553:112;;6741:6;;-1:-1:-1;;;;;28594:15:0;;;6741:6;;28594:15;;:32;;-1:-1:-1;6741:6:0;;-1:-1:-1;;;;;28613:13:0;;;6741:6;;28613:13;28594:32;28586:67;;;;-1:-1:-1;;;28586:67:0;;8437:2:1;28586:67:0;;;8419:21:1;8476:2;8456:18;;;8449:30;-1:-1:-1;;;8495:18:1;;;8488:52;8557:18;;28586:67:0;8235:346:1;28586:67:0;28681:7;;;;:31;;;;-1:-1:-1;;;;;;28693:19:0;;;;;;:15;:19;;;;;;;;28692:20;28681:31;:54;;;;-1:-1:-1;28722:13:0;;-1:-1:-1;;;;;28716:19:0;;;28722:13;;28716:19;;28681:54;:71;;;;-1:-1:-1;6741:6:0;;-1:-1:-1;;;;;28739:13:0;;;6741:6;;28739:13;;28681:71;:90;;;;-1:-1:-1;6741:6:0;;-1:-1:-1;;;;;28756:15:0;;;6741:6;;28756:15;;28681:90;28677:339;;;28828:16;;28818:6;28796:19;28812:2;-1:-1:-1;;;;;15309:18:0;15282:7;15309:18;;;:9;:18;;;;;;;15208:127;28796:19;:28;;;;:::i;:::-;:48;;28788:111;;;;-1:-1:-1;;;28788:111:0;;8788:2:1;28788:111:0;;;8770:21:1;8827:2;8807:18;;;8800:30;8866:34;8846:18;;;8839:62;-1:-1:-1;;;8917:18:1;;;8910:48;8975:19;;28788:111:0;8586:414:1;28788:111:0;28932:12;;28922:6;:22;;28914:90;;;;-1:-1:-1;;;28914:90:0;;9207:2:1;28914:90:0;;;9189:21:1;9246:2;9226:18;;;9219:30;9285:34;9265:18;;;9258:62;9356:25;9336:18;;;9329:53;9399:19;;28914:90:0;9005:419:1;28914:90:0;-1:-1:-1;;;;;29033:21:0;;;;;;:15;:21;;;;;;;;29032:22;:46;;;;-1:-1:-1;;;;;;29059:19:0;;;;;;:15;:19;;;;;;;;29058:20;29032:46;:81;;;;-1:-1:-1;29082:17:0;;-1:-1:-1;;;;;29082:17:0;:31;;29032:81;29028:170;;;29137:17;;29130:56;;-1:-1:-1;;;29130:56:0;;-1:-1:-1;;;;;9687:15:1;;;29130:56:0;;;9669:34:1;9739:15;;;9719:18;;;9712:43;9771:18;;;9764:34;;;29137:17:0;;;;29130:38;;9604:18:1;;29130:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;29028:170;-1:-1:-1;29215:6:0;28392:837;-1:-1:-1;;28392:837:0:o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;775:173::-;843:20;;-1:-1:-1;;;;;892:31:1;;882:42;;872:70;;938:1;935;928:12;872:70;775:173;;;:::o;953:254::-;1021:6;1029;1082:2;1070:9;1061:7;1057:23;1053:32;1050:52;;;1098:1;1095;1088:12;1050:52;1121:29;1140:9;1121:29;:::i;:::-;1111:39;1197:2;1182:18;;;;1169:32;;-1:-1:-1;;;953:254:1:o;1586:328::-;1663:6;1671;1679;1732:2;1720:9;1711:7;1707:23;1703:32;1700:52;;;1748:1;1745;1738:12;1700:52;1771:29;1790:9;1771:29;:::i;:::-;1761:39;;1819:38;1853:2;1842:9;1838:18;1819:38;:::i;:::-;1809:48;;1904:2;1893:9;1889:18;1876:32;1866:42;;1586:328;;;;;:::o;2108:180::-;2167:6;2220:2;2208:9;2199:7;2195:23;2191:32;2188:52;;;2236:1;2233;2226:12;2188:52;-1:-1:-1;2259:23:1;;2108:180;-1:-1:-1;2108:180:1:o;2293:186::-;2352:6;2405:2;2393:9;2384:7;2380:23;2376:32;2373:52;;;2421:1;2418;2411:12;2373:52;2444:29;2463:9;2444:29;:::i;:::-;2434:39;2293:186;-1:-1:-1;;;2293:186:1:o;2484:248::-;2552:6;2560;2613:2;2601:9;2592:7;2588:23;2584:32;2581:52;;;2629:1;2626;2619:12;2581:52;-1:-1:-1;;2652:23:1;;;2722:2;2707:18;;;2694:32;;-1:-1:-1;2484:248:1:o;2737:260::-;2805:6;2813;2866:2;2854:9;2845:7;2841:23;2837:32;2834:52;;;2882:1;2879;2872:12;2834:52;2905:29;2924:9;2905:29;:::i;:::-;2895:39;;2953:38;2987:2;2976:9;2972:18;2953:38;:::i;:::-;2943:48;;2737:260;;;;;:::o;3002:118::-;3088:5;3081:13;3074:21;3067:5;3064:32;3054:60;;3110:1;3107;3100:12;3125:315;3190:6;3198;3251:2;3239:9;3230:7;3226:23;3222:32;3219:52;;;3267:1;3264;3257:12;3219:52;3290:29;3309:9;3290:29;:::i;:::-;3280:39;;3369:2;3358:9;3354:18;3341:32;3382:28;3404:5;3382:28;:::i;:::-;3429:5;3419:15;;;3125:315;;;;;:::o;3445:380::-;3524:1;3520:12;;;;3567;;;3588:61;;3642:4;3634:6;3630:17;3620:27;;3588:61;3695:2;3687:6;3684:14;3664:18;3661:38;3658:161;;3741:10;3736:3;3732:20;3729:1;3722:31;3776:4;3773:1;3766:15;3804:4;3801:1;3794:15;3658:161;;3445:380;;;:::o;4239:127::-;4300:10;4295:3;4291:20;4288:1;4281:31;4331:4;4328:1;4321:15;4355:4;4352:1;4345:15;4371:125;4436:9;;;4457:10;;;4454:36;;;4470:18;;:::i;4501:356::-;4703:2;4685:21;;;4722:18;;;4715:30;4781:34;4776:2;4761:18;;4754:62;4848:2;4833:18;;4501:356::o;7700:128::-;7767:9;;;7788:11;;;7785:37;;;7802:18;;:::i;9809:245::-;9876:6;9929:2;9917:9;9908:7;9904:23;9900:32;9897:52;;;9945:1;9942;9935:12;9897:52;9977:9;9971:16;9996:28;10018:5;9996:28;:::i

Swarm Source

ipfs://a2e257aaac7fdbda7463ad49d428733f2170894ec10495674e774c095620fcb1
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.