ETH Price: $3,298.37 (+0.39%)
 

Overview

Max Total Supply

2,000,000,000 RNS

Holders

112

Transfers

-
2

Market

Onchain Market Cap

-

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:
RNSToken

Compiler Version
v0.8.30+commit.73712a01

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Pausable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

/**
 * @title RNS Token (RentStac.com)
 * @dev Native token for RentStac.com tokenized real estate platform
 * 
 * Total Supply: 2,000,000,000 RNS (2 billion)
 * 
 * Token Allocation (as per Whitepaper Section 7):
 * - Presale:                   40% (800,000,000 RNS)
 * - Liquidity & Reserves:      20% (400,000,000 RNS)
 * - Team & Founders:           15% (300,000,000 RNS)
 * - Community Rewards:         10% (200,000,000 RNS)
 * - Marketing & Partnerships:   8% (160,000,000 RNS)
 * - Development Fund:           4% (80,000,000 RNS)
 * - Legal & Compliance:         3% (60,000,000 RNS)
 * 
 * Features:
 * - Fixed supply (no minting)
 * - Burnable (deflationary mechanism)
 * - Pausable (emergency control)
 * - Initial allocation distribution
 */
contract RNSToken is ERC20, ERC20Burnable, ERC20Pausable, Ownable {
    
    // Total supply constant
    uint256 public constant TOTAL_SUPPLY = 2_000_000_000 * 10**18; // 2 billion RNS
    
    // Allocation percentages (in basis points, 10000 = 100%)
    uint256 public constant PRESALE_ALLOCATION = 4000;           // 40%
    uint256 public constant LIQUIDITY_ALLOCATION = 2000;         // 20%
    uint256 public constant TEAM_ALLOCATION = 1500;              // 15%
    uint256 public constant COMMUNITY_ALLOCATION = 1000;         // 10%
    uint256 public constant MARKETING_ALLOCATION = 800;          // 8%
    uint256 public constant DEVELOPMENT_ALLOCATION = 400;        // 4%
    uint256 public constant LEGAL_ALLOCATION = 300;              // 3%
    
    // Wallet addresses for each allocation
    address public presaleWallet;
    address public liquidityWallet;
    address public teamWallet;
    address public communityWallet;
    address public marketingWallet;
    address public developmentWallet;
    address public legalWallet;
    
    // Tracking
    bool public allocationsDistributed;
    
    // Events
    event AllocationsDistributed(
        address presale,
        address liquidity,
        address team,
        address community,
        address marketing,
        address development,
        address legal
    );
    
    /**
     * @dev Constructor
     * Mints total supply to contract, ready for distribution
     */
    constructor() ERC20("RentStac", "RNS") Ownable(msg.sender) {
        // Mint total supply to contract
        _mint(address(this), TOTAL_SUPPLY);
    }
    
    /**
     * @dev Distribute initial allocations to designated wallets
     * Can only be called once by owner
     * 
     * @param _presaleWallet Address for presale tokens (40%)
     * @param _liquidityWallet Address for liquidity & reserves (20%)
     * @param _teamWallet Address for team & founders (15%)
     * @param _communityWallet Address for community rewards (10%)
     * @param _marketingWallet Address for marketing & partnerships (8%)
     * @param _developmentWallet Address for development fund (4%)
     * @param _legalWallet Address for legal & compliance (3%)
     */
    function distributeAllocations(
        address _presaleWallet,
        address _liquidityWallet,
        address _teamWallet,
        address _communityWallet,
        address _marketingWallet,
        address _developmentWallet,
        address _legalWallet
    ) external onlyOwner {
        require(!allocationsDistributed, "Allocations already distributed");
        require(_presaleWallet != address(0), "Invalid presale wallet");
        require(_liquidityWallet != address(0), "Invalid liquidity wallet");
        require(_teamWallet != address(0), "Invalid team wallet");
        require(_communityWallet != address(0), "Invalid community wallet");
        require(_marketingWallet != address(0), "Invalid marketing wallet");
        require(_developmentWallet != address(0), "Invalid development wallet");
        require(_legalWallet != address(0), "Invalid legal wallet");
        
        // Store wallet addresses
        presaleWallet = _presaleWallet;
        liquidityWallet = _liquidityWallet;
        teamWallet = _teamWallet;
        communityWallet = _communityWallet;
        marketingWallet = _marketingWallet;
        developmentWallet = _developmentWallet;
        legalWallet = _legalWallet;
        
        // Calculate allocation amounts
        uint256 presaleAmount = (TOTAL_SUPPLY * PRESALE_ALLOCATION) / 10000;
        uint256 liquidityAmount = (TOTAL_SUPPLY * LIQUIDITY_ALLOCATION) / 10000;
        uint256 teamAmount = (TOTAL_SUPPLY * TEAM_ALLOCATION) / 10000;
        uint256 communityAmount = (TOTAL_SUPPLY * COMMUNITY_ALLOCATION) / 10000;
        uint256 marketingAmount = (TOTAL_SUPPLY * MARKETING_ALLOCATION) / 10000;
        uint256 developmentAmount = (TOTAL_SUPPLY * DEVELOPMENT_ALLOCATION) / 10000;
        uint256 legalAmount = (TOTAL_SUPPLY * LEGAL_ALLOCATION) / 10000;
        
        // Transfer allocations
        _transfer(address(this), _presaleWallet, presaleAmount);
        _transfer(address(this), _liquidityWallet, liquidityAmount);
        _transfer(address(this), _teamWallet, teamAmount);
        _transfer(address(this), _communityWallet, communityAmount);
        _transfer(address(this), _marketingWallet, marketingAmount);
        _transfer(address(this), _developmentWallet, developmentAmount);
        _transfer(address(this), _legalWallet, legalAmount);
        
        allocationsDistributed = true;
        
        emit AllocationsDistributed(
            _presaleWallet,
            _liquidityWallet,
            _teamWallet,
            _communityWallet,
            _marketingWallet,
            _developmentWallet,
            _legalWallet
        );
    }
    
    /**
     * @dev Get allocation amounts for transparency
     */
    function getAllocationAmounts() external pure returns (
        uint256 presale,
        uint256 liquidity,
        uint256 team,
        uint256 community,
        uint256 marketing,
        uint256 development,
        uint256 legal
    ) {
        return (
            (TOTAL_SUPPLY * PRESALE_ALLOCATION) / 10000,      // 800M
            (TOTAL_SUPPLY * LIQUIDITY_ALLOCATION) / 10000,    // 400M
            (TOTAL_SUPPLY * TEAM_ALLOCATION) / 10000,         // 300M
            (TOTAL_SUPPLY * COMMUNITY_ALLOCATION) / 10000,    // 200M
            (TOTAL_SUPPLY * MARKETING_ALLOCATION) / 10000,    // 160M
            (TOTAL_SUPPLY * DEVELOPMENT_ALLOCATION) / 10000,  // 80M
            (TOTAL_SUPPLY * LEGAL_ALLOCATION) / 10000         // 60M
        );
    }
    
    /**
     * @dev Get all wallet addresses
     */
    function getAllWallets() external view returns (
        address presale,
        address liquidity,
        address team,
        address community,
        address marketing,
        address development,
        address legal
    ) {
        return (
            presaleWallet,
            liquidityWallet,
            teamWallet,
            communityWallet,
            marketingWallet,
            developmentWallet,
            legalWallet
        );
    }
    
    /**
     * @dev Pause token transfers (emergency only)
     */
    function pause() external onlyOwner {
        _pause();
    }
    
    /**
     * @dev Unpause token transfers
     */
    function unpause() external onlyOwner {
        _unpause();
    }
    
    /**
     * @dev Override required by Solidity for multiple inheritance
     */
    function _update(
        address from,
        address to,
        uint256 value
    ) internal virtual override(ERC20, ERC20Pausable) {
        super._update(from, to, value);
    }
    
    /**
     * @dev Burn tokens from caller's balance (deflationary mechanism)
     * Anyone can burn their own tokens
     */
    function burn(uint256 amount) public override {
        super.burn(amount);
    }
    
    /**
     * @dev Burn tokens from specific address (requires approval)
     */
    function burnFrom(address account, uint256 amount) public override {
        super.burnFrom(account, amount);
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;

import {Context} from "../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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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 10 : ERC20Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.1.0) (token/ERC20/extensions/ERC20Pausable.sol)

pragma solidity ^0.8.20;

import {ERC20} from "../ERC20.sol";
import {Pausable} from "../../../utils/Pausable.sol";

/**
 * @dev ERC-20 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 *
 * IMPORTANT: This contract does not include public pause and unpause functions. In
 * addition to inheriting this contract, you must define both functions, invoking the
 * {Pausable-_pause} and {Pausable-_unpause} internal functions, with appropriate
 * access control, e.g. using {AccessControl} or {Ownable}. Not doing so will
 * make the contract pause mechanism of the contract unreachable, and thus unusable.
 */
abstract contract ERC20Pausable is ERC20, Pausable {
    /**
     * @dev See {ERC20-_update}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _update(address from, address to, uint256 value) internal virtual override whenNotPaused {
        super._update(from, to, value);
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.20;

import {ERC20} from "../ERC20.sol";
import {Context} from "../../../utils/Context.sol";

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys a `value` amount of tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 value) public virtual {
        _burn(_msgSender(), value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, deducting from
     * the caller's allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `value`.
     */
    function burnFrom(address account, uint256 value) public virtual {
        _spendAllowance(account, _msgSender(), value);
        _burn(account, value);
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;

import {IERC20} from "./IERC20.sol";
import {IERC20Metadata} from "./extensions/IERC20Metadata.sol";
import {Context} from "../../utils/Context.sol";
import {IERC20Errors} from "../../interfaces/draft-IERC6093.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}.
 *
 * 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 ERC-20
 * applications.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

    mapping(address account => mapping(address spender => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * Both 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 returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 returns (uint8) {
        return 18;
    }

    /// @inheritdoc IERC20
    function totalSupply() public view virtual returns (uint256) {
        return _totalSupply;
    }

    /// @inheritdoc IERC20
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Skips emitting an {Approval} event indicating an allowance update. This is not
     * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].
     *
     * 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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     *
     * ```solidity
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner`'s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance < type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.3.0) (utils/Pausable.sol)

pragma solidity ^0.8.20;

import {Context} from "../utils/Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    bool private _paused;

    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    /**
     * @dev The operation failed because the contract is paused.
     */
    error EnforcedPause();

    /**
     * @dev The operation failed because the contract is not paused.
     */
    error ExpectedPause();

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        if (paused()) {
            revert EnforcedPause();
        }
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        if (!paused()) {
            revert ExpectedPause();
        }
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (interfaces/draft-IERC6093.sol)
pragma solidity >=0.8.4;

/**
 * @dev Standard ERC-20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC-721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-20.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC-1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity >=0.6.2;

import {IERC20} from "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC-20 standard.
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/IERC20.sol)

pragma solidity >=0.4.16;

/**
 * @dev Interface of the ERC-20 standard as defined in the ERC.
 */
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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

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

Contract Security Audit

Contract ABI

API
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[],"name":"EnforcedPause","type":"error"},{"inputs":[],"name":"ExpectedPause","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"presale","type":"address"},{"indexed":false,"internalType":"address","name":"liquidity","type":"address"},{"indexed":false,"internalType":"address","name":"team","type":"address"},{"indexed":false,"internalType":"address","name":"community","type":"address"},{"indexed":false,"internalType":"address","name":"marketing","type":"address"},{"indexed":false,"internalType":"address","name":"development","type":"address"},{"indexed":false,"internalType":"address","name":"legal","type":"address"}],"name":"AllocationsDistributed","type":"event"},{"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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"COMMUNITY_ALLOCATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEVELOPMENT_ALLOCATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LEGAL_ALLOCATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LIQUIDITY_ALLOCATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MARKETING_ALLOCATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_ALLOCATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAM_ALLOCATION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allocationsDistributed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","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":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"communityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"developmentWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_presaleWallet","type":"address"},{"internalType":"address","name":"_liquidityWallet","type":"address"},{"internalType":"address","name":"_teamWallet","type":"address"},{"internalType":"address","name":"_communityWallet","type":"address"},{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address","name":"_developmentWallet","type":"address"},{"internalType":"address","name":"_legalWallet","type":"address"}],"name":"distributeAllocations","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getAllWallets","outputs":[{"internalType":"address","name":"presale","type":"address"},{"internalType":"address","name":"liquidity","type":"address"},{"internalType":"address","name":"team","type":"address"},{"internalType":"address","name":"community","type":"address"},{"internalType":"address","name":"marketing","type":"address"},{"internalType":"address","name":"development","type":"address"},{"internalType":"address","name":"legal","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAllocationAmounts","outputs":[{"internalType":"uint256","name":"presale","type":"uint256"},{"internalType":"uint256","name":"liquidity","type":"uint256"},{"internalType":"uint256","name":"team","type":"uint256"},{"internalType":"uint256","name":"community","type":"uint256"},{"internalType":"uint256","name":"marketing","type":"uint256"},{"internalType":"uint256","name":"development","type":"uint256"},{"internalType":"uint256","name":"legal","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"legalWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidityWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","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":"value","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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801561000f575f5ffd5b50336040518060400160405280600881526020017f52656e74537461630000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f524e530000000000000000000000000000000000000000000000000000000000815250816003908161008c9190610776565b50806004908161009c9190610776565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361010f575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016101069190610884565b60405180910390fd5b61011e8161014060201b60201c565b5061013b306b06765c793fa10079d000000061020560201b60201c565b61095a565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610275575f6040517fec442f0500000000000000000000000000000000000000000000000000000000815260040161026c9190610884565b60405180910390fd5b6102865f838361028a60201b60201c565b5050565b61029b8383836102a060201b60201c565b505050565b6102ae6102c460201b60201c565b6102bf83838361030b60201b60201c565b505050565b6102d261052460201b60201c565b15610309576040517fd93c066500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361035b578060025f82825461034f91906108ca565b92505081905550610429565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050818110156103e4578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016103db9392919061090c565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610470578060025f82825403925050819055506104ba565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516105179190610941565b60405180910390a3505050565b5f60055f9054906101000a900460ff16905090565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806105b457607f821691505b6020821081036105c7576105c6610570565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026106297fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826105ee565b61063386836105ee565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f61067761067261066d8461064b565b610654565b61064b565b9050919050565b5f819050919050565b6106908361065d565b6106a461069c8261067e565b8484546105fa565b825550505050565b5f5f905090565b6106bb6106ac565b6106c6818484610687565b505050565b5b818110156106e9576106de5f826106b3565b6001810190506106cc565b5050565b601f82111561072e576106ff816105cd565b610708846105df565b81016020851015610717578190505b61072b610723856105df565b8301826106cb565b50505b505050565b5f82821c905092915050565b5f61074e5f1984600802610733565b1980831691505092915050565b5f610766838361073f565b9150826002028217905092915050565b61077f82610539565b67ffffffffffffffff81111561079857610797610543565b5b6107a2825461059d565b6107ad8282856106ed565b5f60209050601f8311600181146107de575f84156107cc578287015190505b6107d6858261075b565b86555061083d565b601f1984166107ec866105cd565b5f5b82811015610813578489015182556001820191506020850194506020810190506107ee565b86831015610830578489015161082c601f89168261073f565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61086e82610845565b9050919050565b61087e81610864565b82525050565b5f6020820190506108975f830184610875565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6108d48261064b565b91506108df8361064b565b92508282019050808211156108f7576108f661089d565b5b92915050565b6109068161064b565b82525050565b5f60608201905061091f5f830186610875565b61092c60208301856108fd565b61093960408301846108fd565b949350505050565b5f6020820190506109545f8301846108fd565b92915050565b6126e1806109675f395ff3fe608060405234801561000f575f5ffd5b506004361061021a575f3560e01c8063810fae2d11610123578063c04a5414116100ab578063dd62ed3e1161007a578063dd62ed3e146105d2578063e1807b2714610602578063f2fde38b14610620578063f9428f381461063c578063fd99cbed1461065a5761021a565b8063c04a54141461055a578063c757483914610578578063c7b5a48c14610596578063d4698016146105b45761021a565b8063902d55a5116100f2578063902d55a5146104b257806395d89b41146104d0578063993eb1c5146104ee578063a9059cbb1461050c578063afa287671461053c5761021a565b8063810fae2d146104505780638456cb591461046c5780638da5cb5b146104765780638e80bd39146104945761021a565b806340e79993116101a657806370a082311161017557806370a08231146103b8578063715018a6146103e857806375f0a874146103f257806379cc6790146104105780637f3647481461042c5761021a565b806340e799931461034257806342966c6814610360578063599270441461037c5780635c975abb1461039a5761021a565b80631bfa8601116101ed5780631bfa8601146102a85780631ed77dc8146102cc57806323b872dd146102ea578063313ce5671461031a5780633f4ba83a146103385761021a565b806306fdde031461021e578063095ea7b31461023c5780630bb8bacc1461026c57806318160ddd1461028a575b5f5ffd5b610226610678565b6040516102339190611dda565b60405180910390f35b61025660048036038101906102519190611e8b565b610708565b6040516102639190611ee3565b60405180910390f35b61027461072a565b6040516102819190611ee3565b60405180910390f35b61029261073d565b60405161029f9190611f0b565b60405180910390f35b6102b0610746565b6040516102c39796959493929190611f33565b60405180910390f35b6102d4610852565b6040516102e19190611fa0565b60405180910390f35b61030460048036038101906102ff9190611fb9565b610877565b6040516103119190611ee3565b60405180910390f35b6103226108a5565b60405161032f9190612024565b60405180910390f35b6103406108ad565b005b61034a6108bf565b6040516103579190611f0b565b60405180910390f35b61037a6004803603810190610375919061203d565b6108c5565b005b6103846108d1565b6040516103919190611fa0565b60405180910390f35b6103a26108f6565b6040516103af9190611ee3565b60405180910390f35b6103d260048036038101906103cd9190612068565b61090b565b6040516103df9190611f0b565b60405180910390f35b6103f0610950565b005b6103fa610963565b6040516104079190611fa0565b60405180910390f35b61042a60048036038101906104259190611e8b565b610988565b005b610434610996565b6040516104479796959493929190612093565b60405180910390f35b61046a60048036038101906104659190612100565b610ac5565b005b6104746111c0565b005b61047e6111d2565b60405161048b9190611fa0565b60405180910390f35b61049c6111fb565b6040516104a99190611f0b565b60405180910390f35b6104ba611201565b6040516104c79190611f0b565b60405180910390f35b6104d8611211565b6040516104e59190611dda565b60405180910390f35b6104f66112a1565b6040516105039190611f0b565b60405180910390f35b61052660048036038101906105219190611e8b565b6112a7565b6040516105339190611ee3565b60405180910390f35b6105446112c9565b6040516105519190611fa0565b60405180910390f35b6105626112ee565b60405161056f9190611fa0565b60405180910390f35b610580611313565b60405161058d9190611fa0565b60405180910390f35b61059e611338565b6040516105ab9190611f0b565b60405180910390f35b6105bc61133e565b6040516105c99190611fa0565b60405180910390f35b6105ec60048036038101906105e7919061219d565b611363565b6040516105f99190611f0b565b60405180910390f35b61060a6113e5565b6040516106179190611f0b565b60405180910390f35b61063a60048036038101906106359190612068565b6113eb565b005b61064461146f565b6040516106519190611f0b565b60405180910390f35b610662611475565b60405161066f9190611f0b565b60405180910390f35b60606003805461068790612208565b80601f01602080910402602001604051908101604052809291908181526020018280546106b390612208565b80156106fe5780601f106106d5576101008083540402835291602001916106fe565b820191905f5260205f20905b8154815290600101906020018083116106e157829003601f168201915b5050505050905090565b5f5f61071261147b565b905061071f818585611482565b600191505092915050565b600c60149054906101000a900460ff1681565b5f600254905090565b5f5f5f5f5f5f5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16965096509650965096509650965090919293949596565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f5f61088161147b565b905061088e858285611494565b610899858585611527565b60019150509392505050565b5f6012905090565b6108b5611617565b6108bd61169e565b565b61012c81565b6108ce816116ff565b50565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60055f9054906101000a900460ff16905090565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610958611617565b6109615f611713565b565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61099282826117d8565b5050565b5f5f5f5f5f5f5f612710610fa06b06765c793fa10079d00000006109ba9190612265565b6109c491906122d3565b6127106107d06b06765c793fa10079d00000006109e19190612265565b6109eb91906122d3565b6127106105dc6b06765c793fa10079d0000000610a089190612265565b610a1291906122d3565b6127106103e86b06765c793fa10079d0000000610a2f9190612265565b610a3991906122d3565b6127106103206b06765c793fa10079d0000000610a569190612265565b610a6091906122d3565b6127106101906b06765c793fa10079d0000000610a7d9190612265565b610a8791906122d3565b61271061012c6b06765c793fa10079d0000000610aa49190612265565b610aae91906122d3565b965096509650965096509650965090919293949596565b610acd611617565b600c60149054906101000a900460ff1615610b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b149061234d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1603610b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b82906123b5565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1603610bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf09061241d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5e90612485565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccc906124ed565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a90612555565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610db1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da8906125bd565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1690612625565b60405180910390fd5b8660065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508560075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508460085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508360095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600b5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600c5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f612710610fa06b06765c793fa10079d0000000610ffd9190612265565b61100791906122d3565b90505f6127106107d06b06765c793fa10079d00000006110279190612265565b61103191906122d3565b90505f6127106105dc6b06765c793fa10079d00000006110519190612265565b61105b91906122d3565b90505f6127106103e86b06765c793fa10079d000000061107b9190612265565b61108591906122d3565b90505f6127106103206b06765c793fa10079d00000006110a59190612265565b6110af91906122d3565b90505f6127106101906b06765c793fa10079d00000006110cf9190612265565b6110d991906122d3565b90505f61271061012c6b06765c793fa10079d00000006110f99190612265565b61110391906122d3565b9050611110308f89611527565b61111b308e88611527565b611126308d87611527565b611131308c86611527565b61113c308b85611527565b611147308a84611527565b611152308983611527565b6001600c60146101000a81548160ff0219169083151502179055507f0757a0215528c08635f0030c2848d202c230617be27e38f176d7edf8244212f78e8e8e8e8e8e8e6040516111a89796959493929190611f33565b60405180910390a15050505050505050505050505050565b6111c8611617565b6111d06117f8565b565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61032081565b6b06765c793fa10079d000000081565b60606004805461122090612208565b80601f016020809104026020016040519081016040528092919081815260200182805461124c90612208565b80156112975780601f1061126e57610100808354040283529160200191611297565b820191905f5260205f20905b81548152906001019060200180831161127a57829003601f168201915b5050505050905090565b6103e881565b5f5f6112b161147b565b90506112be818585611527565b600191505092915050565b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610fa081565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61019081565b6113f3611617565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611463575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161145a9190611fa0565b60405180910390fd5b61146c81611713565b50565b6107d081565b6105dc81565b5f33905090565b61148f838383600161185a565b505050565b5f61149f8484611363565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8110156115215781811015611512578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161150993929190612643565b60405180910390fd5b61152084848484035f61185a565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611597575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161158e9190611fa0565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611607575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016115fe9190611fa0565b60405180910390fd5b611612838383611a29565b505050565b61161f61147b565b73ffffffffffffffffffffffffffffffffffffffff1661163d6111d2565b73ffffffffffffffffffffffffffffffffffffffff161461169c5761166061147b565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016116939190611fa0565b60405180910390fd5b565b6116a6611a39565b5f60055f6101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6116e861147b565b6040516116f59190611fa0565b60405180910390a1565b61171061170a61147b565b82611a79565b50565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6117ea826117e461147b565b83611494565b6117f48282611a79565b5050565b611800611af8565b600160055f6101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861184361147b565b6040516118509190611fa0565b60405180910390a1565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036118ca575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016118c19190611fa0565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361193a575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016119319190611fa0565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611a23578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611a1a9190611f0b565b60405180910390a35b50505050565b611a34838383611b39565b505050565b611a416108f6565b611a77576040517f8dfc202b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ae9575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401611ae09190611fa0565b60405180910390fd5b611af4825f83611a29565b5050565b611b006108f6565b15611b37576040517fd93c066500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b611b41611af8565b611b4c838383611b51565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ba1578060025f828254611b959190612678565b92505081905550611c6f565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611c2a578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401611c2193929190612643565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611cb6578060025f8282540392505081905550611d00565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611d5d9190611f0b565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611dac82611d6a565b611db68185611d74565b9350611dc6818560208601611d84565b611dcf81611d92565b840191505092915050565b5f6020820190508181035f830152611df28184611da2565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611e2782611dfe565b9050919050565b611e3781611e1d565b8114611e41575f5ffd5b50565b5f81359050611e5281611e2e565b92915050565b5f819050919050565b611e6a81611e58565b8114611e74575f5ffd5b50565b5f81359050611e8581611e61565b92915050565b5f5f60408385031215611ea157611ea0611dfa565b5b5f611eae85828601611e44565b9250506020611ebf85828601611e77565b9150509250929050565b5f8115159050919050565b611edd81611ec9565b82525050565b5f602082019050611ef65f830184611ed4565b92915050565b611f0581611e58565b82525050565b5f602082019050611f1e5f830184611efc565b92915050565b611f2d81611e1d565b82525050565b5f60e082019050611f465f83018a611f24565b611f536020830189611f24565b611f606040830188611f24565b611f6d6060830187611f24565b611f7a6080830186611f24565b611f8760a0830185611f24565b611f9460c0830184611f24565b98975050505050505050565b5f602082019050611fb35f830184611f24565b92915050565b5f5f5f60608486031215611fd057611fcf611dfa565b5b5f611fdd86828701611e44565b9350506020611fee86828701611e44565b9250506040611fff86828701611e77565b9150509250925092565b5f60ff82169050919050565b61201e81612009565b82525050565b5f6020820190506120375f830184612015565b92915050565b5f6020828403121561205257612051611dfa565b5b5f61205f84828501611e77565b91505092915050565b5f6020828403121561207d5761207c611dfa565b5b5f61208a84828501611e44565b91505092915050565b5f60e0820190506120a65f83018a611efc565b6120b36020830189611efc565b6120c06040830188611efc565b6120cd6060830187611efc565b6120da6080830186611efc565b6120e760a0830185611efc565b6120f460c0830184611efc565b98975050505050505050565b5f5f5f5f5f5f5f60e0888a03121561211b5761211a611dfa565b5b5f6121288a828b01611e44565b97505060206121398a828b01611e44565b965050604061214a8a828b01611e44565b955050606061215b8a828b01611e44565b945050608061216c8a828b01611e44565b93505060a061217d8a828b01611e44565b92505060c061218e8a828b01611e44565b91505092959891949750929550565b5f5f604083850312156121b3576121b2611dfa565b5b5f6121c085828601611e44565b92505060206121d185828601611e44565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061221f57607f821691505b602082108103612232576122316121db565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61226f82611e58565b915061227a83611e58565b925082820261228881611e58565b9150828204841483151761229f5761229e612238565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6122dd82611e58565b91506122e883611e58565b9250826122f8576122f76122a6565b5b828204905092915050565b7f416c6c6f636174696f6e7320616c7265616479206469737472696275746564005f82015250565b5f612337601f83611d74565b915061234282612303565b602082019050919050565b5f6020820190508181035f8301526123648161232b565b9050919050565b7f496e76616c69642070726573616c652077616c6c6574000000000000000000005f82015250565b5f61239f601683611d74565b91506123aa8261236b565b602082019050919050565b5f6020820190508181035f8301526123cc81612393565b9050919050565b7f496e76616c6964206c69717569646974792077616c6c657400000000000000005f82015250565b5f612407601883611d74565b9150612412826123d3565b602082019050919050565b5f6020820190508181035f830152612434816123fb565b9050919050565b7f496e76616c6964207465616d2077616c6c6574000000000000000000000000005f82015250565b5f61246f601383611d74565b915061247a8261243b565b602082019050919050565b5f6020820190508181035f83015261249c81612463565b9050919050565b7f496e76616c696420636f6d6d756e6974792077616c6c657400000000000000005f82015250565b5f6124d7601883611d74565b91506124e2826124a3565b602082019050919050565b5f6020820190508181035f830152612504816124cb565b9050919050565b7f496e76616c6964206d61726b6574696e672077616c6c657400000000000000005f82015250565b5f61253f601883611d74565b915061254a8261250b565b602082019050919050565b5f6020820190508181035f83015261256c81612533565b9050919050565b7f496e76616c696420646576656c6f706d656e742077616c6c65740000000000005f82015250565b5f6125a7601a83611d74565b91506125b282612573565b602082019050919050565b5f6020820190508181035f8301526125d48161259b565b9050919050565b7f496e76616c6964206c6567616c2077616c6c65740000000000000000000000005f82015250565b5f61260f601483611d74565b915061261a826125db565b602082019050919050565b5f6020820190508181035f83015261263c81612603565b9050919050565b5f6060820190506126565f830186611f24565b6126636020830185611efc565b6126706040830184611efc565b949350505050565b5f61268282611e58565b915061268d83611e58565b92508282019050808211156126a5576126a4612238565b5b9291505056fea2646970667358221220544e0e5bd537c5a205d7a031a172c83a47609968e70cdbdfe0054474facb487464736f6c634300081e0033

Deployed Bytecode

0x608060405234801561000f575f5ffd5b506004361061021a575f3560e01c8063810fae2d11610123578063c04a5414116100ab578063dd62ed3e1161007a578063dd62ed3e146105d2578063e1807b2714610602578063f2fde38b14610620578063f9428f381461063c578063fd99cbed1461065a5761021a565b8063c04a54141461055a578063c757483914610578578063c7b5a48c14610596578063d4698016146105b45761021a565b8063902d55a5116100f2578063902d55a5146104b257806395d89b41146104d0578063993eb1c5146104ee578063a9059cbb1461050c578063afa287671461053c5761021a565b8063810fae2d146104505780638456cb591461046c5780638da5cb5b146104765780638e80bd39146104945761021a565b806340e79993116101a657806370a082311161017557806370a08231146103b8578063715018a6146103e857806375f0a874146103f257806379cc6790146104105780637f3647481461042c5761021a565b806340e799931461034257806342966c6814610360578063599270441461037c5780635c975abb1461039a5761021a565b80631bfa8601116101ed5780631bfa8601146102a85780631ed77dc8146102cc57806323b872dd146102ea578063313ce5671461031a5780633f4ba83a146103385761021a565b806306fdde031461021e578063095ea7b31461023c5780630bb8bacc1461026c57806318160ddd1461028a575b5f5ffd5b610226610678565b6040516102339190611dda565b60405180910390f35b61025660048036038101906102519190611e8b565b610708565b6040516102639190611ee3565b60405180910390f35b61027461072a565b6040516102819190611ee3565b60405180910390f35b61029261073d565b60405161029f9190611f0b565b60405180910390f35b6102b0610746565b6040516102c39796959493929190611f33565b60405180910390f35b6102d4610852565b6040516102e19190611fa0565b60405180910390f35b61030460048036038101906102ff9190611fb9565b610877565b6040516103119190611ee3565b60405180910390f35b6103226108a5565b60405161032f9190612024565b60405180910390f35b6103406108ad565b005b61034a6108bf565b6040516103579190611f0b565b60405180910390f35b61037a6004803603810190610375919061203d565b6108c5565b005b6103846108d1565b6040516103919190611fa0565b60405180910390f35b6103a26108f6565b6040516103af9190611ee3565b60405180910390f35b6103d260048036038101906103cd9190612068565b61090b565b6040516103df9190611f0b565b60405180910390f35b6103f0610950565b005b6103fa610963565b6040516104079190611fa0565b60405180910390f35b61042a60048036038101906104259190611e8b565b610988565b005b610434610996565b6040516104479796959493929190612093565b60405180910390f35b61046a60048036038101906104659190612100565b610ac5565b005b6104746111c0565b005b61047e6111d2565b60405161048b9190611fa0565b60405180910390f35b61049c6111fb565b6040516104a99190611f0b565b60405180910390f35b6104ba611201565b6040516104c79190611f0b565b60405180910390f35b6104d8611211565b6040516104e59190611dda565b60405180910390f35b6104f66112a1565b6040516105039190611f0b565b60405180910390f35b61052660048036038101906105219190611e8b565b6112a7565b6040516105339190611ee3565b60405180910390f35b6105446112c9565b6040516105519190611fa0565b60405180910390f35b6105626112ee565b60405161056f9190611fa0565b60405180910390f35b610580611313565b60405161058d9190611fa0565b60405180910390f35b61059e611338565b6040516105ab9190611f0b565b60405180910390f35b6105bc61133e565b6040516105c99190611fa0565b60405180910390f35b6105ec60048036038101906105e7919061219d565b611363565b6040516105f99190611f0b565b60405180910390f35b61060a6113e5565b6040516106179190611f0b565b60405180910390f35b61063a60048036038101906106359190612068565b6113eb565b005b61064461146f565b6040516106519190611f0b565b60405180910390f35b610662611475565b60405161066f9190611f0b565b60405180910390f35b60606003805461068790612208565b80601f01602080910402602001604051908101604052809291908181526020018280546106b390612208565b80156106fe5780601f106106d5576101008083540402835291602001916106fe565b820191905f5260205f20905b8154815290600101906020018083116106e157829003601f168201915b5050505050905090565b5f5f61071261147b565b905061071f818585611482565b600191505092915050565b600c60149054906101000a900460ff1681565b5f600254905090565b5f5f5f5f5f5f5f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16965096509650965096509650965090919293949596565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f5f61088161147b565b905061088e858285611494565b610899858585611527565b60019150509392505050565b5f6012905090565b6108b5611617565b6108bd61169e565b565b61012c81565b6108ce816116ff565b50565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60055f9054906101000a900460ff16905090565b5f5f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610958611617565b6109615f611713565b565b600a5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61099282826117d8565b5050565b5f5f5f5f5f5f5f612710610fa06b06765c793fa10079d00000006109ba9190612265565b6109c491906122d3565b6127106107d06b06765c793fa10079d00000006109e19190612265565b6109eb91906122d3565b6127106105dc6b06765c793fa10079d0000000610a089190612265565b610a1291906122d3565b6127106103e86b06765c793fa10079d0000000610a2f9190612265565b610a3991906122d3565b6127106103206b06765c793fa10079d0000000610a569190612265565b610a6091906122d3565b6127106101906b06765c793fa10079d0000000610a7d9190612265565b610a8791906122d3565b61271061012c6b06765c793fa10079d0000000610aa49190612265565b610aae91906122d3565b965096509650965096509650965090919293949596565b610acd611617565b600c60149054906101000a900460ff1615610b1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b149061234d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff1603610b8b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b82906123b5565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff1603610bf9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf09061241d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603610c67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5e90612485565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610cd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccc906124ed565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3a90612555565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610db1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da8906125bd565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1690612625565b60405180910390fd5b8660065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508560075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508460085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508360095f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600a5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600b5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600c5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f612710610fa06b06765c793fa10079d0000000610ffd9190612265565b61100791906122d3565b90505f6127106107d06b06765c793fa10079d00000006110279190612265565b61103191906122d3565b90505f6127106105dc6b06765c793fa10079d00000006110519190612265565b61105b91906122d3565b90505f6127106103e86b06765c793fa10079d000000061107b9190612265565b61108591906122d3565b90505f6127106103206b06765c793fa10079d00000006110a59190612265565b6110af91906122d3565b90505f6127106101906b06765c793fa10079d00000006110cf9190612265565b6110d991906122d3565b90505f61271061012c6b06765c793fa10079d00000006110f99190612265565b61110391906122d3565b9050611110308f89611527565b61111b308e88611527565b611126308d87611527565b611131308c86611527565b61113c308b85611527565b611147308a84611527565b611152308983611527565b6001600c60146101000a81548160ff0219169083151502179055507f0757a0215528c08635f0030c2848d202c230617be27e38f176d7edf8244212f78e8e8e8e8e8e8e6040516111a89796959493929190611f33565b60405180910390a15050505050505050505050505050565b6111c8611617565b6111d06117f8565b565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61032081565b6b06765c793fa10079d000000081565b60606004805461122090612208565b80601f016020809104026020016040519081016040528092919081815260200182805461124c90612208565b80156112975780601f1061126e57610100808354040283529160200191611297565b820191905f5260205f20905b81548152906001019060200180831161127a57829003601f168201915b5050505050905090565b6103e881565b5f5f6112b161147b565b90506112be818585611527565b600191505092915050565b600c5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600b5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60095f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610fa081565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b61019081565b6113f3611617565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611463575f6040517f1e4fbdf700000000000000000000000000000000000000000000000000000000815260040161145a9190611fa0565b60405180910390fd5b61146c81611713565b50565b6107d081565b6105dc81565b5f33905090565b61148f838383600161185a565b505050565b5f61149f8484611363565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8110156115215781811015611512578281836040517ffb8f41b200000000000000000000000000000000000000000000000000000000815260040161150993929190612643565b60405180910390fd5b61152084848484035f61185a565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611597575f6040517f96c6fd1e00000000000000000000000000000000000000000000000000000000815260040161158e9190611fa0565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611607575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016115fe9190611fa0565b60405180910390fd5b611612838383611a29565b505050565b61161f61147b565b73ffffffffffffffffffffffffffffffffffffffff1661163d6111d2565b73ffffffffffffffffffffffffffffffffffffffff161461169c5761166061147b565b6040517f118cdaa70000000000000000000000000000000000000000000000000000000081526004016116939190611fa0565b60405180910390fd5b565b6116a6611a39565b5f60055f6101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6116e861147b565b6040516116f59190611fa0565b60405180910390a1565b61171061170a61147b565b82611a79565b50565b5f600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6117ea826117e461147b565b83611494565b6117f48282611a79565b5050565b611800611af8565b600160055f6101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861184361147b565b6040516118509190611fa0565b60405180910390a1565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036118ca575f6040517fe602df050000000000000000000000000000000000000000000000000000000081526004016118c19190611fa0565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361193a575f6040517f94280d620000000000000000000000000000000000000000000000000000000081526004016119319190611fa0565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015611a23578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051611a1a9190611f0b565b60405180910390a35b50505050565b611a34838383611b39565b505050565b611a416108f6565b611a77576040517f8dfc202b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611ae9575f6040517f96c6fd1e000000000000000000000000000000000000000000000000000000008152600401611ae09190611fa0565b60405180910390fd5b611af4825f83611a29565b5050565b611b006108f6565b15611b37576040517fd93c066500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b565b611b41611af8565b611b4c838383611b51565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611ba1578060025f828254611b959190612678565b92505081905550611c6f565b5f5f5f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611c2a578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401611c2193929190612643565b60405180910390fd5b8181035f5f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611cb6578060025f8282540392505081905550611d00565b805f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611d5d9190611f0b565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611dac82611d6a565b611db68185611d74565b9350611dc6818560208601611d84565b611dcf81611d92565b840191505092915050565b5f6020820190508181035f830152611df28184611da2565b905092915050565b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f611e2782611dfe565b9050919050565b611e3781611e1d565b8114611e41575f5ffd5b50565b5f81359050611e5281611e2e565b92915050565b5f819050919050565b611e6a81611e58565b8114611e74575f5ffd5b50565b5f81359050611e8581611e61565b92915050565b5f5f60408385031215611ea157611ea0611dfa565b5b5f611eae85828601611e44565b9250506020611ebf85828601611e77565b9150509250929050565b5f8115159050919050565b611edd81611ec9565b82525050565b5f602082019050611ef65f830184611ed4565b92915050565b611f0581611e58565b82525050565b5f602082019050611f1e5f830184611efc565b92915050565b611f2d81611e1d565b82525050565b5f60e082019050611f465f83018a611f24565b611f536020830189611f24565b611f606040830188611f24565b611f6d6060830187611f24565b611f7a6080830186611f24565b611f8760a0830185611f24565b611f9460c0830184611f24565b98975050505050505050565b5f602082019050611fb35f830184611f24565b92915050565b5f5f5f60608486031215611fd057611fcf611dfa565b5b5f611fdd86828701611e44565b9350506020611fee86828701611e44565b9250506040611fff86828701611e77565b9150509250925092565b5f60ff82169050919050565b61201e81612009565b82525050565b5f6020820190506120375f830184612015565b92915050565b5f6020828403121561205257612051611dfa565b5b5f61205f84828501611e77565b91505092915050565b5f6020828403121561207d5761207c611dfa565b5b5f61208a84828501611e44565b91505092915050565b5f60e0820190506120a65f83018a611efc565b6120b36020830189611efc565b6120c06040830188611efc565b6120cd6060830187611efc565b6120da6080830186611efc565b6120e760a0830185611efc565b6120f460c0830184611efc565b98975050505050505050565b5f5f5f5f5f5f5f60e0888a03121561211b5761211a611dfa565b5b5f6121288a828b01611e44565b97505060206121398a828b01611e44565b965050604061214a8a828b01611e44565b955050606061215b8a828b01611e44565b945050608061216c8a828b01611e44565b93505060a061217d8a828b01611e44565b92505060c061218e8a828b01611e44565b91505092959891949750929550565b5f5f604083850312156121b3576121b2611dfa565b5b5f6121c085828601611e44565b92505060206121d185828601611e44565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061221f57607f821691505b602082108103612232576122316121db565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61226f82611e58565b915061227a83611e58565b925082820261228881611e58565b9150828204841483151761229f5761229e612238565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6122dd82611e58565b91506122e883611e58565b9250826122f8576122f76122a6565b5b828204905092915050565b7f416c6c6f636174696f6e7320616c7265616479206469737472696275746564005f82015250565b5f612337601f83611d74565b915061234282612303565b602082019050919050565b5f6020820190508181035f8301526123648161232b565b9050919050565b7f496e76616c69642070726573616c652077616c6c6574000000000000000000005f82015250565b5f61239f601683611d74565b91506123aa8261236b565b602082019050919050565b5f6020820190508181035f8301526123cc81612393565b9050919050565b7f496e76616c6964206c69717569646974792077616c6c657400000000000000005f82015250565b5f612407601883611d74565b9150612412826123d3565b602082019050919050565b5f6020820190508181035f830152612434816123fb565b9050919050565b7f496e76616c6964207465616d2077616c6c6574000000000000000000000000005f82015250565b5f61246f601383611d74565b915061247a8261243b565b602082019050919050565b5f6020820190508181035f83015261249c81612463565b9050919050565b7f496e76616c696420636f6d6d756e6974792077616c6c657400000000000000005f82015250565b5f6124d7601883611d74565b91506124e2826124a3565b602082019050919050565b5f6020820190508181035f830152612504816124cb565b9050919050565b7f496e76616c6964206d61726b6574696e672077616c6c657400000000000000005f82015250565b5f61253f601883611d74565b915061254a8261250b565b602082019050919050565b5f6020820190508181035f83015261256c81612533565b9050919050565b7f496e76616c696420646576656c6f706d656e742077616c6c65740000000000005f82015250565b5f6125a7601a83611d74565b91506125b282612573565b602082019050919050565b5f6020820190508181035f8301526125d48161259b565b9050919050565b7f496e76616c6964206c6567616c2077616c6c65740000000000000000000000005f82015250565b5f61260f601483611d74565b915061261a826125db565b602082019050919050565b5f6020820190508181035f83015261263c81612603565b9050919050565b5f6060820190506126565f830186611f24565b6126636020830185611efc565b6126706040830184611efc565b949350505050565b5f61268282611e58565b915061268d83611e58565b92508282019050808211156126a5576126a4612238565b5b9291505056fea2646970667358221220544e0e5bd537c5a205d7a031a172c83a47609968e70cdbdfe0054474facb487464736f6c634300081e0033

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.