ETH Price: $2,982.81 (+2.15%)
Gas: 1 Gwei

Token

Rewild (RWLD)
 

Overview

Max Total Supply

640,000,000 RWLD

Holders

108

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
116,033.775 RWLD

Value
$0.00
0xce864729ab8b45b8464993e5f7d873e6f6fc9a56
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:
RewildToken

Compiler Version
v0.8.3+commit.8d00100c

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-05-03
*/

// File: contracts\Context.sol

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: contracts\IERC20.sol

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

// File: contracts\ERC20Taxable.sol

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin guidelines: functions revert instead
 * of returning `false` on failure. This behavior is nonetheless conventional
 * and does not conflict with the expectations of ERC20 applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20Taxable is Context, IERC20 {
    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual 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 value {ERC20} uses, unless this function is
     * overloaded;
     *
     * 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;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20Taxable-transferWithTax}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transferWithTax(address recipient, uint256 amount, uint256 tax) internal virtual returns (bool) {
        _transferWithTax(_msgSender(), recipient, amount, tax);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - amount);

        return true;
    }

    /**
     * @dev See {IERC20Taxable-transferFromWithTax}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFromWithTax(address sender, address recipient, uint256 amount, uint256 tax) internal virtual returns (bool) {
        _transferWithTax(sender, recipient, amount, tax);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - amount);

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transferWithTax(address sender, address recipient, uint256 amount, uint256 tax) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += (amount - tax);

        emit Transfer(sender, recipient, amount - tax);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
    }

    /** @dev Increases the balance of `account` to `amount`.
     *
     * Emits a {Transfer} event.
     */
    function increaseBalance(address account, uint256 amount) internal virtual {
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}

// File: contracts\Ownable.sol

pragma solidity ^0.8.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: contracts\RewildToken.sol

pragma solidity ^0.8.3;

contract RewildToken is ERC20Taxable, Ownable {
    uint8 private _taxBasisPoints = 250;
    address private _donationAddress = 0xb6e1aA93DB091141Ef1C67751b4068A2d807a8c2;

    constructor ()
        ERC20Taxable('Rewild', 'RWLD')
    {
        _mint(0x3b1299734a1d85427a7B316a795f57Bc4abab454, getTokensFromDisplayValue(352000000));
        _mint(0xb6e1aA93DB091141Ef1C67751b4068A2d807a8c2, getTokensFromDisplayValue(128000000));
        _mint(0x1602643FD58E6DAFb0af9DA75cAC1FAb8612a222, getTokensFromDisplayValue(38400000));
        _mint(0x70b6275138e1293f177924FC531879E034688E07, getTokensFromDisplayValue(25600000));
        _mint(0x61aCEAE8a22dF9824e1Ada9B7753385e329766bd, getTokensFromDisplayValue(9600000));
        _mint(0x35948a563d89cDe7b55Aa87429AC926e65B4A36E, getTokensFromDisplayValue(9600000));
        _mint(0xF1804Fb5048038f9Cd5F56AD8b2dfd7DE0778296, getTokensFromDisplayValue(2720000));
        _mint(0xd5033D2BcE919E60B89ba55094211A8D1f8fF600, getTokensFromDisplayValue(7680000));
        _mint(0xaf8b6F4aECCa3aA5Ea07b3f96418CA947bCA7968, getTokensFromDisplayValue(9600000));
        _mint(0x5f4D8c9576c67Ea540652BE0A0d2cFc6b9AE08c9, getTokensFromDisplayValue(3200000));
        _mint(0xB96A121C2F826F03b5eec1315046a3DF2Cf1a42C, getTokensFromDisplayValue(1600000));
        _mint(0x4E7e1C73C116649c1C684acB6ec98bAc4FbB4ef6, getTokensFromDisplayValue(6400000));
        _mint(0xefdee53249EF08013D31AEAC2A738912197b7b5e, getTokensFromDisplayValue(4800000));
        _mint(0xFc7b86ccA8BC329Ea500135F129D4259690eF258, getTokensFromDisplayValue(1600000));
        _mint(0x37eeEeB9bc8e3d144E2225660645ed68bE5b666C, getTokensFromDisplayValue(1600000));
        _mint(0xc8c01020d786920C29bDBb596eeF2A6f9A19C3D1, getTokensFromDisplayValue(2400000));
        _mint(0x7299B91174F79C820aA1Ed787F6C719A20AbcA95, getTokensFromDisplayValue(12800000));
        _mint(0x2797F2A68F998E8fC1462Fd0D1c01e891F60bdb5, getTokensFromDisplayValue(1600000));
        _mint(0xb4DE483a98E2d5C52C0eD51F5936A26A0D1ef39B, getTokensFromDisplayValue(3200000));
        _mint(0xafb7e19a422216b2c496EC9b59dc46CdAD9DD48a, getTokensFromDisplayValue(3200000));
        _mint(0xb4705fd75Ac926fF84a2467eb39a0Be12892641f, getTokensFromDisplayValue(3200000));
        _mint(0xeE3c21c21848ed1C787C7c0205E8dE40722846d6, getTokensFromDisplayValue(3200000));
        _mint(0x066Aa3A32E9b9d5fD48046499bD2b840bbD50283, getTokensFromDisplayValue(8000000));
    }

    /** TRANSACTIONS **/

    function transfer(address recipient, uint256 amount) public override returns(bool) {
        uint256 tax = calculateTax(amount);
        transferWithTax(recipient, amount, tax);
        if(tax > 0) {
            increaseBalance(_donationAddress, tax);
        }

        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        uint256 tax = calculateTax(amount);
        transferFromWithTax(sender, recipient, amount, tax);
        if(tax > 0) {
            increaseBalance(_donationAddress, tax);
        }
        return true;
    }

    /** STATE MUTATION OWNER **/

    function setTaxBasisPoints(uint8 taxBasisPoints_) public onlyOwner returns(bool) {
        require(taxBasisPoints_ <= 250, "Tax can't be higher than 250 basis points");
        _taxBasisPoints = taxBasisPoints_;
        return true;
    }

    function setDonationAddress(address donationAddress_) public onlyOwner returns(bool) {
        _donationAddress = donationAddress_;
        return true;
    }

    /** VIEWS TRANSFORM **/

    function calculateTax(uint256 amount_) public view returns(uint256) {
        return (amount_ * taxBasisPoints())/10000;
    }

    function getTokensFromDisplayValue(uint256 displayValue_) public view returns(uint256) {
        return displayValue_ * (10 ** decimals());
    }

    /** VIEWS READ **/

    function donationAddress() public view returns(address) {
        return _donationAddress;
    }

    function taxBasisPoints() public view returns (uint8) {
        return _taxBasisPoints;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"calculateTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"donationAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"displayValue_","type":"uint256"}],"name":"getTokensFromDisplayValue","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":[{"internalType":"address","name":"donationAddress_","type":"address"}],"name":"setDonationAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"taxBasisPoints_","type":"uint8"}],"name":"setTaxBasisPoints","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxBasisPoints","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260fa600560146101000a81548160ff021916908360ff16021790555073b6e1aa93db091141ef1c67751b4068a2d807a8c2600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200008257600080fd5b506040518060400160405280600681526020017f526577696c6400000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f52574c4400000000000000000000000000000000000000000000000000000000815250816003908051906020019062000107929190620008ac565b50806004908051906020019062000120929190620008ac565b505050600062000135620006fd60201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200020e733b1299734a1d85427a7b316a795f57bc4abab454620002026314fb18006200070560201b60201c565b6200073960201b60201c565b6200024873b6e1aa93db091141ef1c67751b4068a2d807a8c26200023c6307a120006200070560201b60201c565b6200073960201b60201c565b62000282731602643fd58e6dafb0af9da75cac1fab8612a22262000276630249f0006200070560201b60201c565b6200073960201b60201c565b620002bc7370b6275138e1293f177924fc531879e034688e07620002b0630186a0006200070560201b60201c565b6200073960201b60201c565b620002f57361aceae8a22df9824e1ada9b7753385e329766bd620002e962927c006200070560201b60201c565b6200073960201b60201c565b6200032e7335948a563d89cde7b55aa87429ac926e65b4a36e6200032262927c006200070560201b60201c565b6200073960201b60201c565b6200036773f1804fb5048038f9cd5f56ad8b2dfd7de07782966200035b622981006200070560201b60201c565b6200073960201b60201c565b620003a073d5033d2bce919e60b89ba55094211a8d1f8ff60062000394627530006200070560201b60201c565b6200073960201b60201c565b620003d973af8b6f4aecca3aa5ea07b3f96418ca947bca7968620003cd62927c006200070560201b60201c565b6200073960201b60201c565b62000412735f4d8c9576c67ea540652be0a0d2cfc6b9ae08c9620004066230d4006200070560201b60201c565b6200073960201b60201c565b6200044b73b96a121c2f826f03b5eec1315046a3df2cf1a42c6200043f62186a006200070560201b60201c565b6200073960201b60201c565b62000484734e7e1c73c116649c1c684acb6ec98bac4fbb4ef6620004786261a8006200070560201b60201c565b6200073960201b60201c565b620004bd73efdee53249ef08013d31aeac2a738912197b7b5e620004b162493e006200070560201b60201c565b6200073960201b60201c565b620004f673fc7b86cca8bc329ea500135f129d4259690ef258620004ea62186a006200070560201b60201c565b6200073960201b60201c565b6200052f7337eeeeb9bc8e3d144e2225660645ed68be5b666c6200052362186a006200070560201b60201c565b6200073960201b60201c565b6200056873c8c01020d786920c29bdbb596eef2a6f9a19c3d16200055c62249f006200070560201b60201c565b6200073960201b60201c565b620005a1737299b91174f79c820aa1ed787f6c719a20abca956200059562c350006200070560201b60201c565b6200073960201b60201c565b620005da732797f2a68f998e8fc1462fd0d1c01e891f60bdb5620005ce62186a006200070560201b60201c565b6200073960201b60201c565b6200061373b4de483a98e2d5c52c0ed51f5936a26a0d1ef39b620006076230d4006200070560201b60201c565b6200073960201b60201c565b6200064c73afb7e19a422216b2c496ec9b59dc46cdad9dd48a620006406230d4006200070560201b60201c565b6200073960201b60201c565b6200068573b4705fd75ac926ff84a2467eb39a0be12892641f620006796230d4006200070560201b60201c565b6200073960201b60201c565b620006be73ee3c21c21848ed1c787c7c0205e8de40722846d6620006b26230d4006200070560201b60201c565b6200073960201b60201c565b620006f773066aa3a32e9b9d5fd48046499bd2b840bbd50283620006eb627a12006200070560201b60201c565b6200073960201b60201c565b62000d1b565b600033905090565b6000620007176200089e60201b60201c565b600a62000725919062000a9c565b8262000732919062000bd9565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620007ac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007a39062000994565b60405180910390fd5b620007c060008383620008a760201b60201c565b8060026000828254620007d49190620009e4565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200082b9190620009e4565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620008929190620009b6565b60405180910390a35050565b60006012905090565b505050565b828054620008ba9062000c51565b90600052602060002090601f016020900481019282620008de57600085556200092a565b82601f10620008f957805160ff19168380011785556200092a565b828001600101855582156200092a579182015b82811115620009295782518255916020019190600101906200090c565b5b5090506200093991906200093d565b5090565b5b80821115620009585760008160009055506001016200093e565b5090565b60006200096b601f83620009d3565b9150620009788262000cf2565b602082019050919050565b6200098e8162000c3a565b82525050565b60006020820190508181036000830152620009af816200095c565b9050919050565b6000602082019050620009cd600083018462000983565b92915050565b600082825260208201905092915050565b6000620009f18262000c3a565b9150620009fe8362000c3a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000a365762000a3562000c87565b5b828201905092915050565b6000808291508390505b600185111562000a935780860481111562000a6b5762000a6a62000c87565b5b600185161562000a7b5780820291505b808102905062000a8b8562000ce5565b945062000a4b565b94509492505050565b600062000aa98262000c3a565b915062000ab68362000c44565b925062000ae57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000aed565b905092915050565b60008262000aff576001905062000bd2565b8162000b0f576000905062000bd2565b816001811462000b28576002811462000b335762000b69565b600191505062000bd2565b60ff84111562000b485762000b4762000c87565b5b8360020a91508482111562000b625762000b6162000c87565b5b5062000bd2565b5060208310610133831016604e8410600b841016171562000ba35782820a90508381111562000b9d5762000b9c62000c87565b5b62000bd2565b62000bb2848484600162000a41565b9250905081840481111562000bcc5762000bcb62000c87565b5b81810290505b9392505050565b600062000be68262000c3a565b915062000bf38362000c3a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000c2f5762000c2e62000c87565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b6000600282049050600182168062000c6a57607f821691505b6020821081141562000c815762000c8062000cb6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611fa08062000d2b6000396000f3fe608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad578063a9059cbb11610071578063a9059cbb1461035a578063dd62ed3e1461038a578063eb10e4eb146103ba578063ec034bed146103ea578063f2fde38b1461040857610121565b806370a08231146102a05780637a210a2b146102d05780638da5cb5b146102ee57806395d89b411461030c578063a457c2d71461032a57610121565b8063313ce567116100f4578063313ce567146101c257806339509351146101e0578063481ee99414610210578063483a9310146102405780636f48e79b1461027057610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e610424565b60405161013b9190611696565b60405180910390f35b61015e600480360381019061015991906113ff565b6104b6565b60405161016b919061167b565b60405180910390f35b61017c6104d4565b60405161018991906117f8565b60405180910390f35b6101ac60048036038101906101a791906113b0565b6104de565b6040516101b9919061167b565b60405180910390f35b6101ca61053b565b6040516101d79190611813565b60405180910390f35b6101fa60048036038101906101f591906113ff565b610544565b604051610207919061167b565b60405180910390f35b61022a60048036038101906102259190611464565b6105f0565b604051610237919061167b565b60405180910390f35b61025a6004803603810190610255919061143b565b6106d9565b60405161026791906117f8565b60405180910390f35b61028a6004803603810190610285919061134b565b610705565b604051610297919061167b565b60405180910390f35b6102ba60048036038101906102b5919061134b565b6107cd565b6040516102c791906117f8565b60405180910390f35b6102d8610815565b6040516102e59190611813565b60405180910390f35b6102f661082c565b6040516103039190611660565b60405180910390f35b610314610856565b6040516103219190611696565b60405180910390f35b610344600480360381019061033f91906113ff565b6108e8565b604051610351919061167b565b60405180910390f35b610374600480360381019061036f91906113ff565b6109dc565b604051610381919061167b565b60405180910390f35b6103a4600480360381019061039f9190611374565b610a37565b6040516103b191906117f8565b60405180910390f35b6103d460048036038101906103cf919061143b565b610abe565b6040516103e191906117f8565b60405180910390f35b6103f2610ae6565b6040516103ff9190611660565b60405180910390f35b610422600480360381019061041d919061134b565b610b10565b005b60606003805461043390611b58565b80601f016020809104026020016040519081016040528092919081815260200182805461045f90611b58565b80156104ac5780601f10610481576101008083540402835291602001916104ac565b820191906000526020600020905b81548152906001019060200180831161048f57829003601f168201915b5050505050905090565b60006104ca6104c3610cbc565b8484610cc4565b6001905092915050565b6000600254905090565b6000806104ea836106d9565b90506104f885858584610e8f565b50600081111561052f5761052e600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682610f92565b5b60019150509392505050565b60006012905090565b60006105e6610551610cbc565b84846001600061055f610cbc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105e1919061184a565b610cc4565b6001905092915050565b60006105fa610cbc565b73ffffffffffffffffffffffffffffffffffffffff1661061861082c565b73ffffffffffffffffffffffffffffffffffffffff161461066e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066590611758565b60405180910390fd5b60fa8260ff1611156106b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ac906117b8565b60405180910390fd5b81600560146101000a81548160ff021916908360ff16021790555060019050919050565b60006127106106e6610815565b60ff16836106f49190611a42565b6106fe91906118a0565b9050919050565b600061070f610cbc565b73ffffffffffffffffffffffffffffffffffffffff1661072d61082c565b73ffffffffffffffffffffffffffffffffffffffff1614610783576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077a90611758565b60405180910390fd5b81600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600560149054906101000a900460ff16905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461086590611b58565b80601f016020809104026020016040519081016040528092919081815260200182805461089190611b58565b80156108de5780601f106108b3576101008083540402835291602001916108de565b820191906000526020600020905b8154815290600101906020018083116108c157829003601f168201915b5050505050905090565b600080600160006108f7610cbc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ab906117d8565b60405180910390fd5b6109d16109bf610cbc565b8585846109cc9190611a9c565b610cc4565b600191505092915050565b6000806109e8836106d9565b90506109f5848483611051565b506000811115610a2c57610a2b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682610f92565b5b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000610ac861053b565b600a610ad49190611924565b82610adf9190611a42565b9050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610b18610cbc565b73ffffffffffffffffffffffffffffffffffffffff16610b3661082c565b73ffffffffffffffffffffffffffffffffffffffff1614610b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8390611758565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf3906116d8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2b90611798565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9b906116f8565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e8291906117f8565b60405180910390a3505050565b6000610e9d85858585611071565b6000600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610ee8610cbc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610f68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5f90611738565b60405180910390fd5b610f8586610f74610cbc565b8684610f809190611a9c565b610cc4565b6001915050949350505050565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fe0919061184a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161104591906117f8565b60405180910390a35050565b600061106661105e610cbc565b858585611071565b600190509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156110e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d890611778565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611151576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611148906116b8565b60405180910390fd5b61115c848484611307565b60008060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156111e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d990611718565b60405180910390fd5b82816111ee9190611a9c565b6000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550818361123c9190611a9c565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611289919061184a565b925050819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84866112eb9190611a9c565b6040516112f891906117f8565b60405180910390a35050505050565b505050565b60008135905061131b81611f25565b92915050565b60008135905061133081611f3c565b92915050565b60008135905061134581611f53565b92915050565b60006020828403121561135d57600080fd5b600061136b8482850161130c565b91505092915050565b6000806040838503121561138757600080fd5b60006113958582860161130c565b92505060206113a68582860161130c565b9150509250929050565b6000806000606084860312156113c557600080fd5b60006113d38682870161130c565b93505060206113e48682870161130c565b92505060406113f586828701611321565b9150509250925092565b6000806040838503121561141257600080fd5b60006114208582860161130c565b925050602061143185828601611321565b9150509250929050565b60006020828403121561144d57600080fd5b600061145b84828501611321565b91505092915050565b60006020828403121561147657600080fd5b600061148484828501611336565b91505092915050565b61149681611ad0565b82525050565b6114a581611ae2565b82525050565b60006114b68261182e565b6114c08185611839565b93506114d0818560208601611b25565b6114d981611c17565b840191505092915050565b60006114f1602383611839565b91506114fc82611c35565b604082019050919050565b6000611514602683611839565b915061151f82611c84565b604082019050919050565b6000611537602283611839565b915061154282611cd3565b604082019050919050565b600061155a602683611839565b915061156582611d22565b604082019050919050565b600061157d602883611839565b915061158882611d71565b604082019050919050565b60006115a0602083611839565b91506115ab82611dc0565b602082019050919050565b60006115c3602583611839565b91506115ce82611de9565b604082019050919050565b60006115e6602483611839565b91506115f182611e38565b604082019050919050565b6000611609602983611839565b915061161482611e87565b604082019050919050565b600061162c602583611839565b915061163782611ed6565b604082019050919050565b61164b81611b0e565b82525050565b61165a81611b18565b82525050565b6000602082019050611675600083018461148d565b92915050565b6000602082019050611690600083018461149c565b92915050565b600060208201905081810360008301526116b081846114ab565b905092915050565b600060208201905081810360008301526116d1816114e4565b9050919050565b600060208201905081810360008301526116f181611507565b9050919050565b600060208201905081810360008301526117118161152a565b9050919050565b600060208201905081810360008301526117318161154d565b9050919050565b6000602082019050818103600083015261175181611570565b9050919050565b6000602082019050818103600083015261177181611593565b9050919050565b60006020820190508181036000830152611791816115b6565b9050919050565b600060208201905081810360008301526117b1816115d9565b9050919050565b600060208201905081810360008301526117d1816115fc565b9050919050565b600060208201905081810360008301526117f18161161f565b9050919050565b600060208201905061180d6000830184611642565b92915050565b60006020820190506118286000830184611651565b92915050565b600081519050919050565b600082825260208201905092915050565b600061185582611b0e565b915061186083611b0e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561189557611894611b8a565b5b828201905092915050565b60006118ab82611b0e565b91506118b683611b0e565b9250826118c6576118c5611bb9565b5b828204905092915050565b6000808291508390505b600185111561191b578086048111156118f7576118f6611b8a565b5b60018516156119065780820291505b808102905061191485611c28565b94506118db565b94509492505050565b600061192f82611b0e565b915061193a83611b18565b92506119677fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461196f565b905092915050565b60008261197f5760019050611a3b565b8161198d5760009050611a3b565b81600181146119a357600281146119ad576119dc565b6001915050611a3b565b60ff8411156119bf576119be611b8a565b5b8360020a9150848211156119d6576119d5611b8a565b5b50611a3b565b5060208310610133831016604e8410600b8410161715611a115782820a905083811115611a0c57611a0b611b8a565b5b611a3b565b611a1e84848460016118d1565b92509050818404811115611a3557611a34611b8a565b5b81810290505b9392505050565b6000611a4d82611b0e565b9150611a5883611b0e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611a9157611a90611b8a565b5b828202905092915050565b6000611aa782611b0e565b9150611ab283611b0e565b925082821015611ac557611ac4611b8a565b5b828203905092915050565b6000611adb82611aee565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611b43578082015181840152602081019050611b28565b83811115611b52576000848401525b50505050565b60006002820490506001821680611b7057607f821691505b60208210811415611b8457611b83611be8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f5461782063616e277420626520686967686572207468616e203235302062617360008201527f697320706f696e74730000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b611f2e81611ad0565b8114611f3957600080fd5b50565b611f4581611b0e565b8114611f5057600080fd5b50565b611f5c81611b18565b8114611f6757600080fd5b5056fea264697066735822122056438d1fb71da765f2dbf21de756f1ed63705ba04fbd57932414e3f49c166e9264736f6c63430008030033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101215760003560e01c806370a08231116100ad578063a9059cbb11610071578063a9059cbb1461035a578063dd62ed3e1461038a578063eb10e4eb146103ba578063ec034bed146103ea578063f2fde38b1461040857610121565b806370a08231146102a05780637a210a2b146102d05780638da5cb5b146102ee57806395d89b411461030c578063a457c2d71461032a57610121565b8063313ce567116100f4578063313ce567146101c257806339509351146101e0578063481ee99414610210578063483a9310146102405780636f48e79b1461027057610121565b806306fdde0314610126578063095ea7b31461014457806318160ddd1461017457806323b872dd14610192575b600080fd5b61012e610424565b60405161013b9190611696565b60405180910390f35b61015e600480360381019061015991906113ff565b6104b6565b60405161016b919061167b565b60405180910390f35b61017c6104d4565b60405161018991906117f8565b60405180910390f35b6101ac60048036038101906101a791906113b0565b6104de565b6040516101b9919061167b565b60405180910390f35b6101ca61053b565b6040516101d79190611813565b60405180910390f35b6101fa60048036038101906101f591906113ff565b610544565b604051610207919061167b565b60405180910390f35b61022a60048036038101906102259190611464565b6105f0565b604051610237919061167b565b60405180910390f35b61025a6004803603810190610255919061143b565b6106d9565b60405161026791906117f8565b60405180910390f35b61028a6004803603810190610285919061134b565b610705565b604051610297919061167b565b60405180910390f35b6102ba60048036038101906102b5919061134b565b6107cd565b6040516102c791906117f8565b60405180910390f35b6102d8610815565b6040516102e59190611813565b60405180910390f35b6102f661082c565b6040516103039190611660565b60405180910390f35b610314610856565b6040516103219190611696565b60405180910390f35b610344600480360381019061033f91906113ff565b6108e8565b604051610351919061167b565b60405180910390f35b610374600480360381019061036f91906113ff565b6109dc565b604051610381919061167b565b60405180910390f35b6103a4600480360381019061039f9190611374565b610a37565b6040516103b191906117f8565b60405180910390f35b6103d460048036038101906103cf919061143b565b610abe565b6040516103e191906117f8565b60405180910390f35b6103f2610ae6565b6040516103ff9190611660565b60405180910390f35b610422600480360381019061041d919061134b565b610b10565b005b60606003805461043390611b58565b80601f016020809104026020016040519081016040528092919081815260200182805461045f90611b58565b80156104ac5780601f10610481576101008083540402835291602001916104ac565b820191906000526020600020905b81548152906001019060200180831161048f57829003601f168201915b5050505050905090565b60006104ca6104c3610cbc565b8484610cc4565b6001905092915050565b6000600254905090565b6000806104ea836106d9565b90506104f885858584610e8f565b50600081111561052f5761052e600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682610f92565b5b60019150509392505050565b60006012905090565b60006105e6610551610cbc565b84846001600061055f610cbc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105e1919061184a565b610cc4565b6001905092915050565b60006105fa610cbc565b73ffffffffffffffffffffffffffffffffffffffff1661061861082c565b73ffffffffffffffffffffffffffffffffffffffff161461066e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161066590611758565b60405180910390fd5b60fa8260ff1611156106b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ac906117b8565b60405180910390fd5b81600560146101000a81548160ff021916908360ff16021790555060019050919050565b60006127106106e6610815565b60ff16836106f49190611a42565b6106fe91906118a0565b9050919050565b600061070f610cbc565b73ffffffffffffffffffffffffffffffffffffffff1661072d61082c565b73ffffffffffffffffffffffffffffffffffffffff1614610783576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077a90611758565b60405180910390fd5b81600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600560149054906101000a900460ff16905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461086590611b58565b80601f016020809104026020016040519081016040528092919081815260200182805461089190611b58565b80156108de5780601f106108b3576101008083540402835291602001916108de565b820191906000526020600020905b8154815290600101906020018083116108c157829003601f168201915b5050505050905090565b600080600160006108f7610cbc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ab906117d8565b60405180910390fd5b6109d16109bf610cbc565b8585846109cc9190611a9c565b610cc4565b600191505092915050565b6000806109e8836106d9565b90506109f5848483611051565b506000811115610a2c57610a2b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682610f92565b5b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000610ac861053b565b600a610ad49190611924565b82610adf9190611a42565b9050919050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610b18610cbc565b73ffffffffffffffffffffffffffffffffffffffff16610b3661082c565b73ffffffffffffffffffffffffffffffffffffffff1614610b8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8390611758565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf3906116d8565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2b90611798565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610da4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9b906116f8565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e8291906117f8565b60405180910390a3505050565b6000610e9d85858585611071565b6000600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610ee8610cbc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015610f68576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5f90611738565b60405180910390fd5b610f8586610f74610cbc565b8684610f809190611a9c565b610cc4565b6001915050949350505050565b806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fe0919061184a565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161104591906117f8565b60405180910390a35050565b600061106661105e610cbc565b858585611071565b600190509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156110e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d890611778565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611151576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611148906116b8565b60405180910390fd5b61115c848484611307565b60008060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156111e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d990611718565b60405180910390fd5b82816111ee9190611a9c565b6000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550818361123c9190611a9c565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611289919061184a565b925050819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84866112eb9190611a9c565b6040516112f891906117f8565b60405180910390a35050505050565b505050565b60008135905061131b81611f25565b92915050565b60008135905061133081611f3c565b92915050565b60008135905061134581611f53565b92915050565b60006020828403121561135d57600080fd5b600061136b8482850161130c565b91505092915050565b6000806040838503121561138757600080fd5b60006113958582860161130c565b92505060206113a68582860161130c565b9150509250929050565b6000806000606084860312156113c557600080fd5b60006113d38682870161130c565b93505060206113e48682870161130c565b92505060406113f586828701611321565b9150509250925092565b6000806040838503121561141257600080fd5b60006114208582860161130c565b925050602061143185828601611321565b9150509250929050565b60006020828403121561144d57600080fd5b600061145b84828501611321565b91505092915050565b60006020828403121561147657600080fd5b600061148484828501611336565b91505092915050565b61149681611ad0565b82525050565b6114a581611ae2565b82525050565b60006114b68261182e565b6114c08185611839565b93506114d0818560208601611b25565b6114d981611c17565b840191505092915050565b60006114f1602383611839565b91506114fc82611c35565b604082019050919050565b6000611514602683611839565b915061151f82611c84565b604082019050919050565b6000611537602283611839565b915061154282611cd3565b604082019050919050565b600061155a602683611839565b915061156582611d22565b604082019050919050565b600061157d602883611839565b915061158882611d71565b604082019050919050565b60006115a0602083611839565b91506115ab82611dc0565b602082019050919050565b60006115c3602583611839565b91506115ce82611de9565b604082019050919050565b60006115e6602483611839565b91506115f182611e38565b604082019050919050565b6000611609602983611839565b915061161482611e87565b604082019050919050565b600061162c602583611839565b915061163782611ed6565b604082019050919050565b61164b81611b0e565b82525050565b61165a81611b18565b82525050565b6000602082019050611675600083018461148d565b92915050565b6000602082019050611690600083018461149c565b92915050565b600060208201905081810360008301526116b081846114ab565b905092915050565b600060208201905081810360008301526116d1816114e4565b9050919050565b600060208201905081810360008301526116f181611507565b9050919050565b600060208201905081810360008301526117118161152a565b9050919050565b600060208201905081810360008301526117318161154d565b9050919050565b6000602082019050818103600083015261175181611570565b9050919050565b6000602082019050818103600083015261177181611593565b9050919050565b60006020820190508181036000830152611791816115b6565b9050919050565b600060208201905081810360008301526117b1816115d9565b9050919050565b600060208201905081810360008301526117d1816115fc565b9050919050565b600060208201905081810360008301526117f18161161f565b9050919050565b600060208201905061180d6000830184611642565b92915050565b60006020820190506118286000830184611651565b92915050565b600081519050919050565b600082825260208201905092915050565b600061185582611b0e565b915061186083611b0e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561189557611894611b8a565b5b828201905092915050565b60006118ab82611b0e565b91506118b683611b0e565b9250826118c6576118c5611bb9565b5b828204905092915050565b6000808291508390505b600185111561191b578086048111156118f7576118f6611b8a565b5b60018516156119065780820291505b808102905061191485611c28565b94506118db565b94509492505050565b600061192f82611b0e565b915061193a83611b18565b92506119677fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848461196f565b905092915050565b60008261197f5760019050611a3b565b8161198d5760009050611a3b565b81600181146119a357600281146119ad576119dc565b6001915050611a3b565b60ff8411156119bf576119be611b8a565b5b8360020a9150848211156119d6576119d5611b8a565b5b50611a3b565b5060208310610133831016604e8410600b8410161715611a115782820a905083811115611a0c57611a0b611b8a565b5b611a3b565b611a1e84848460016118d1565b92509050818404811115611a3557611a34611b8a565b5b81810290505b9392505050565b6000611a4d82611b0e565b9150611a5883611b0e565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611a9157611a90611b8a565b5b828202905092915050565b6000611aa782611b0e565b9150611ab283611b0e565b925082821015611ac557611ac4611b8a565b5b828203905092915050565b6000611adb82611aee565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611b43578082015181840152602081019050611b28565b83811115611b52576000848401525b50505050565b60006002820490506001821680611b7057607f821691505b60208210811415611b8457611b83611be8565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b60008160011c9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f5461782063616e277420626520686967686572207468616e203235302062617360008201527f697320706f696e74730000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b611f2e81611ad0565b8114611f3957600080fd5b50565b611f4581611b0e565b8114611f5057600080fd5b50565b611f5c81611b18565b8114611f6757600080fd5b5056fea264697066735822122056438d1fb71da765f2dbf21de756f1ed63705ba04fbd57932414e3f49c166e9264736f6c63430008030033

Deployed Bytecode Sourcemap

19167:4156:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5789:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8356:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6882:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21972:336;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6733:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10781:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22352:242;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22802:128;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22602:161;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7053:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23225:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18396:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5999:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11499:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21667:297;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8058:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22938:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23119:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18851:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5789:91;5834:13;5867:5;5860:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5789:91;:::o;8356:169::-;8439:4;8456:39;8465:12;:10;:12::i;:::-;8479:7;8488:6;8456:8;:39::i;:::-;8513:4;8506:11;;8356:169;;;;:::o;6882:108::-;6943:7;6970:12;;6963:19;;6882:108;:::o;21972:336::-;22078:4;22095:11;22109:20;22122:6;22109:12;:20::i;:::-;22095:34;;22140:51;22160:6;22168:9;22179:6;22187:3;22140:19;:51::i;:::-;;22211:1;22205:3;:7;22202:77;;;22229:38;22245:16;;;;;;;;;;;22263:3;22229:15;:38::i;:::-;22202:77;22296:4;22289:11;;;21972:336;;;;;:::o;6733:84::-;6782:5;6807:2;6800:9;;6733:84;:::o;10781:215::-;10869:4;10886:80;10895:12;:10;:12::i;:::-;10909:7;10955:10;10918:11;:25;10930:12;:10;:12::i;:::-;10918:25;;;;;;;;;;;;;;;:34;10944:7;10918:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;10886:8;:80::i;:::-;10984:4;10977:11;;10781:215;;;;:::o;22352:242::-;22427:4;18627:12;:10;:12::i;:::-;18616:23;;:7;:5;:7::i;:::-;:23;;;18608:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22471:3:::1;22452:15;:22;;;;22444:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;22549:15;22531;;:33;;;;;;;;;;;;;;;;;;22582:4;22575:11;;22352:242:::0;;;:::o;22802:128::-;22861:7;22917:5;22899:16;:14;:16::i;:::-;22889:26;;:7;:26;;;;:::i;:::-;22888:34;;;;:::i;:::-;22881:41;;22802:128;;;:::o;22602:161::-;22681:4;18627:12;:10;:12::i;:::-;18616:23;;:7;:5;:7::i;:::-;:23;;;18608:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;22717:16:::1;22698;;:35;;;;;;;;;;;;;;;;;;22751:4;22744:11;;22602:161:::0;;;:::o;7053:127::-;7127:7;7154:9;:18;7164:7;7154:18;;;;;;;;;;;;;;;;7147:25;;7053:127;;;:::o;23225:95::-;23272:5;23297:15;;;;;;;;;;;23290:22;;23225:95;:::o;18396:87::-;18442:7;18469:6;;;;;;;;;;;18462:13;;18396:87;:::o;5999:95::-;6046:13;6079:7;6072:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5999:95;:::o;11499:377::-;11592:4;11609:24;11636:11;:25;11648:12;:10;:12::i;:::-;11636:25;;;;;;;;;;;;;;;:34;11662:7;11636:34;;;;;;;;;;;;;;;;11609:61;;11709:15;11689:16;:35;;11681:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11777:67;11786:12;:10;:12::i;:::-;11800:7;11828:15;11809:16;:34;;;;:::i;:::-;11777:8;:67::i;:::-;11864:4;11857:11;;;11499:377;;;;:::o;21667:297::-;21744:4;21761:11;21775:20;21788:6;21775:12;:20::i;:::-;21761:34;;21806:39;21822:9;21833:6;21841:3;21806:15;:39::i;:::-;;21865:1;21859:3;:7;21856:77;;;21883:38;21899:16;;;;;;;;;;;21917:3;21883:15;:38::i;:::-;21856:77;21952:4;21945:11;;;21667:297;;;;:::o;8058:151::-;8147:7;8174:11;:18;8186:5;8174:18;;;;;;;;;;;;;;;:27;8193:7;8174:27;;;;;;;;;;;;;;;;8167:34;;8058:151;;;;:::o;22938:147::-;23016:7;23066:10;:8;:10::i;:::-;23060:2;:16;;;;:::i;:::-;23043:13;:34;;;;:::i;:::-;23036:41;;22938:147;;;:::o;23119:98::-;23166:7;23193:16;;;;;;;;;;;23186:23;;23119:98;:::o;18851:244::-;18627:12;:10;:12::i;:::-;18616:23;;:7;:5;:7::i;:::-;:23;;;18608:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18960:1:::1;18940:22;;:8;:22;;;;18932:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;19050:8;19021:38;;19042:6;;;;;;;;;;;19021:38;;;;;;;;;;;;19079:8;19070:6;;:17;;;;;;;;;;;;;;;;;;18851:244:::0;:::o;635:98::-;688:7;715:10;708:17;;635:98;:::o;16279:346::-;16398:1;16381:19;;:5;:19;;;;16373:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16479:1;16460:21;;:7;:21;;;;16452:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16563:6;16533:11;:18;16545:5;16533:18;;;;;;;;;;;;;;;:27;16552:7;16533:27;;;;;;;;;;;;;;;:36;;;;16601:7;16585:32;;16594:5;16585:32;;;16610:6;16585:32;;;;;;:::i;:::-;;;;;;;;16279:346;;;:::o;9925:447::-;10044:4;10061:48;10078:6;10086:9;10097:6;10105:3;10061:16;:48::i;:::-;10122:24;10149:11;:19;10161:6;10149:19;;;;;;;;;;;;;;;:33;10169:12;:10;:12::i;:::-;10149:33;;;;;;;;;;;;;;;;10122:60;;10221:6;10201:16;:26;;10193:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;10283:57;10292:6;10300:12;:10;:12::i;:::-;10333:6;10314:16;:25;;;;:::i;:::-;10283:8;:57::i;:::-;10360:4;10353:11;;;9925:447;;;;;;:::o;14839:175::-;14947:6;14925:9;:18;14935:7;14925:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;14990:7;14969:37;;14986:1;14969:37;;;14999:6;14969:37;;;;;;:::i;:::-;;;;;;;;14839:175;;:::o;7795:200::-;7894:4;7911:54;7928:12;:10;:12::i;:::-;7942:9;7953:6;7961:3;7911:16;:54::i;:::-;7983:4;7976:11;;7795:200;;;;;:::o;13460:638::-;13604:1;13586:20;;:6;:20;;;;13578:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;13688:1;13667:23;;:9;:23;;;;13659:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13743:47;13764:6;13772:9;13783:6;13743:20;:47::i;:::-;13803:21;13827:9;:17;13837:6;13827:17;;;;;;;;;;;;;;;;13803:41;;13880:6;13863:13;:23;;13855:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;13976:6;13960:13;:22;;;;:::i;:::-;13940:9;:17;13950:6;13940:17;;;;;;;;;;;;;;;:42;;;;14027:3;14018:6;:12;;;;:::i;:::-;13993:9;:20;14003:9;13993:20;;;;;;;;;;;;;;;;:38;;;;;;;:::i;:::-;;;;;;;;14066:9;14049:41;;14058:6;14049:41;;;14086:3;14077:6;:12;;;;:::i;:::-;14049:41;;;;;;:::i;:::-;;;;;;;;13460:638;;;;;:::o;17228:92::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:135::-;;379:6;366:20;357:29;;395:31;420:5;395:31;:::i;:::-;347:85;;;;:::o;438:262::-;;546:2;534:9;525:7;521:23;517:32;514:2;;;562:1;559;552:12;514:2;605:1;630:53;675:7;666:6;655:9;651:22;630:53;:::i;:::-;620:63;;576:117;504:196;;;;:::o;706:407::-;;;831:2;819:9;810:7;806:23;802:32;799:2;;;847:1;844;837:12;799:2;890:1;915:53;960:7;951:6;940:9;936:22;915:53;:::i;:::-;905:63;;861:117;1017:2;1043:53;1088:7;1079:6;1068:9;1064:22;1043:53;:::i;:::-;1033:63;;988:118;789:324;;;;;:::o;1119:552::-;;;;1261:2;1249:9;1240:7;1236:23;1232:32;1229:2;;;1277:1;1274;1267:12;1229:2;1320:1;1345:53;1390:7;1381:6;1370:9;1366:22;1345:53;:::i;:::-;1335:63;;1291:117;1447:2;1473:53;1518:7;1509:6;1498:9;1494:22;1473:53;:::i;:::-;1463:63;;1418:118;1575:2;1601:53;1646:7;1637:6;1626:9;1622:22;1601:53;:::i;:::-;1591:63;;1546:118;1219:452;;;;;:::o;1677:407::-;;;1802:2;1790:9;1781:7;1777:23;1773:32;1770:2;;;1818:1;1815;1808:12;1770:2;1861:1;1886:53;1931:7;1922:6;1911:9;1907:22;1886:53;:::i;:::-;1876:63;;1832:117;1988:2;2014:53;2059:7;2050:6;2039:9;2035:22;2014:53;:::i;:::-;2004:63;;1959:118;1760:324;;;;;:::o;2090:262::-;;2198:2;2186:9;2177:7;2173:23;2169:32;2166:2;;;2214:1;2211;2204:12;2166:2;2257:1;2282:53;2327:7;2318:6;2307:9;2303:22;2282:53;:::i;:::-;2272:63;;2228:117;2156:196;;;;:::o;2358:258::-;;2464:2;2452:9;2443:7;2439:23;2435:32;2432:2;;;2480:1;2477;2470:12;2432:2;2523:1;2548:51;2591:7;2582:6;2571:9;2567:22;2548:51;:::i;:::-;2538:61;;2494:115;2422:194;;;;:::o;2622:118::-;2709:24;2727:5;2709:24;:::i;:::-;2704:3;2697:37;2687:53;;:::o;2746:109::-;2827:21;2842:5;2827:21;:::i;:::-;2822:3;2815:34;2805:50;;:::o;2861:364::-;;2977:39;3010:5;2977:39;:::i;:::-;3032:71;3096:6;3091:3;3032:71;:::i;:::-;3025:78;;3112:52;3157:6;3152:3;3145:4;3138:5;3134:16;3112:52;:::i;:::-;3189:29;3211:6;3189:29;:::i;:::-;3184:3;3180:39;3173:46;;2953:272;;;;;:::o;3231:366::-;;3394:67;3458:2;3453:3;3394:67;:::i;:::-;3387:74;;3470:93;3559:3;3470:93;:::i;:::-;3588:2;3583:3;3579:12;3572:19;;3377:220;;;:::o;3603:366::-;;3766:67;3830:2;3825:3;3766:67;:::i;:::-;3759:74;;3842:93;3931:3;3842:93;:::i;:::-;3960:2;3955:3;3951:12;3944:19;;3749:220;;;:::o;3975:366::-;;4138:67;4202:2;4197:3;4138:67;:::i;:::-;4131:74;;4214:93;4303:3;4214:93;:::i;:::-;4332:2;4327:3;4323:12;4316:19;;4121:220;;;:::o;4347:366::-;;4510:67;4574:2;4569:3;4510:67;:::i;:::-;4503:74;;4586:93;4675:3;4586:93;:::i;:::-;4704:2;4699:3;4695:12;4688:19;;4493:220;;;:::o;4719:366::-;;4882:67;4946:2;4941:3;4882:67;:::i;:::-;4875:74;;4958:93;5047:3;4958:93;:::i;:::-;5076:2;5071:3;5067:12;5060:19;;4865:220;;;:::o;5091:366::-;;5254:67;5318:2;5313:3;5254:67;:::i;:::-;5247:74;;5330:93;5419:3;5330:93;:::i;:::-;5448:2;5443:3;5439:12;5432:19;;5237:220;;;:::o;5463:366::-;;5626:67;5690:2;5685:3;5626:67;:::i;:::-;5619:74;;5702:93;5791:3;5702:93;:::i;:::-;5820:2;5815:3;5811:12;5804:19;;5609:220;;;:::o;5835:366::-;;5998:67;6062:2;6057:3;5998:67;:::i;:::-;5991:74;;6074:93;6163:3;6074:93;:::i;:::-;6192:2;6187:3;6183:12;6176:19;;5981:220;;;:::o;6207:366::-;;6370:67;6434:2;6429:3;6370:67;:::i;:::-;6363:74;;6446:93;6535:3;6446:93;:::i;:::-;6564:2;6559:3;6555:12;6548:19;;6353:220;;;:::o;6579:366::-;;6742:67;6806:2;6801:3;6742:67;:::i;:::-;6735:74;;6818:93;6907:3;6818:93;:::i;:::-;6936:2;6931:3;6927:12;6920:19;;6725:220;;;:::o;6951:118::-;7038:24;7056:5;7038:24;:::i;:::-;7033:3;7026:37;7016:53;;:::o;7075:112::-;7158:22;7174:5;7158:22;:::i;:::-;7153:3;7146:35;7136:51;;:::o;7193:222::-;;7324:2;7313:9;7309:18;7301:26;;7337:71;7405:1;7394:9;7390:17;7381:6;7337:71;:::i;:::-;7291:124;;;;:::o;7421:210::-;;7546:2;7535:9;7531:18;7523:26;;7559:65;7621:1;7610:9;7606:17;7597:6;7559:65;:::i;:::-;7513:118;;;;:::o;7637:313::-;;7788:2;7777:9;7773:18;7765:26;;7837:9;7831:4;7827:20;7823:1;7812:9;7808:17;7801:47;7865:78;7938:4;7929:6;7865:78;:::i;:::-;7857:86;;7755:195;;;;:::o;7956:419::-;;8160:2;8149:9;8145:18;8137:26;;8209:9;8203:4;8199:20;8195:1;8184:9;8180:17;8173:47;8237:131;8363:4;8237:131;:::i;:::-;8229:139;;8127:248;;;:::o;8381:419::-;;8585:2;8574:9;8570:18;8562:26;;8634:9;8628:4;8624:20;8620:1;8609:9;8605:17;8598:47;8662:131;8788:4;8662:131;:::i;:::-;8654:139;;8552:248;;;:::o;8806:419::-;;9010:2;8999:9;8995:18;8987:26;;9059:9;9053:4;9049:20;9045:1;9034:9;9030:17;9023:47;9087:131;9213:4;9087:131;:::i;:::-;9079:139;;8977:248;;;:::o;9231:419::-;;9435:2;9424:9;9420:18;9412:26;;9484:9;9478:4;9474:20;9470:1;9459:9;9455:17;9448:47;9512:131;9638:4;9512:131;:::i;:::-;9504:139;;9402:248;;;:::o;9656:419::-;;9860:2;9849:9;9845:18;9837:26;;9909:9;9903:4;9899:20;9895:1;9884:9;9880:17;9873:47;9937:131;10063:4;9937:131;:::i;:::-;9929:139;;9827:248;;;:::o;10081:419::-;;10285:2;10274:9;10270:18;10262:26;;10334:9;10328:4;10324:20;10320:1;10309:9;10305:17;10298:47;10362:131;10488:4;10362:131;:::i;:::-;10354:139;;10252:248;;;:::o;10506:419::-;;10710:2;10699:9;10695:18;10687:26;;10759:9;10753:4;10749:20;10745:1;10734:9;10730:17;10723:47;10787:131;10913:4;10787:131;:::i;:::-;10779:139;;10677:248;;;:::o;10931:419::-;;11135:2;11124:9;11120:18;11112:26;;11184:9;11178:4;11174:20;11170:1;11159:9;11155:17;11148:47;11212:131;11338:4;11212:131;:::i;:::-;11204:139;;11102:248;;;:::o;11356:419::-;;11560:2;11549:9;11545:18;11537:26;;11609:9;11603:4;11599:20;11595:1;11584:9;11580:17;11573:47;11637:131;11763:4;11637:131;:::i;:::-;11629:139;;11527:248;;;:::o;11781:419::-;;11985:2;11974:9;11970:18;11962:26;;12034:9;12028:4;12024:20;12020:1;12009:9;12005:17;11998:47;12062:131;12188:4;12062:131;:::i;:::-;12054:139;;11952:248;;;:::o;12206:222::-;;12337:2;12326:9;12322:18;12314:26;;12350:71;12418:1;12407:9;12403:17;12394:6;12350:71;:::i;:::-;12304:124;;;;:::o;12434:214::-;;12561:2;12550:9;12546:18;12538:26;;12574:67;12638:1;12627:9;12623:17;12614:6;12574:67;:::i;:::-;12528:120;;;;:::o;12654:99::-;;12740:5;12734:12;12724:22;;12713:40;;;:::o;12759:169::-;;12877:6;12872:3;12865:19;12917:4;12912:3;12908:14;12893:29;;12855:73;;;;:::o;12934:305::-;;12993:20;13011:1;12993:20;:::i;:::-;12988:25;;13027:20;13045:1;13027:20;:::i;:::-;13022:25;;13181:1;13113:66;13109:74;13106:1;13103:81;13100:2;;;13187:18;;:::i;:::-;13100:2;13231:1;13228;13224:9;13217:16;;12978:261;;;;:::o;13245:185::-;;13302:20;13320:1;13302:20;:::i;:::-;13297:25;;13336:20;13354:1;13336:20;:::i;:::-;13331:25;;13375:1;13365:2;;13380:18;;:::i;:::-;13365:2;13422:1;13419;13415:9;13410:14;;13287:143;;;;:::o;13436:848::-;;;13528:6;13519:15;;13552:5;13543:14;;13566:712;13587:1;13577:8;13574:15;13566:712;;;13682:4;13677:3;13673:14;13667:4;13664:24;13661:2;;;13691:18;;:::i;:::-;13661:2;13741:1;13731:8;13727:16;13724:2;;;14156:4;14149:5;14145:16;14136:25;;13724:2;14206:4;14200;14196:15;14188:23;;14236:32;14259:8;14236:32;:::i;:::-;14224:44;;13566:712;;;13509:775;;;;;;;:::o;14290:281::-;;14372:23;14390:4;14372:23;:::i;:::-;14364:31;;14416:25;14432:8;14416:25;:::i;:::-;14404:37;;14460:104;14497:66;14487:8;14481:4;14460:104;:::i;:::-;14451:113;;14354:217;;;;:::o;14577:1073::-;;14822:8;14812:2;;14843:1;14834:10;;14845:5;;14812:2;14871:4;14861:2;;14888:1;14879:10;;14890:5;;14861:2;14957:4;15005:1;15000:27;;;;15041:1;15036:191;;;;14950:277;;15000:27;15018:1;15009:10;;15020:5;;;15036:191;15081:3;15071:8;15068:17;15065:2;;;15088:18;;:::i;:::-;15065:2;15137:8;15134:1;15130:16;15121:25;;15172:3;15165:5;15162:14;15159:2;;;15179:18;;:::i;:::-;15159:2;15212:5;;;14950:277;;15336:2;15326:8;15323:16;15317:3;15311:4;15308:13;15304:36;15286:2;15276:8;15273:16;15268:2;15262:4;15259:12;15255:35;15239:111;15236:2;;;15392:8;15386:4;15382:19;15373:28;;15427:3;15420:5;15417:14;15414:2;;;15434:18;;:::i;:::-;15414:2;15467:5;;15236:2;15507:42;15545:3;15535:8;15529:4;15526:1;15507:42;:::i;:::-;15492:57;;;;15581:4;15576:3;15572:14;15565:5;15562:25;15559:2;;;15590:18;;:::i;:::-;15559:2;15639:4;15632:5;15628:16;15619:25;;14637:1013;;;;;;:::o;15656:348::-;;15719:20;15737:1;15719:20;:::i;:::-;15714:25;;15753:20;15771:1;15753:20;:::i;:::-;15748:25;;15941:1;15873:66;15869:74;15866:1;15863:81;15858:1;15851:9;15844:17;15840:105;15837:2;;;15948:18;;:::i;:::-;15837:2;15996:1;15993;15989:9;15978:20;;15704:300;;;;:::o;16010:191::-;;16070:20;16088:1;16070:20;:::i;:::-;16065:25;;16104:20;16122:1;16104:20;:::i;:::-;16099:25;;16143:1;16140;16137:8;16134:2;;;16148:18;;:::i;:::-;16134:2;16193:1;16190;16186:9;16178:17;;16055:146;;;;:::o;16207:96::-;;16273:24;16291:5;16273:24;:::i;:::-;16262:35;;16252:51;;;:::o;16309:90::-;;16386:5;16379:13;16372:21;16361:32;;16351:48;;;:::o;16405:126::-;;16482:42;16475:5;16471:54;16460:65;;16450:81;;;:::o;16537:77::-;;16603:5;16592:16;;16582:32;;;:::o;16620:86::-;;16695:4;16688:5;16684:16;16673:27;;16663:43;;;:::o;16712:307::-;16780:1;16790:113;16804:6;16801:1;16798:13;16790:113;;;16889:1;16884:3;16880:11;16874:18;16870:1;16865:3;16861:11;16854:39;16826:2;16823:1;16819:10;16814:15;;16790:113;;;16921:6;16918:1;16915:13;16912:2;;;17001:1;16992:6;16987:3;16983:16;16976:27;16912:2;16761:258;;;;:::o;17025:320::-;;17106:1;17100:4;17096:12;17086:22;;17153:1;17147:4;17143:12;17174:18;17164:2;;17230:4;17222:6;17218:17;17208:27;;17164:2;17292;17284:6;17281:14;17261:18;17258:38;17255:2;;;17311:18;;:::i;:::-;17255:2;17076:269;;;;:::o;17351:180::-;17399:77;17396:1;17389:88;17496:4;17493:1;17486:15;17520:4;17517:1;17510:15;17537:180;17585:77;17582:1;17575:88;17682:4;17679:1;17672:15;17706:4;17703:1;17696:15;17723:180;17771:77;17768:1;17761:88;17868:4;17865:1;17858:15;17892:4;17889:1;17882:15;17909:102;;18001:2;17997:7;17992:2;17985:5;17981:14;17977:28;17967:38;;17957:54;;;:::o;18017:102::-;;18106:5;18103:1;18099:13;18078:34;;18068:51;;;:::o;18125:222::-;18265:34;18261:1;18253:6;18249:14;18242:58;18334:5;18329:2;18321:6;18317:15;18310:30;18231:116;:::o;18353:225::-;18493:34;18489:1;18481:6;18477:14;18470:58;18562:8;18557:2;18549:6;18545:15;18538:33;18459:119;:::o;18584:221::-;18724:34;18720:1;18712:6;18708:14;18701:58;18793:4;18788:2;18780:6;18776:15;18769:29;18690:115;:::o;18811:225::-;18951:34;18947:1;18939:6;18935:14;18928:58;19020:8;19015:2;19007:6;19003:15;18996:33;18917:119;:::o;19042:227::-;19182:34;19178:1;19170:6;19166:14;19159:58;19251:10;19246:2;19238:6;19234:15;19227:35;19148:121;:::o;19275:182::-;19415:34;19411:1;19403:6;19399:14;19392:58;19381:76;:::o;19463:224::-;19603:34;19599:1;19591:6;19587:14;19580:58;19672:7;19667:2;19659:6;19655:15;19648:32;19569:118;:::o;19693:223::-;19833:34;19829:1;19821:6;19817:14;19810:58;19902:6;19897:2;19889:6;19885:15;19878:31;19799:117;:::o;19922:228::-;20062:34;20058:1;20050:6;20046:14;20039:58;20131:11;20126:2;20118:6;20114:15;20107:36;20028:122;:::o;20156:224::-;20296:34;20292:1;20284:6;20280:14;20273:58;20365:7;20360:2;20352:6;20348:15;20341:32;20262:118;:::o;20386:122::-;20459:24;20477:5;20459:24;:::i;:::-;20452:5;20449:35;20439:2;;20498:1;20495;20488:12;20439:2;20429:79;:::o;20514:122::-;20587:24;20605:5;20587:24;:::i;:::-;20580:5;20577:35;20567:2;;20626:1;20623;20616:12;20567:2;20557:79;:::o;20642:118::-;20713:22;20729:5;20713:22;:::i;:::-;20706:5;20703:33;20693:2;;20750:1;20747;20740:12;20693:2;20683:77;:::o

Swarm Source

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