ETH Price: $3,337.18 (-0.35%)
 

Overview

Max Total Supply

15,500,000 THO

Holders

8

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Filtered by Token Holder
Uniswap V2: THO 2
Balance
0.00000002 THO

Value
$0.00
0xb78b85a73a18733848b5fff97f387bd306fbabfe
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:
Thalero

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2022-12-02
*/

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v2.5.0/contracts/GSN/Context.sol

pragma solidity ^0.5.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 GSN 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.
 */
contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor () internal { }
    // solhint-disable-previous-line no-empty-blocks

    function _msgSender() internal view returns (address payable) {
        return msg.sender;
    }

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/release-v2.5.0/contracts/ownership/Ownable.sol

pragma solidity ^0.5.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.
 *
 * 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.
 */
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 () internal {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

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

    /**
     * @dev Returns true if the caller is the current owner.
     */
    function isOwner() public view returns (bool) {
        return _msgSender() == _owner;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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 onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

// File: Governance/TadBsc.sol

pragma solidity ^0.5.16;
pragma experimental ABIEncoderV2;



contract Thalero is Ownable {
    /// @notice EIP-20 token name for this token
    string public constant name = "Thalero";

    /// @notice EIP-20 token symbol for this token
    string public constant symbol = "THO";

    /// @notice EIP-20 token decimals for this token
    uint8 public constant decimals = 8;

    uint public constant _cap = 1550000000000000000000000000000000000000;

    /// @notice Total number of tokens in circulation
    uint public totalSupply = 0; // initiate with 0 TAD for BSC

    /// @notice Only minters can mint new supply
    mapping (address => bool) public minters;

    /// @notice Allowance amounts on behalf of others
    mapping (address => mapping (address => uint96)) internal allowances;

    /// @notice Official record of token balances for each account
    mapping (address => uint96) internal balances;

    /// @notice A record of each accounts delegate
    mapping (address => address) public delegates;

    /// @notice A checkpoint for marking number of votes from a given block
    struct Checkpoint {
        uint32 fromBlock;
        uint96 votes;
    }

    /// @notice A record of votes checkpoints for each account, by index
    mapping (address => mapping (uint32 => Checkpoint)) public checkpoints;

    /// @notice The number of checkpoints for each account
    mapping (address => uint32) public numCheckpoints;

    /// @notice The EIP-712 typehash for the contract's domain
    bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)");

    /// @notice The EIP-712 typehash for the delegation struct used by the contract
    bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)");

    /// @notice A record of states for signing / validating signatures
    mapping (address => uint) public nonces;

    /// @notice An event thats emitted when an account changes its delegate
    event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);

    /// @notice An event thats emitted when a delegate account's vote balance changes
    event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance);

    /// @notice The standard EIP-20 transfer event
    event Transfer(address indexed from, address indexed to, uint256 amount);

    /// @notice The standard EIP-20 approval event
    event Approval(address indexed owner, address indexed spender, uint256 amount);

    /// @notice An event thats emitted when some tokens are minted
    event Minted(address indexed to, uint256 amount);

    /// @notice An event thats emitted when some tokens are burnt
    event Burnt(address indexed from, uint256 amount);

    /**
     * @notice Construct a new Nusa token
     */
    constructor() public {
    }

    /**
     * @notice set/remove a minter, only owner can set/remove
     * @param account account to set/remove
     * @param canMint true to set, false to remove
     */
    function setMinter(address account, bool canMint) external onlyOwner {
        minters[account] = canMint;
    }


    /**
     * @notice Mint BSC token, only owner can mint
     * @param account The recipient account address
     * @param rawAmount The amount to be minted
     * @return Whether or not the minting succeeded
     */
    function mint(address account, uint rawAmount) public returns (bool) {
        require(minters[msg.sender] == true, "mint not allowed");
        uint96 amount = safe96(rawAmount, "Nusa::transfer: amount exceeds 96 bits");
        require(totalSupply + rawAmount <= _cap, "cap exceeded");
        _transferTokens(address(0), account, amount);
        emit Minted(account, rawAmount);
        return true;
    }


    /**
     * @notice Burn BSC token 
     * @param rawAmount The amount to be burnt
     * @return Whether or not the burning succeeded
     */
    function burn(uint rawAmount) public returns (bool) {
        uint96 amount = safe96(rawAmount, "Nusa::transfer: amount exceeds 96 bits");
        _transferTokens(msg.sender, address(0), amount);
        emit Burnt(msg.sender, rawAmount);
        return true;
    }

    /**
     * @notice Get the number of tokens `spender` is approved to spend on behalf of `account`
     * @param account The address of the account holding the funds
     * @param spender The address of the account spending the funds
     * @return The number of tokens approved
     */
    function allowance(address account, address spender) external view returns (uint) {
        return allowances[account][spender];
    }

    /**
     * @notice Approve `spender` to transfer up to `amount` from `src`
     * @dev This will overwrite the approval amount for `spender`
     *  and is subject to issues noted [here](https://eips.ethereum.org/EIPS/eip-20#approve)
     * @param spender The address of the account which may transfer tokens
     * @param rawAmount The number of tokens that are approved (2^256-1 means infinite)
     * @return Whether or not the approval succeeded
     */
    function approve(address spender, uint rawAmount) external returns (bool) {
        uint96 amount;
        if (rawAmount == uint(-1)) {
            amount = uint96(-1);
        } else {
            amount = safe96(rawAmount, "Nusa::approve: amount exceeds 96 bits");
        }

        allowances[msg.sender][spender] = amount;

        emit Approval(msg.sender, spender, amount);
        return true;
    }

    /**
     * @notice Get the number of tokens held by the `account`
     * @param account The address of the account to get the balance of
     * @return The number of tokens held
     */
    function balanceOf(address account) external view returns (uint) {
        return balances[account];
    }

    /**
     * @notice Transfer `amount` tokens from `msg.sender` to `dst`
     * @param dst The address of the destination account
     * @param rawAmount The number of tokens to transfer
     * @return Whether or not the transfer succeeded
     */
    function transfer(address dst, uint rawAmount) external returns (bool) {
        uint96 amount = safe96(rawAmount, "Nusa::transfer: amount exceeds 96 bits");
        _transferTokens(msg.sender, dst, amount);
        return true;
    }

    /**
     * @notice Transfer `amount` tokens from `src` to `dst`
     * @param src The address of the source account
     * @param dst The address of the destination account
     * @param rawAmount The number of tokens to transfer
     * @return Whether or not the transfer succeeded
     */
    function transferFrom(address src, address dst, uint rawAmount) external returns (bool) {
        address spender = msg.sender;
        uint96 spenderAllowance = allowances[src][spender];
        uint96 amount = safe96(rawAmount, "Nusa::approve: amount exceeds 96 bits");

        if (spender != src && spenderAllowance != uint96(-1)) {
            uint96 newAllowance = sub96(spenderAllowance, amount, "Nusa::transferFrom: transfer amount exceeds spender allowance");
            allowances[src][spender] = newAllowance;

            emit Approval(src, spender, newAllowance);
        }

        _transferTokens(src, dst, amount);
        return true;
    }

    /**
     * @notice Delegate votes from `msg.sender` to `delegatee`
     * @param delegatee The address to delegate votes to
     */
    function delegate(address delegatee) public {
        return _delegate(msg.sender, delegatee);
    }

    /**
     * @notice Delegates votes from signatory to `delegatee`
     * @param delegatee The address to delegate votes to
     * @param nonce The contract state required to match the signature
     * @param expiry The time at which to expire the signature
     * @param v The recovery byte of the signature
     * @param r Half of the ECDSA signature pair
     * @param s Half of the ECDSA signature pair
     */
    function delegateBySig(address delegatee, uint nonce, uint expiry, uint8 v, bytes32 r, bytes32 s) public {
        bytes32 domainSeparator = keccak256(abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(name)), getChainId(), address(this)));
        bytes32 structHash = keccak256(abi.encode(DELEGATION_TYPEHASH, delegatee, nonce, expiry));
        bytes32 digest = keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
        address signatory = ecrecover(digest, v, r, s);
        require(signatory != address(0), "Nusa::delegateBySig: invalid signature");
        require(nonce == nonces[signatory]++, "Nusa::delegateBySig: invalid nonce");
        require(now <= expiry, "Nusa::delegateBySig: signature expired");
        return _delegate(signatory, delegatee);
    }

    /**
     * @notice Gets the current votes balance for `account`
     * @param account The address to get votes balance
     * @return The number of current votes for `account`
     */
    function getCurrentVotes(address account) external view returns (uint96) {
        uint32 nCheckpoints = numCheckpoints[account];
        return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0;
    }

    /**
     * @notice Determine the prior number of votes for an account as of a block number
     * @dev Block number must be a finalized block or else this function will revert to prevent misinformation.
     * @param account The address of the account to check
     * @param blockNumber The block number to get the vote balance at
     * @return The number of votes the account had as of the given block
     */
    function getPriorVotes(address account, uint blockNumber) public view returns (uint96) {
        require(blockNumber < block.number, "Nusa::getPriorVotes: not yet determined");

        uint32 nCheckpoints = numCheckpoints[account];
        if (nCheckpoints == 0) {
            return 0;
        }

        // First check most recent balance
        if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) {
            return checkpoints[account][nCheckpoints - 1].votes;
        }

        // Next check implicit zero balance
        if (checkpoints[account][0].fromBlock > blockNumber) {
            return 0;
        }

        uint32 lower = 0;
        uint32 upper = nCheckpoints - 1;
        while (upper > lower) {
            uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow
            Checkpoint memory cp = checkpoints[account][center];
            if (cp.fromBlock == blockNumber) {
                return cp.votes;
            } else if (cp.fromBlock < blockNumber) {
                lower = center;
            } else {
                upper = center - 1;
            }
        }
        return checkpoints[account][lower].votes;
    }

    function _delegate(address delegator, address delegatee) internal {
        address currentDelegate = delegates[delegator];
        uint96 delegatorBalance = balances[delegator];
        delegates[delegator] = delegatee;

        emit DelegateChanged(delegator, currentDelegate, delegatee);

        _moveDelegates(currentDelegate, delegatee, delegatorBalance);
    }

    function _transferTokens(address src, address dst, uint96 amount) internal {
        //require(src != address(0), "Nusa::_transferTokens: cannot transfer from the zero address");
        //require(dst != address(0), "Nusa::_transferTokens: cannot transfer to the zero address");

        if(src != address(0)) balances[src] = sub96(balances[src], amount, "Nusa::_transferTokens: transfer amount exceeds balance");
        else totalSupply += amount;

        if(dst != address(0)) balances[dst] = add96(balances[dst], amount, "Nusa::_transferTokens: transfer amount overflows");
        else totalSupply -= amount;
        
        emit Transfer(src, dst, amount);

        _moveDelegates(delegates[src], delegates[dst], amount);
    }

    function _moveDelegates(address srcRep, address dstRep, uint96 amount) internal {
        if (srcRep != dstRep && amount > 0) {
            if (srcRep != address(0)) {
                uint32 srcRepNum = numCheckpoints[srcRep];
                uint96 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0;
                uint96 srcRepNew = sub96(srcRepOld, amount, "Nusa::_moveVotes: vote amount underflows");
                _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew);
            }

            if (dstRep != address(0)) {
                uint32 dstRepNum = numCheckpoints[dstRep];
                uint96 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0;
                uint96 dstRepNew = add96(dstRepOld, amount, "Nusa::_moveVotes: vote amount overflows");
                _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew);
            }
        }
    }

    function _writeCheckpoint(address delegatee, uint32 nCheckpoints, uint96 oldVotes, uint96 newVotes) internal {
      uint32 blockNumber = safe32(block.number, "Nusa::_writeCheckpoint: block number exceeds 32 bits");

      if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) {
          checkpoints[delegatee][nCheckpoints - 1].votes = newVotes;
      } else {
          checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes);
          numCheckpoints[delegatee] = nCheckpoints + 1;
      }

      emit DelegateVotesChanged(delegatee, oldVotes, newVotes);
    }

    function safe32(uint n, string memory errorMessage) internal pure returns (uint32) {
        require(n < 2**32, errorMessage);
        return uint32(n);
    }

    function safe96(uint n, string memory errorMessage) internal pure returns (uint96) {
        require(n < 2**96, errorMessage);
        return uint96(n);
    }

    function add96(uint96 a, uint96 b, string memory errorMessage) internal pure returns (uint96) {
        uint96 c = a + b;
        require(c >= a, errorMessage);
        return c;
    }

    function sub96(uint96 a, uint96 b, string memory errorMessage) internal pure returns (uint96) {
        require(b <= a, errorMessage);
        return a - b;
    }

    function getChainId() internal pure returns (uint) {
        uint256 chainId;
        assembly { chainId := chainid() }
        return chainId;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"payable":false,"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":"amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Burnt","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Minted","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":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"constant":true,"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint96","name":"votes","type":"uint96"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minters","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"canMint","type":"bool"}],"name":"setMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"src","type":"address"},{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"rawAmount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

6080604052600060015534801561001557600080fd5b5060006100296001600160e01b0361007816565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35061007c565b3390565b611f978061008b6000396000f3fe608060405234801561001057600080fd5b50600436106101c45760003560e01c8063782d6fe1116100f9578063c3cda52011610097578063e7a324dc11610071578063e7a324dc14610394578063f1127ed81461039c578063f2fde38b146103bd578063f46eccc4146103d0576101c4565b8063c3cda5201461035b578063cf456ae71461036e578063dd62ed3e14610381576101c4565b80638f32d59b116100d35780638f32d59b1461032557806395d89b411461032d578063a9059cbb14610335578063b4b5ea5714610348576101c4565b8063782d6fe1146102ea5780637ecebe001461030a5780638da5cb5b1461031d576101c4565b806340c10f19116101665780635c19a95c116101405780635c19a95c1461029a5780636fcfff45146102af57806370a08231146102cf578063715018a6146102e2576101c4565b806340c10f191461025457806342966c6814610267578063587cde1e1461027a576101c4565b806318160ddd116101a257806318160ddd1461021c57806320606b701461022457806323b872dd1461022c578063313ce5671461023f576101c4565b8063060cf4e8146101c957806306fdde03146101e7578063095ea7b3146101fc575b600080fd5b6101d16103e3565b6040516101de9190611b83565b60405180910390f35b6101ef6103f8565b6040516101de9190611c1f565b61020f61020a3660046116b3565b61041b565b6040516101de9190611b75565b6101d16104da565b6101d16104e0565b61020f61023a366004611636565b6104f7565b610247610640565b6040516101de9190611cd9565b61020f6102623660046116b3565b610645565b61020f61027536600461179a565b610734565b61028d6102883660046115d6565b6107b1565b6040516101de9190611b67565b6102ad6102a83660046115d6565b6107cc565b005b6102c26102bd3660046115d6565b6107d9565b6040516101de9190611cb0565b6101d16102dd3660046115d6565b6107f1565b6102ad610815565b6102fd6102f83660046116b3565b610883565b6040516101de9190611cf5565b6101d16103183660046115d6565b610a91565b61028d610aa3565b61020f610ab2565b6101ef610ad6565b61020f6103433660046116b3565b610af5565b6102fd6103563660046115d6565b610b31565b6102ad6103693660046116e3565b610ba1565b6102ad61037c366004611683565b610d8a565b6101d161038f3660046115fc565b610dd9565b6101d1610e0d565b6103af6103aa36600461176a565b610e19565b6040516101de929190611cbe565b6102ad6103cb3660046115d6565b610e4e565b61020f6103de3660046115d6565b610e7b565b70048e1724317b28e56393dd12e00000000081565b604051806040016040528060078152602001665468616c65726f60c81b81525081565b6000806000198314156104315750600019610456565b61045383604051806060016040528060258152602001611e7d60259139610e90565b90505b3360008181526003602090815260408083206001600160a01b03891680855292529182902080546001600160601b0319166001600160601b03861617905590519091907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906104c6908590611ce7565b60405180910390a360019150505b92915050565b60015481565b6040516104ec90611b51565b604051809103902081565b6001600160a01b03831660009081526003602090815260408083203380855290835281842054825160608101909352602580845291936001600160601b0390911692859261054f9288929190611e7d90830139610e90565b9050866001600160a01b0316836001600160a01b03161415801561057c57506001600160601b0382811614155b156106265760006105a683836040518060600160405280603d8152602001611e40603d9139610ebf565b6001600160a01b038981166000818152600360209081526040808320948a16808452949091529081902080546001600160601b0319166001600160601b0386161790555192935090917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061061c908590611ce7565b60405180910390a3505b610631878783610efe565b600193505050505b9392505050565b600881565b3360009081526002602052604081205460ff1615156001146106825760405162461bcd60e51b815260040161067990611c90565b60405180910390fd5b60006106a683604051806060016040528060268152602001611e1a60269139610e90565b905070048e1724317b28e56393dd12e000000000836001540111156106dd5760405162461bcd60e51b815260040161067990611c50565b6106e960008583610efe565b836001600160a01b03167f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe846040516107229190611b83565b60405180910390a25060019392505050565b60008061075983604051806060016040528060268152602001611e1a60269139610e90565b905061076733600083610efe565b336001600160a01b03167f919f7e2092ffcc9d09f599be18d8152860b0c054df788a33bc549cdd9d0f15b1846040516107a09190611b83565b60405180910390a250600192915050565b6005602052600090815260409020546001600160a01b031681565b6107d633826110cf565b50565b60076020526000908152604090205463ffffffff1681565b6001600160a01b03166000908152600460205260409020546001600160601b031690565b61081d610ab2565b6108395760405162461bcd60e51b815260040161067990611c70565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60004382106108a45760405162461bcd60e51b815260040161067990611ca0565b6001600160a01b03831660009081526007602052604090205463ffffffff16806108d25760009150506104d4565b6001600160a01b038416600090815260066020908152604080832063ffffffff60001986018116855292529091205416831061094e576001600160a01b03841660009081526006602090815260408083206000199490940163ffffffff1683529290522054600160201b90046001600160601b031690506104d4565b6001600160a01b038416600090815260066020908152604080832083805290915290205463ffffffff168310156109895760009150506104d4565b600060001982015b8163ffffffff168163ffffffff161115610a4c57600282820363ffffffff160481036109bb611588565b506001600160a01b038716600090815260066020908152604080832063ffffffff858116855290835292819020815180830190925254928316808252600160201b9093046001600160601b03169181019190915290871415610a27576020015194506104d49350505050565b805163ffffffff16871115610a3e57819350610a45565b6001820392505b5050610991565b506001600160a01b038516600090815260066020908152604080832063ffffffff909416835292905220546001600160601b03600160201b9091041691505092915050565b60086020526000908152604090205481565b6000546001600160a01b031690565b600080546001600160a01b0316610ac7611159565b6001600160a01b031614905090565b6040518060400160405280600381526020016254484f60e81b81525081565b600080610b1a83604051806060016040528060268152602001611e1a60269139610e90565b9050610b27338583610efe565b5060019392505050565b6001600160a01b03811660009081526007602052604081205463ffffffff1680610b5c576000610639565b6001600160a01b0383166000908152600660209081526040808320600019850163ffffffff168452909152902054600160201b90046001600160601b03169392505050565b6000604051610baf90611b51565b6040805191829003822082820190915260078252665468616c65726f60c81b6020909201919091527f4f32d8d1d990e881408e1590587384ac56d081975a4b6feb1a64df337f9eec10610c0061115d565b30604051602001610c149493929190611bcf565b6040516020818303038152906040528051906020012090506000604051610c3a90611b5c565b604051908190038120610c55918a908a908a90602001611b91565b60405160208183030381529060405280519060200120905060008282604051602001610c82929190611b20565b604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051610cbf9493929190611c04565b6020604051602081039080840390855afa158015610ce1573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610d145760405162461bcd60e51b815260040161067990611c30565b6001600160a01b03811660009081526008602052604090208054600181019091558914610d535760405162461bcd60e51b815260040161067990611c60565b87421115610d735760405162461bcd60e51b815260040161067990611c80565b610d7d818b6110cf565b505050505b505050505050565b610d92610ab2565b610dae5760405162461bcd60e51b815260040161067990611c70565b6001600160a01b03919091166000908152600260205260409020805460ff1916911515919091179055565b6001600160a01b0391821660009081526003602090815260408083209390941682529190915220546001600160601b031690565b6040516104ec90611b5c565b600660209081526000928352604080842090915290825290205463ffffffff811690600160201b90046001600160601b031682565b610e56610ab2565b610e725760405162461bcd60e51b815260040161067990611c70565b6107d681611161565b60026020526000908152604090205460ff1681565b600081600160601b8410610eb75760405162461bcd60e51b81526004016106799190611c1f565b509192915050565b6000836001600160601b0316836001600160601b031611158290610ef65760405162461bcd60e51b81526004016106799190611c1f565b505050900390565b6001600160a01b03831615610f93576001600160a01b038316600090815260046020908152604091829020548251606081019093526036808452610f58936001600160601b039092169285929190611de490830139610ebf565b6001600160a01b038416600090815260046020526040902080546001600160601b0319166001600160601b0392909216919091179055610fa5565b600180546001600160601b0383160190555b6001600160a01b0382161561103a576001600160a01b038216600090815260046020908152604091829020548251606081019093526030808452610fff936001600160601b039092169285929190611ef1908301396111e2565b6001600160a01b038316600090815260046020526040902080546001600160601b0319166001600160601b039290921691909117905561104d565b600180546001600160601b038316900390555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516110909190611ce7565b60405180910390a36001600160a01b038084166000908152600560205260408082205485841683529120546110ca9291821691168361121e565b505050565b6001600160a01b03808316600081815260056020818152604080842080546004845282862054949093528787166001600160a01b031984168117909155905191909516946001600160601b039092169391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a461115382848361121e565b50505050565b3390565b4690565b6001600160a01b0381166111875760405162461bcd60e51b815260040161067990611c40565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000838301826001600160601b0380871690831610156112155760405162461bcd60e51b81526004016106799190611c1f565b50949350505050565b816001600160a01b0316836001600160a01b03161415801561124957506000816001600160601b0316115b156110ca576001600160a01b03831615611301576001600160a01b03831660009081526007602052604081205463ffffffff1690816112895760006112c8565b6001600160a01b0385166000908152600660209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b905060006112ef8285604051806060016040528060288152602001611ea260289139610ebf565b90506112fd868484846113ac565b5050505b6001600160a01b038216156110ca576001600160a01b03821660009081526007602052604081205463ffffffff16908161133c57600061137b565b6001600160a01b0384166000908152600660209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b905060006113a28285604051806060016040528060278152602001611eca602791396111e2565b9050610d82858484845b60006113d043604051806060016040528060348152602001611f2160349139611561565b905060008463ffffffff1611801561141957506001600160a01b038516600090815260066020908152604080832063ffffffff6000198901811685529252909120548282169116145b15611478576001600160a01b0385166000908152600660209081526040808320600019880163ffffffff168452909152902080546fffffffffffffffffffffffff000000001916600160201b6001600160601b03851602179055611517565b60408051808201825263ffffffff80841682526001600160601b0380861660208085019182526001600160a01b038b166000818152600683528781208c871682528352878120965187549451909516600160201b026fffffffffffffffffffffffff000000001995871663ffffffff19958616179590951694909417909555938252600790935292909220805460018801909316929091169190911790555b846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051611552929190611d03565b60405180910390a25050505050565b600081600160201b8410610eb75760405162461bcd60e51b81526004016106799190611c1f565b604080518082019091526000808252602082015290565b80356104d481611dab565b80356104d481611dbf565b80356104d481611dc8565b80356104d481611dd1565b80356104d481611dda565b6000602082840312156115e857600080fd5b60006115f4848461159f565b949350505050565b6000806040838503121561160f57600080fd5b600061161b858561159f565b925050602061162c8582860161159f565b9150509250929050565b60008060006060848603121561164b57600080fd5b6000611657868661159f565b93505060206116688682870161159f565b9250506040611679868287016115b5565b9150509250925092565b6000806040838503121561169657600080fd5b60006116a2858561159f565b925050602061162c858286016115aa565b600080604083850312156116c657600080fd5b60006116d2858561159f565b925050602061162c858286016115b5565b60008060008060008060c087890312156116fc57600080fd5b6000611708898961159f565b965050602061171989828a016115b5565b955050604061172a89828a016115b5565b945050606061173b89828a016115cb565b935050608061174c89828a016115b5565b92505060a061175d89828a016115b5565b9150509295509295509295565b6000806040838503121561177d57600080fd5b6000611789858561159f565b925050602061162c858286016115c0565b6000602082840312156117ac57600080fd5b60006115f484846115b5565b6117c181611d30565b82525050565b6117c181611d3b565b6117c181611d40565b6117c16117e582611d40565b611d40565b60006117f582611d1e565b6117ff8185611d22565b935061180f818560208601611d75565b61181881611da1565b9093019392505050565b600061182f602683611d22565b7f4e7573613a3a64656c656761746542795369673a20696e76616c6964207369678152656e617475726560d01b602082015260400192915050565b6000611877602683611d22565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206181526564647265737360d01b602082015260400192915050565b60006118bf600283611d2b565b61190160f01b815260020192915050565b60006118dd600c83611d22565b6b18d85c08195e18d95959195960a21b815260200192915050565b6000611905602283611d22565b7f4e7573613a3a64656c656761746542795369673a20696e76616c6964206e6f6e815261636560f01b602082015260400192915050565b6000611949604383611d2b565b7f454950373132446f6d61696e28737472696e67206e616d652c75696e7432353681527f20636861696e49642c6164647265737320766572696679696e67436f6e74726160208201526263742960e81b604082015260430192915050565b60006119b4602083611d22565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572815260200192915050565b60006119ed602683611d22565b7f4e7573613a3a64656c656761746542795369673a207369676e617475726520658152651e1c1a5c995960d21b602082015260400192915050565b6000611a35601083611d22565b6f1b5a5b9d081b9bdd08185b1b1bddd95960821b815260200192915050565b6000611a61602783611d22565b7f4e7573613a3a6765745072696f72566f7465733a206e6f742079657420646574815266195c9b5a5b995960ca1b602082015260400192915050565b6000611aaa603a83611d2b565b7f44656c65676174696f6e28616464726573732064656c6567617465652c75696e81527f74323536206e6f6e63652c75696e7432353620657870697279290000000000006020820152603a0192915050565b6117c181611d4f565b6117c181611d58565b6117c181611d6a565b6117c181611d5e565b6000611b2b826118b2565b9150611b3782856117d9565b602082019150611b4782846117d9565b5060200192915050565b60006104d48261193c565b60006104d482611a9d565b602081016104d482846117b8565b602081016104d482846117c7565b602081016104d482846117d0565b60808101611b9f82876117d0565b611bac60208301866117b8565b611bb960408301856117d0565b611bc660608301846117d0565b95945050505050565b60808101611bdd82876117d0565b611bea60208301866117d0565b611bf760408301856117d0565b611bc660608301846117b8565b60808101611c1282876117d0565b611bac6020830186611b05565b6020808252810161063981846117ea565b602080825281016104d481611822565b602080825281016104d48161186a565b602080825281016104d4816118d0565b602080825281016104d4816118f8565b602080825281016104d4816119a7565b602080825281016104d4816119e0565b602080825281016104d481611a28565b602080825281016104d481611a54565b602081016104d48284611afc565b60408101611ccc8285611afc565b6106396020830184611b17565b602081016104d48284611b05565b602081016104d48284611b0e565b602081016104d48284611b17565b60408101611d118285611b0e565b6106396020830184611b0e565b5190565b90815260200190565b919050565b60006104d482611d43565b151590565b90565b6001600160a01b031690565b63ffffffff1690565b60ff1690565b6001600160601b031690565b60006104d482611d5e565b60005b83811015611d90578181015183820152602001611d78565b838111156111535750506000910152565b601f01601f191690565b611db481611d30565b81146107d657600080fd5b611db481611d3b565b611db481611d40565b611db481611d4f565b611db481611d5856fe4e7573613a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e63654e7573613a3a7472616e736665723a20616d6f756e74206578636565647320393620626974734e7573613a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e63654e7573613a3a617070726f76653a20616d6f756e74206578636565647320393620626974734e7573613a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f77734e7573613a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f77734e7573613a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f77734e7573613a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473a365627a7a7231582046c517eb298600c26f37358dfeed48b2d5bc9827c15657df0b4ab018f40505db6c6578706572696d656e74616cf564736f6c63430005110040

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101c45760003560e01c8063782d6fe1116100f9578063c3cda52011610097578063e7a324dc11610071578063e7a324dc14610394578063f1127ed81461039c578063f2fde38b146103bd578063f46eccc4146103d0576101c4565b8063c3cda5201461035b578063cf456ae71461036e578063dd62ed3e14610381576101c4565b80638f32d59b116100d35780638f32d59b1461032557806395d89b411461032d578063a9059cbb14610335578063b4b5ea5714610348576101c4565b8063782d6fe1146102ea5780637ecebe001461030a5780638da5cb5b1461031d576101c4565b806340c10f19116101665780635c19a95c116101405780635c19a95c1461029a5780636fcfff45146102af57806370a08231146102cf578063715018a6146102e2576101c4565b806340c10f191461025457806342966c6814610267578063587cde1e1461027a576101c4565b806318160ddd116101a257806318160ddd1461021c57806320606b701461022457806323b872dd1461022c578063313ce5671461023f576101c4565b8063060cf4e8146101c957806306fdde03146101e7578063095ea7b3146101fc575b600080fd5b6101d16103e3565b6040516101de9190611b83565b60405180910390f35b6101ef6103f8565b6040516101de9190611c1f565b61020f61020a3660046116b3565b61041b565b6040516101de9190611b75565b6101d16104da565b6101d16104e0565b61020f61023a366004611636565b6104f7565b610247610640565b6040516101de9190611cd9565b61020f6102623660046116b3565b610645565b61020f61027536600461179a565b610734565b61028d6102883660046115d6565b6107b1565b6040516101de9190611b67565b6102ad6102a83660046115d6565b6107cc565b005b6102c26102bd3660046115d6565b6107d9565b6040516101de9190611cb0565b6101d16102dd3660046115d6565b6107f1565b6102ad610815565b6102fd6102f83660046116b3565b610883565b6040516101de9190611cf5565b6101d16103183660046115d6565b610a91565b61028d610aa3565b61020f610ab2565b6101ef610ad6565b61020f6103433660046116b3565b610af5565b6102fd6103563660046115d6565b610b31565b6102ad6103693660046116e3565b610ba1565b6102ad61037c366004611683565b610d8a565b6101d161038f3660046115fc565b610dd9565b6101d1610e0d565b6103af6103aa36600461176a565b610e19565b6040516101de929190611cbe565b6102ad6103cb3660046115d6565b610e4e565b61020f6103de3660046115d6565b610e7b565b70048e1724317b28e56393dd12e00000000081565b604051806040016040528060078152602001665468616c65726f60c81b81525081565b6000806000198314156104315750600019610456565b61045383604051806060016040528060258152602001611e7d60259139610e90565b90505b3360008181526003602090815260408083206001600160a01b03891680855292529182902080546001600160601b0319166001600160601b03861617905590519091907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925906104c6908590611ce7565b60405180910390a360019150505b92915050565b60015481565b6040516104ec90611b51565b604051809103902081565b6001600160a01b03831660009081526003602090815260408083203380855290835281842054825160608101909352602580845291936001600160601b0390911692859261054f9288929190611e7d90830139610e90565b9050866001600160a01b0316836001600160a01b03161415801561057c57506001600160601b0382811614155b156106265760006105a683836040518060600160405280603d8152602001611e40603d9139610ebf565b6001600160a01b038981166000818152600360209081526040808320948a16808452949091529081902080546001600160601b0319166001600160601b0386161790555192935090917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061061c908590611ce7565b60405180910390a3505b610631878783610efe565b600193505050505b9392505050565b600881565b3360009081526002602052604081205460ff1615156001146106825760405162461bcd60e51b815260040161067990611c90565b60405180910390fd5b60006106a683604051806060016040528060268152602001611e1a60269139610e90565b905070048e1724317b28e56393dd12e000000000836001540111156106dd5760405162461bcd60e51b815260040161067990611c50565b6106e960008583610efe565b836001600160a01b03167f30385c845b448a36257a6a1716e6ad2e1bc2cbe333cde1e69fe849ad6511adfe846040516107229190611b83565b60405180910390a25060019392505050565b60008061075983604051806060016040528060268152602001611e1a60269139610e90565b905061076733600083610efe565b336001600160a01b03167f919f7e2092ffcc9d09f599be18d8152860b0c054df788a33bc549cdd9d0f15b1846040516107a09190611b83565b60405180910390a250600192915050565b6005602052600090815260409020546001600160a01b031681565b6107d633826110cf565b50565b60076020526000908152604090205463ffffffff1681565b6001600160a01b03166000908152600460205260409020546001600160601b031690565b61081d610ab2565b6108395760405162461bcd60e51b815260040161067990611c70565b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60004382106108a45760405162461bcd60e51b815260040161067990611ca0565b6001600160a01b03831660009081526007602052604090205463ffffffff16806108d25760009150506104d4565b6001600160a01b038416600090815260066020908152604080832063ffffffff60001986018116855292529091205416831061094e576001600160a01b03841660009081526006602090815260408083206000199490940163ffffffff1683529290522054600160201b90046001600160601b031690506104d4565b6001600160a01b038416600090815260066020908152604080832083805290915290205463ffffffff168310156109895760009150506104d4565b600060001982015b8163ffffffff168163ffffffff161115610a4c57600282820363ffffffff160481036109bb611588565b506001600160a01b038716600090815260066020908152604080832063ffffffff858116855290835292819020815180830190925254928316808252600160201b9093046001600160601b03169181019190915290871415610a27576020015194506104d49350505050565b805163ffffffff16871115610a3e57819350610a45565b6001820392505b5050610991565b506001600160a01b038516600090815260066020908152604080832063ffffffff909416835292905220546001600160601b03600160201b9091041691505092915050565b60086020526000908152604090205481565b6000546001600160a01b031690565b600080546001600160a01b0316610ac7611159565b6001600160a01b031614905090565b6040518060400160405280600381526020016254484f60e81b81525081565b600080610b1a83604051806060016040528060268152602001611e1a60269139610e90565b9050610b27338583610efe565b5060019392505050565b6001600160a01b03811660009081526007602052604081205463ffffffff1680610b5c576000610639565b6001600160a01b0383166000908152600660209081526040808320600019850163ffffffff168452909152902054600160201b90046001600160601b03169392505050565b6000604051610baf90611b51565b6040805191829003822082820190915260078252665468616c65726f60c81b6020909201919091527f4f32d8d1d990e881408e1590587384ac56d081975a4b6feb1a64df337f9eec10610c0061115d565b30604051602001610c149493929190611bcf565b6040516020818303038152906040528051906020012090506000604051610c3a90611b5c565b604051908190038120610c55918a908a908a90602001611b91565b60405160208183030381529060405280519060200120905060008282604051602001610c82929190611b20565b604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051610cbf9493929190611c04565b6020604051602081039080840390855afa158015610ce1573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116610d145760405162461bcd60e51b815260040161067990611c30565b6001600160a01b03811660009081526008602052604090208054600181019091558914610d535760405162461bcd60e51b815260040161067990611c60565b87421115610d735760405162461bcd60e51b815260040161067990611c80565b610d7d818b6110cf565b505050505b505050505050565b610d92610ab2565b610dae5760405162461bcd60e51b815260040161067990611c70565b6001600160a01b03919091166000908152600260205260409020805460ff1916911515919091179055565b6001600160a01b0391821660009081526003602090815260408083209390941682529190915220546001600160601b031690565b6040516104ec90611b5c565b600660209081526000928352604080842090915290825290205463ffffffff811690600160201b90046001600160601b031682565b610e56610ab2565b610e725760405162461bcd60e51b815260040161067990611c70565b6107d681611161565b60026020526000908152604090205460ff1681565b600081600160601b8410610eb75760405162461bcd60e51b81526004016106799190611c1f565b509192915050565b6000836001600160601b0316836001600160601b031611158290610ef65760405162461bcd60e51b81526004016106799190611c1f565b505050900390565b6001600160a01b03831615610f93576001600160a01b038316600090815260046020908152604091829020548251606081019093526036808452610f58936001600160601b039092169285929190611de490830139610ebf565b6001600160a01b038416600090815260046020526040902080546001600160601b0319166001600160601b0392909216919091179055610fa5565b600180546001600160601b0383160190555b6001600160a01b0382161561103a576001600160a01b038216600090815260046020908152604091829020548251606081019093526030808452610fff936001600160601b039092169285929190611ef1908301396111e2565b6001600160a01b038316600090815260046020526040902080546001600160601b0319166001600160601b039290921691909117905561104d565b600180546001600160601b038316900390555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516110909190611ce7565b60405180910390a36001600160a01b038084166000908152600560205260408082205485841683529120546110ca9291821691168361121e565b505050565b6001600160a01b03808316600081815260056020818152604080842080546004845282862054949093528787166001600160a01b031984168117909155905191909516946001600160601b039092169391928592917f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a461115382848361121e565b50505050565b3390565b4690565b6001600160a01b0381166111875760405162461bcd60e51b815260040161067990611c40565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000838301826001600160601b0380871690831610156112155760405162461bcd60e51b81526004016106799190611c1f565b50949350505050565b816001600160a01b0316836001600160a01b03161415801561124957506000816001600160601b0316115b156110ca576001600160a01b03831615611301576001600160a01b03831660009081526007602052604081205463ffffffff1690816112895760006112c8565b6001600160a01b0385166000908152600660209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b905060006112ef8285604051806060016040528060288152602001611ea260289139610ebf565b90506112fd868484846113ac565b5050505b6001600160a01b038216156110ca576001600160a01b03821660009081526007602052604081205463ffffffff16908161133c57600061137b565b6001600160a01b0384166000908152600660209081526040808320600019860163ffffffff168452909152902054600160201b90046001600160601b03165b905060006113a28285604051806060016040528060278152602001611eca602791396111e2565b9050610d82858484845b60006113d043604051806060016040528060348152602001611f2160349139611561565b905060008463ffffffff1611801561141957506001600160a01b038516600090815260066020908152604080832063ffffffff6000198901811685529252909120548282169116145b15611478576001600160a01b0385166000908152600660209081526040808320600019880163ffffffff168452909152902080546fffffffffffffffffffffffff000000001916600160201b6001600160601b03851602179055611517565b60408051808201825263ffffffff80841682526001600160601b0380861660208085019182526001600160a01b038b166000818152600683528781208c871682528352878120965187549451909516600160201b026fffffffffffffffffffffffff000000001995871663ffffffff19958616179590951694909417909555938252600790935292909220805460018801909316929091169190911790555b846001600160a01b03167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051611552929190611d03565b60405180910390a25050505050565b600081600160201b8410610eb75760405162461bcd60e51b81526004016106799190611c1f565b604080518082019091526000808252602082015290565b80356104d481611dab565b80356104d481611dbf565b80356104d481611dc8565b80356104d481611dd1565b80356104d481611dda565b6000602082840312156115e857600080fd5b60006115f4848461159f565b949350505050565b6000806040838503121561160f57600080fd5b600061161b858561159f565b925050602061162c8582860161159f565b9150509250929050565b60008060006060848603121561164b57600080fd5b6000611657868661159f565b93505060206116688682870161159f565b9250506040611679868287016115b5565b9150509250925092565b6000806040838503121561169657600080fd5b60006116a2858561159f565b925050602061162c858286016115aa565b600080604083850312156116c657600080fd5b60006116d2858561159f565b925050602061162c858286016115b5565b60008060008060008060c087890312156116fc57600080fd5b6000611708898961159f565b965050602061171989828a016115b5565b955050604061172a89828a016115b5565b945050606061173b89828a016115cb565b935050608061174c89828a016115b5565b92505060a061175d89828a016115b5565b9150509295509295509295565b6000806040838503121561177d57600080fd5b6000611789858561159f565b925050602061162c858286016115c0565b6000602082840312156117ac57600080fd5b60006115f484846115b5565b6117c181611d30565b82525050565b6117c181611d3b565b6117c181611d40565b6117c16117e582611d40565b611d40565b60006117f582611d1e565b6117ff8185611d22565b935061180f818560208601611d75565b61181881611da1565b9093019392505050565b600061182f602683611d22565b7f4e7573613a3a64656c656761746542795369673a20696e76616c6964207369678152656e617475726560d01b602082015260400192915050565b6000611877602683611d22565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206181526564647265737360d01b602082015260400192915050565b60006118bf600283611d2b565b61190160f01b815260020192915050565b60006118dd600c83611d22565b6b18d85c08195e18d95959195960a21b815260200192915050565b6000611905602283611d22565b7f4e7573613a3a64656c656761746542795369673a20696e76616c6964206e6f6e815261636560f01b602082015260400192915050565b6000611949604383611d2b565b7f454950373132446f6d61696e28737472696e67206e616d652c75696e7432353681527f20636861696e49642c6164647265737320766572696679696e67436f6e74726160208201526263742960e81b604082015260430192915050565b60006119b4602083611d22565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572815260200192915050565b60006119ed602683611d22565b7f4e7573613a3a64656c656761746542795369673a207369676e617475726520658152651e1c1a5c995960d21b602082015260400192915050565b6000611a35601083611d22565b6f1b5a5b9d081b9bdd08185b1b1bddd95960821b815260200192915050565b6000611a61602783611d22565b7f4e7573613a3a6765745072696f72566f7465733a206e6f742079657420646574815266195c9b5a5b995960ca1b602082015260400192915050565b6000611aaa603a83611d2b565b7f44656c65676174696f6e28616464726573732064656c6567617465652c75696e81527f74323536206e6f6e63652c75696e7432353620657870697279290000000000006020820152603a0192915050565b6117c181611d4f565b6117c181611d58565b6117c181611d6a565b6117c181611d5e565b6000611b2b826118b2565b9150611b3782856117d9565b602082019150611b4782846117d9565b5060200192915050565b60006104d48261193c565b60006104d482611a9d565b602081016104d482846117b8565b602081016104d482846117c7565b602081016104d482846117d0565b60808101611b9f82876117d0565b611bac60208301866117b8565b611bb960408301856117d0565b611bc660608301846117d0565b95945050505050565b60808101611bdd82876117d0565b611bea60208301866117d0565b611bf760408301856117d0565b611bc660608301846117b8565b60808101611c1282876117d0565b611bac6020830186611b05565b6020808252810161063981846117ea565b602080825281016104d481611822565b602080825281016104d48161186a565b602080825281016104d4816118d0565b602080825281016104d4816118f8565b602080825281016104d4816119a7565b602080825281016104d4816119e0565b602080825281016104d481611a28565b602080825281016104d481611a54565b602081016104d48284611afc565b60408101611ccc8285611afc565b6106396020830184611b17565b602081016104d48284611b05565b602081016104d48284611b0e565b602081016104d48284611b17565b60408101611d118285611b0e565b6106396020830184611b0e565b5190565b90815260200190565b919050565b60006104d482611d43565b151590565b90565b6001600160a01b031690565b63ffffffff1690565b60ff1690565b6001600160601b031690565b60006104d482611d5e565b60005b83811015611d90578181015183820152602001611d78565b838111156111535750506000910152565b601f01601f191690565b611db481611d30565b81146107d657600080fd5b611db481611d3b565b611db481611d40565b611db481611d4f565b611db481611d5856fe4e7573613a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e7420657863656564732062616c616e63654e7573613a3a7472616e736665723a20616d6f756e74206578636565647320393620626974734e7573613a3a7472616e7366657246726f6d3a207472616e7366657220616d6f756e742065786365656473207370656e64657220616c6c6f77616e63654e7573613a3a617070726f76653a20616d6f756e74206578636565647320393620626974734e7573613a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f77734e7573613a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f77734e7573613a3a5f7472616e73666572546f6b656e733a207472616e7366657220616d6f756e74206f766572666c6f77734e7573613a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473a365627a7a7231582046c517eb298600c26f37358dfeed48b2d5bc9827c15657df0b4ab018f40505db6c6578706572696d656e74616cf564736f6c63430005110040

Deployed Bytecode Sourcemap

3932:14588:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3932:14588:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4260:68;;;:::i;:::-;;;;;;;;;;;;;;;;4017:39;;;:::i;:::-;;;;;;;;9167:419;;;;;;;;;:::i;:::-;;;;;;;;4392:27;;;:::i;5414:122::-;;;:::i;10709:672::-;;;;;;;;;:::i;4217:34::-;;;:::i;:::-;;;;;;;;7402:416;;;;;;;;;:::i;7979:270::-;;;;;;;;;:::i;4864:45::-;;;;;;;;;:::i;:::-;;;;;;;;11529:102;;;;;;;;;:::i;:::-;;5292:49;;;;;;;;;:::i;:::-;;;;;;;;9789:108;;;;;;;;;:::i;3085:140::-;;;:::i;13708:1218::-;;;;;;;;;:::i;:::-;;;;;;;;5828:39;;;;;;;;;:::i;2274:79::-;;;:::i;2640:94::-;;;:::i;4117:37::-;;;:::i;10161:238::-;;;;;;;;;:::i;13055:222::-;;;;;;;;;:::i;12065:789::-;;;;;;;;;:::i;7053:114::-;;;;;;;;;:::i;8553:136::-;;;;;;;;;:::i;5630:117::-;;;:::i;5153:70::-;;;;;;;;;:::i;:::-;;;;;;;;;3380:109;;;;;;;;;:::i;4509:40::-;;;;;;;;;:::i;4260:68::-;4288:40;4260:68;:::o;4017:39::-;;;;;;;;;;;;;;-1:-1:-1;;;4017:39:0;;;;:::o;9167:419::-;9235:4;9252:13;-1:-1:-1;;9280:9:0;:21;9276:173;;;-1:-1:-1;;;9276:173:0;;;9379:58;9386:9;9379:58;;;;;;;;;;;;;;;;;:6;:58::i;:::-;9370:67;;9276:173;9472:10;9461:22;;;;:10;:22;;;;;;;;-1:-1:-1;;;;;9461:31:0;;;;;;;;;;;:40;;-1:-1:-1;;;;;;9461:40:0;-1:-1:-1;;;;;9461:40:0;;;;;9519:37;;9461:31;;9472:10;9519:37;;;;9461:40;;9519:37;;;;;;;;;;9574:4;9567:11;;;9167:419;;;;;:::o;4392:27::-;;;;:::o;5414:122::-;5456:80;;;;;;;;;;;;;;5414:122;:::o;10709:672::-;-1:-1:-1;;;;;10873:15:0;;10791:4;10873:15;;;:10;:15;;;;;;;;10826:10;10873:24;;;;;;;;;;10924:58;;;;;;;;;;;;10826:10;;-1:-1:-1;;;;;10873:24:0;;;;10791:4;;10924:58;;10931:9;;10924:58;;;;;;;:6;:58::i;:::-;10908:74;;11010:3;-1:-1:-1;;;;;10999:14:0;:7;-1:-1:-1;;;;;10999:14:0;;;:48;;;;-1:-1:-1;;;;;;11017:30:0;;;;;10999:48;10995:311;;;11064:19;11086:96;11092:16;11110:6;11086:96;;;;;;;;;;;;;;;;;:5;:96::i;:::-;-1:-1:-1;;;;;11197:15:0;;;;;;;:10;:15;;;;;;;;:24;;;;;;;;;;;;;;:39;;-1:-1:-1;;;;;;11197:39:0;-1:-1:-1;;;;;11197:39:0;;;;;11258:36;11197:39;;-1:-1:-1;11197:24:0;;11258:36;;;;11197:39;;11258:36;;;;;;;;;;10995:311;;11318:33;11334:3;11339;11344:6;11318:15;:33::i;:::-;11369:4;11362:11;;;;;10709:672;;;;;;:::o;4217:34::-;4250:1;4217:34;:::o;7402:416::-;7498:10;7465:4;7490:19;;;:7;:19;;;;;;;;:27;;:19;:27;7482:56;;;;-1:-1:-1;;;7482:56:0;;;;;;;;;;;;;;;;;7549:13;7565:59;7572:9;7565:59;;;;;;;;;;;;;;;;;:6;:59::i;:::-;7549:75;;4288:40;7657:9;7643:11;;:23;:31;;7635:56;;;;-1:-1:-1;;;7635:56:0;;;;;;;;;7702:44;7726:1;7730:7;7739:6;7702:15;:44::i;:::-;7769:7;-1:-1:-1;;;;;7762:26:0;;7778:9;7762:26;;;;;;;;;;;;;;;-1:-1:-1;7806:4:0;;7402:416;-1:-1:-1;;;7402:416:0:o;7979:270::-;8025:4;8042:13;8058:59;8065:9;8058:59;;;;;;;;;;;;;;;;;:6;:59::i;:::-;8042:75;;8128:47;8144:10;8164:1;8168:6;8128:15;:47::i;:::-;8197:10;-1:-1:-1;;;;;8191:28:0;;8209:9;8191:28;;;;;;;;;;;;;;;-1:-1:-1;8237:4:0;;7979:270;-1:-1:-1;;7979:270:0:o;4864:45::-;;;;;;;;;;;;-1:-1:-1;;;;;4864:45:0;;:::o;11529:102::-;11591:32;11601:10;11613:9;11591;:32::i;:::-;11529:102;:::o;5292:49::-;;;;;;;;;;;;;;;:::o;9789:108::-;-1:-1:-1;;;;;9872:17:0;9848:4;9872:17;;;:8;:17;;;;;;-1:-1:-1;;;;;9872:17:0;;9789:108::o;3085:140::-;2486:9;:7;:9::i;:::-;2478:54;;;;-1:-1:-1;;;2478:54:0;;;;;;;;;3184:1;3168:6;;3147:40;;-1:-1:-1;;;;;3168:6:0;;;;3147:40;;3184:1;;3147:40;3215:1;3198:19;;-1:-1:-1;;;;;;3198:19:0;;;3085:140::o;13708:1218::-;13787:6;13828:12;13814:11;:26;13806:78;;;;-1:-1:-1;;;13806:78:0;;;;;;;;;-1:-1:-1;;;;;13919:23:0;;13897:19;13919:23;;;:14;:23;;;;;;;;13957:17;13953:58;;13998:1;13991:8;;;;;13953:58;-1:-1:-1;;;;;14071:20:0;;;;;;:11;:20;;;;;;;;:38;-1:-1:-1;;14092:16:0;;14071:38;;;;;;;;;:48;;:63;-1:-1:-1;14067:147:0;;-1:-1:-1;;;;;14158:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;14179:16:0;;;;14158:38;;;;;;;;:44;-1:-1:-1;;;14158:44:0;;-1:-1:-1;;;;;14158:44:0;;-1:-1:-1;14151:51:0;;14067:147;-1:-1:-1;;;;;14275:20:0;;;;;;:11;:20;;;;;;;;:23;;;;;;;;:33;:23;:33;:47;-1:-1:-1;14271:88:0;;;14346:1;14339:8;;;;;14271:88;14371:12;-1:-1:-1;;14413:16:0;;14440:428;14455:5;14447:13;;:5;:13;;;14440:428;;;14519:1;14502:13;;;14501:19;;;14493:27;;14562:20;;:::i;:::-;-1:-1:-1;;;;;;14585:20:0;;;;;;:11;:20;;;;;;;;:28;;;;;;;;;;;;;14562:51;;;;;;;;;;;;;;;-1:-1:-1;;;14562:51:0;;;-1:-1:-1;;;;;14562:51:0;;;;;;;;;14632:27;;14628:229;;;14687:8;;;;-1:-1:-1;14680:15:0;;-1:-1:-1;;;;14680:15:0;14628:229;14721:12;;:26;;;-1:-1:-1;14717:140:0;;;14776:6;14768:14;;14717:140;;;14840:1;14831:6;:10;14823:18;;14717:140;14440:428;;;;;-1:-1:-1;;;;;;14885:20:0;;;;;;:11;:20;;;;;;;;:27;;;;;;;;;;:33;-1:-1:-1;;;;;;;;14885:33:0;;;;;-1:-1:-1;;13708:1218:0;;;;:::o;5828:39::-;;;;;;;;;;;;;:::o;2274:79::-;2312:7;2339:6;-1:-1:-1;;;;;2339:6:0;2274:79;:::o;2640:94::-;2680:4;2720:6;;-1:-1:-1;;;;;2720:6:0;2704:12;:10;:12::i;:::-;-1:-1:-1;;;;;2704:22:0;;2697:29;;2640:94;:::o;4117:37::-;;;;;;;;;;;;;;-1:-1:-1;;;4117:37:0;;;;:::o;10161:238::-;10226:4;10243:13;10259:59;10266:9;10259:59;;;;;;;;;;;;;;;;;:6;:59::i;:::-;10243:75;;10329:40;10345:10;10357:3;10362:6;10329:15;:40::i;:::-;-1:-1:-1;10387:4:0;;10161:238;-1:-1:-1;;;10161:238:0:o;13055:222::-;-1:-1:-1;;;;;13161:23:0;;13120:6;13161:23;;;:14;:23;;;;;;;;13202:16;:67;;13268:1;13202:67;;;-1:-1:-1;;;;;13221:20:0;;;;;;:11;:20;;;;;;;;-1:-1:-1;;13242:16:0;;13221:38;;;;;;;;;:44;-1:-1:-1;;;13221:44:0;;-1:-1:-1;;;;;13221:44:0;13195:74;13055:222;-1:-1:-1;;;13055:222:0:o;12065:789::-;12181:23;5456:80;;;;;;;;;;;;;;;;12261:4;;;;;;;;;-1:-1:-1;;;12261:4:0;;;;;;;;12245:22;12269:12;:10;:12::i;:::-;12291:4;12217:80;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;12217:80:0;;;12207:91;;;;;;12181:117;;12309:18;5676:71;;;;;;;;;;;;;;;12340:57;;12372:9;;12383:5;;12390:6;;12340:57;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;12340:57:0;;;12330:68;;;;;;12309:89;;12409:14;12465:15;12482:10;12436:57;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;12436:57:0;;;12426:68;;;;;;12409:85;;12505:17;12525:26;12535:6;12543:1;12546;12549;12525:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;12525:26:0;;-1:-1:-1;;12525:26:0;;;-1:-1:-1;;;;;;;12570:23:0;;12562:74;;;;-1:-1:-1;;;12562:74:0;;;;;;;;;-1:-1:-1;;;;;12664:17:0;;;;;;:6;:17;;;;;:19;;;;;;;;12655:28;;12647:75;;;;-1:-1:-1;;;12647:75:0;;;;;;;;;12748:6;12741:3;:13;;12733:64;;;;-1:-1:-1;;;12733:64:0;;;;;;;;;12815:31;12825:9;12836;12815;:31::i;:::-;12808:38;;;;12065:789;;;;;;;:::o;7053:114::-;2486:9;:7;:9::i;:::-;2478:54;;;;-1:-1:-1;;;2478:54:0;;;;;;;;;-1:-1:-1;;;;;7133:16:0;;;;;;;;:7;:16;;;;;:26;;-1:-1:-1;;7133:26:0;;;;;;;;;;7053:114::o;8553:136::-;-1:-1:-1;;;;;8653:19:0;;;8629:4;8653:19;;;:10;:19;;;;;;;;:28;;;;;;;;;;;;-1:-1:-1;;;;;8653:28:0;;8553:136::o;5630:117::-;5676:71;;;;;;5153:70;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5153:70:0;;-1:-1:-1;;;;;5153:70:0;;:::o;3380:109::-;2486:9;:7;:9::i;:::-;2478:54;;;;-1:-1:-1;;;2478:54:0;;;;;;;;;3453:28;3472:8;3453:18;:28::i;4509:40::-;;;;;;;;;;;;;;;:::o;17826:161::-;17901:6;17939:12;-1:-1:-1;;;17928:9:0;;17920:32;;;;-1:-1:-1;;;17920:32:0;;;;;;;;;;-1:-1:-1;17977:1:0;;17826:161;-1:-1:-1;;17826:161:0:o;18191:165::-;18277:6;18309:1;-1:-1:-1;;;;;18304:6:0;:1;-1:-1:-1;;;;;18304:6:0;;;18312:12;18296:29;;;;;-1:-1:-1;;;18296:29:0;;;;;;;;;;-1:-1:-1;;;18343:5:0;;;18191:165::o;15317:748::-;-1:-1:-1;;;;;15612:17:0;;;15609:161;;-1:-1:-1;;;;;15653:13:0;;;;;;:8;:13;;;;;;;;;;15647:86;;;;;;;;;;;;;;-1:-1:-1;;;;;15653:13:0;;;;15668:6;;15647:86;;;;;;;:5;:86::i;:::-;-1:-1:-1;;;;;15631:13:0;;;;;;:8;:13;;;;;:102;;-1:-1:-1;;;;;;15631:102:0;-1:-1:-1;;;;;15631:102:0;;;;;;;;;;15609:161;;;15749:11;:21;;-1:-1:-1;;;;;15749:21:0;;;;;15609:161;-1:-1:-1;;;;;15786:17:0;;;15783:155;;-1:-1:-1;;;;;15827:13:0;;;;;;:8;:13;;;;;;;;;;15821:80;;;;;;;;;;;;;;-1:-1:-1;;;;;15827:13:0;;;;15842:6;;15821:80;;;;;;;:5;:80::i;:::-;-1:-1:-1;;;;;15805:13:0;;;;;;:8;:13;;;;;:96;;-1:-1:-1;;;;;;15805:96:0;-1:-1:-1;;;;;15805:96:0;;;;;;;;;;15783:155;;;15917:11;:21;;-1:-1:-1;;;;;15917:21:0;;;;;;15783:155;15978:3;-1:-1:-1;;;;;15964:26:0;15973:3;-1:-1:-1;;;;;15964:26:0;;15983:6;15964:26;;;;;;;;;;;;;;;-1:-1:-1;;;;;16018:14:0;;;;;;;:9;:14;;;;;;;16034;;;;;;;;16003:54;;16018:14;;;;16034;16050:6;16003:14;:54::i;:::-;15317:748;;;:::o;14934:375::-;-1:-1:-1;;;;;15037:20:0;;;15011:23;15037:20;;;:9;:20;;;;;;;;;;15094:8;:19;;;;;;15124:20;;;;:32;;;-1:-1:-1;;;;;;15124:32:0;;;;;;;15174:54;;15037:20;;;;;-1:-1:-1;;;;;15094:19:0;;;;15124:32;;15037:20;;;15174:54;;15011:23;15174:54;15241:60;15256:15;15273:9;15284:16;15241:14;:60::i;:::-;14934:375;;;;:::o;919:98::-;999:10;919:98;:::o;18364:153::-;18474:9;18364:153;:::o;3595:229::-;-1:-1:-1;;;;;3669:22:0;;3661:73;;;;-1:-1:-1;;;3661:73:0;;;;;;;;;3771:6;;;3750:38;;-1:-1:-1;;;;;3750:38:0;;;;3771:6;;;3750:38;;;3799:6;:17;;-1:-1:-1;;;;;;3799:17:0;-1:-1:-1;;;;;3799:17:0;;;;;;;;;;3595:229::o;17995:188::-;18081:6;18111:5;;;18143:12;-1:-1:-1;;;;;18135:6:0;;;;;;;;18127:29;;;;-1:-1:-1;;;18127:29:0;;;;;;;;;;-1:-1:-1;18174:1:0;17995:188;-1:-1:-1;;;;17995:188:0:o;16073:939::-;16178:6;-1:-1:-1;;;;;16168:16:0;:6;-1:-1:-1;;;;;16168:16:0;;;:30;;;;;16197:1;16188:6;-1:-1:-1;;;;;16188:10:0;;16168:30;16164:841;;;-1:-1:-1;;;;;16219:20:0;;;16215:382;;-1:-1:-1;;;;;16279:22:0;;16260:16;16279:22;;;:14;:22;;;;;;;;;16339:13;:60;;16398:1;16339:60;;;-1:-1:-1;;;;;16355:19:0;;;;;;:11;:19;;;;;;;;-1:-1:-1;;16375:13:0;;16355:34;;;;;;;;;:40;-1:-1:-1;;;16355:40:0;;-1:-1:-1;;;;;16355:40:0;16339:60;16320:79;;16418:16;16437:68;16443:9;16454:6;16437:68;;;;;;;;;;;;;;;;;:5;:68::i;:::-;16418:87;;16524:57;16541:6;16549:9;16560;16571;16524:16;:57::i;:::-;16215:382;;;;-1:-1:-1;;;;;16617:20:0;;;16613:381;;-1:-1:-1;;;;;16677:22:0;;16658:16;16677:22;;;:14;:22;;;;;;;;;16737:13;:60;;16796:1;16737:60;;;-1:-1:-1;;;;;16753:19:0;;;;;;:11;:19;;;;;;;;-1:-1:-1;;16773:13:0;;16753:34;;;;;;;;;:40;-1:-1:-1;;;16753:40:0;;-1:-1:-1;;;;;16753:40:0;16737:60;16718:79;;16816:16;16835:67;16841:9;16852:6;16835:67;;;;;;;;;;;;;;;;;:5;:67::i;:::-;16816:86;;16921:57;16938:6;16946:9;16957;16968;17020:629;17138:18;17159:76;17166:12;17159:76;;;;;;;;;;;;;;;;;:6;:76::i;:::-;17138:97;;17265:1;17250:12;:16;;;:85;;;;-1:-1:-1;;;;;;17270:22:0;;;;;;:11;:22;;;;;;;;:65;-1:-1:-1;;17293:16:0;;17270:40;;;;;;;;;:50;:65;;;:50;;:65;17250:85;17246:329;;;-1:-1:-1;;;;;17350:22:0;;;;;;:11;:22;;;;;;;;-1:-1:-1;;17373:16:0;;17350:40;;;;;;;;;:57;;-1:-1:-1;;17350:57:0;-1:-1:-1;;;;;;;;17350:57:0;;;;;;17246:329;;;17475:33;;;;;;;;;;;;;;-1:-1:-1;;;;;17475:33:0;;;;;;;;;;-1:-1:-1;;;;;17436:22:0;;-1:-1:-1;17436:22:0;;;:11;:22;;;;;:36;;;;;;;;;;:72;;;;;;;;;-1:-1:-1;;;17436:72:0;-1:-1:-1;;17436:72:0;;;-1:-1:-1;;17436:72:0;;;;;;;;;;;;;;;17521:25;;;:14;:25;;;;;;;:44;;17436:72;17549:16;;17521:44;;;;;;;;;;;;;17246:329;17611:9;-1:-1:-1;;;;;17590:51:0;;17622:8;17632;17590:51;;;;;;;;;;;;;;;;17020:629;;;;;:::o;17657:161::-;17732:6;17770:12;-1:-1:-1;;;17759:9:0;;17751:32;;;;-1:-1:-1;;;17751:32:0;;;;;;;;;3932:14588;;;;;;;;;;-1:-1:-1;3932:14588:0;;;;;;;;:::o;5:130:-1:-;72:20;;97:33;72:20;97:33;;142:124;206:20;;231:30;206:20;231:30;;273:130;340:20;;365:33;340:20;365:33;;547:128;613:20;;638:32;613:20;638:32;;682:126;747:20;;772:31;747:20;772:31;;815:241;;919:2;907:9;898:7;894:23;890:32;887:2;;;935:1;932;925:12;887:2;970:1;987:53;1032:7;1012:9;987:53;;;977:63;881:175;-1:-1;;;;881:175;1063:366;;;1184:2;1172:9;1163:7;1159:23;1155:32;1152:2;;;1200:1;1197;1190:12;1152:2;1235:1;1252:53;1297:7;1277:9;1252:53;;;1242:63;;1214:97;1342:2;1360:53;1405:7;1396:6;1385:9;1381:22;1360:53;;;1350:63;;1321:98;1146:283;;;;;;1436:491;;;;1574:2;1562:9;1553:7;1549:23;1545:32;1542:2;;;1590:1;1587;1580:12;1542:2;1625:1;1642:53;1687:7;1667:9;1642:53;;;1632:63;;1604:97;1732:2;1750:53;1795:7;1786:6;1775:9;1771:22;1750:53;;;1740:63;;1711:98;1840:2;1858:53;1903:7;1894:6;1883:9;1879:22;1858:53;;;1848:63;;1819:98;1536:391;;;;;;1934:360;;;2052:2;2040:9;2031:7;2027:23;2023:32;2020:2;;;2068:1;2065;2058:12;2020:2;2103:1;2120:53;2165:7;2145:9;2120:53;;;2110:63;;2082:97;2210:2;2228:50;2270:7;2261:6;2250:9;2246:22;2228:50;;2301:366;;;2422:2;2410:9;2401:7;2397:23;2393:32;2390:2;;;2438:1;2435;2428:12;2390:2;2473:1;2490:53;2535:7;2515:9;2490:53;;;2480:63;;2452:97;2580:2;2598:53;2643:7;2634:6;2623:9;2619:22;2598:53;;2674:865;;;;;;;2861:3;2849:9;2840:7;2836:23;2832:33;2829:2;;;2878:1;2875;2868:12;2829:2;2913:1;2930:53;2975:7;2955:9;2930:53;;;2920:63;;2892:97;3020:2;3038:53;3083:7;3074:6;3063:9;3059:22;3038:53;;;3028:63;;2999:98;3128:2;3146:53;3191:7;3182:6;3171:9;3167:22;3146:53;;;3136:63;;3107:98;3236:2;3254:51;3297:7;3288:6;3277:9;3273:22;3254:51;;;3244:61;;3215:96;3342:3;3361:53;3406:7;3397:6;3386:9;3382:22;3361:53;;;3351:63;;3321:99;3451:3;3470:53;3515:7;3506:6;3495:9;3491:22;3470:53;;;3460:63;;3430:99;2823:716;;;;;;;;;3546:364;;;3666:2;3654:9;3645:7;3641:23;3637:32;3634:2;;;3682:1;3679;3672:12;3634:2;3717:1;3734:53;3779:7;3759:9;3734:53;;;3724:63;;3696:97;3824:2;3842:52;3886:7;3877:6;3866:9;3862:22;3842:52;;3917:241;;4021:2;4009:9;4000:7;3996:23;3992:32;3989:2;;;4037:1;4034;4027:12;3989:2;4072:1;4089:53;4134:7;4114:9;4089:53;;4165:113;4248:24;4266:5;4248:24;;;4243:3;4236:37;4230:48;;;4285:104;4362:21;4377:5;4362:21;;4396:113;4479:24;4497:5;4479:24;;4516:152;4617:45;4637:24;4655:5;4637:24;;;4617:45;;4675:347;;4787:39;4820:5;4787:39;;;4838:71;4902:6;4897:3;4838:71;;;4831:78;;4914:52;4959:6;4954:3;4947:4;4940:5;4936:16;4914:52;;;4987:29;5009:6;4987:29;;;4978:39;;;;4767:255;-1:-1;;;4767:255;5376:375;;5536:67;5600:2;5595:3;5536:67;;;5636:34;5616:55;;-1:-1;;;5700:2;5691:12;;5684:30;5742:2;5733:12;;5522:229;-1:-1;;5522:229;5760:375;;5920:67;5984:2;5979:3;5920:67;;;6020:34;6000:55;;-1:-1;;;6084:2;6075:12;;6068:30;6126:2;6117:12;;5906:229;-1:-1;;5906:229;6144:398;;6322:84;6404:1;6399:3;6322:84;;;-1:-1;;;6419:87;;6534:1;6525:11;;6308:234;-1:-1;;6308:234;6551:312;;6711:67;6775:2;6770:3;6711:67;;;-1:-1;;;6791:35;;6854:2;6845:12;;6697:166;-1:-1;;6697:166;6872:371;;7032:67;7096:2;7091:3;7032:67;;;7132:34;7112:55;;-1:-1;;;7196:2;7187:12;;7180:26;7234:2;7225:12;;7018:225;-1:-1;;7018:225;7252:477;;7430:85;7512:2;7507:3;7430:85;;;7548:34;7528:55;;7617:34;7612:2;7603:12;;7596:56;-1:-1;;;7681:2;7672:12;;7665:27;7720:2;7711:12;;7416:313;-1:-1;;7416:313;7738:332;;7898:67;7962:2;7957:3;7898:67;;;7998:34;7978:55;;8061:2;8052:12;;7884:186;-1:-1;;7884:186;8079:375;;8239:67;8303:2;8298:3;8239:67;;;8339:34;8319:55;;-1:-1;;;8403:2;8394:12;;8387:30;8445:2;8436:12;;8225:229;-1:-1;;8225:229;8463:316;;8623:67;8687:2;8682:3;8623:67;;;-1:-1;;;8703:39;;8770:2;8761:12;;8609:170;-1:-1;;8609:170;8788:376;;8948:67;9012:2;9007:3;8948:67;;;9048:34;9028:55;;-1:-1;;;9112:2;9103:12;;9096:31;9155:2;9146:12;;8934:230;-1:-1;;8934:230;9173:431;;9351:85;9433:2;9428:3;9351:85;;;9469:34;9449:55;;9538:28;9533:2;9524:12;;9517:50;9595:2;9586:12;;9337:267;-1:-1;;9337:267;9732:110;9813:23;9830:5;9813:23;;9849:107;9928:22;9944:5;9928:22;;9963:124;10045:36;10075:5;10045:36;;10094:110;10175:23;10192:5;10175:23;;10211:650;;10466:148;10610:3;10466:148;;;10459:155;;10625:75;10696:3;10687:6;10625:75;;;10722:2;10717:3;10713:12;10706:19;;10736:75;10807:3;10798:6;10736:75;;;-1:-1;10833:2;10824:12;;10447:414;-1:-1;;10447:414;10868:372;;11067:148;11211:3;11067:148;;11247:372;;11446:148;11590:3;11446:148;;11626:213;11744:2;11729:18;;11758:71;11733:9;11802:6;11758:71;;11846:201;11958:2;11943:18;;11972:65;11947:9;12010:6;11972:65;;12054:213;12172:2;12157:18;;12186:71;12161:9;12230:6;12186:71;;12274:547;12476:3;12461:19;;12491:71;12465:9;12535:6;12491:71;;;12573:72;12641:2;12630:9;12626:18;12617:6;12573:72;;;12656;12724:2;12713:9;12709:18;12700:6;12656:72;;;12739;12807:2;12796:9;12792:18;12783:6;12739:72;;;12447:374;;;;;;;;12828:547;13030:3;13015:19;;13045:71;13019:9;13089:6;13045:71;;;13127:72;13195:2;13184:9;13180:18;13171:6;13127:72;;;13210;13278:2;13267:9;13263:18;13254:6;13210:72;;;13293;13361:2;13350:9;13346:18;13337:6;13293:72;;13382:539;13580:3;13565:19;;13595:71;13569:9;13639:6;13595:71;;;13677:68;13741:2;13730:9;13726:18;13717:6;13677:68;;13928:293;14062:2;14076:47;;;14047:18;;14137:74;14047:18;14197:6;14137:74;;14536:407;14727:2;14741:47;;;14712:18;;14802:131;14712:18;14802:131;;14950:407;15141:2;15155:47;;;15126:18;;15216:131;15126:18;15216:131;;15364:407;15555:2;15569:47;;;15540:18;;15630:131;15540:18;15630:131;;15778:407;15969:2;15983:47;;;15954:18;;16044:131;15954:18;16044:131;;16192:407;16383:2;16397:47;;;16368:18;;16458:131;16368:18;16458:131;;16606:407;16797:2;16811:47;;;16782:18;;16872:131;16782:18;16872:131;;17020:407;17211:2;17225:47;;;17196:18;;17286:131;17196:18;17286:131;;17434:407;17625:2;17639:47;;;17610:18;;17700:131;17610:18;17700:131;;18068:209;18184:2;18169:18;;18198:69;18173:9;18240:6;18198:69;;18284:316;18426:2;18411:18;;18440:69;18415:9;18482:6;18440:69;;;18520:70;18586:2;18575:9;18571:18;18562:6;18520:70;;18607:205;18721:2;18706:18;;18735:67;18710:9;18775:6;18735:67;;18819:211;18936:2;18921:18;;18950:70;18925:9;18993:6;18950:70;;19037:209;19153:2;19138:18;;19167:69;19142:9;19209:6;19167:69;;19253:320;19397:2;19382:18;;19411:70;19386:9;19454:6;19411:70;;;19492:71;19559:2;19548:9;19544:18;19535:6;19492:71;;19580:118;19664:12;;19635:63;19835:163;19938:19;;;19987:4;19978:14;;19931:67;20007:145;20143:3;20121:31;-1:-1;20121:31;20160:91;;20222:24;20240:5;20222:24;;20258:85;20324:13;20317:21;;20300:43;20350:72;20412:5;20395:27;20429:121;-1:-1;;;;;20491:54;;20474:76;20636:88;20708:10;20697:22;;20680:44;20731:81;20802:4;20791:16;;20774:38;20819:104;-1:-1;;;;;20880:38;;20863:60;20930:106;;21008:23;21025:5;21008:23;;21044:268;21109:1;21116:101;21130:6;21127:1;21124:13;21116:101;;;21197:11;;;21191:18;21178:11;;;21171:39;21152:2;21145:10;21116:101;;;21232:6;21229:1;21226:13;21223:2;;;-1:-1;;21297:1;21279:16;;21272:27;21093:219;21401:97;21489:2;21469:14;-1:-1;;21465:28;;21449:49;21506:117;21575:24;21593:5;21575:24;;;21568:5;21565:35;21555:2;;21614:1;21611;21604:12;21630:111;21696:21;21711:5;21696:21;;21748:117;21817:24;21835:5;21817:24;;21996:115;22064:23;22081:5;22064:23;;22118:113;22185:22;22201:5;22185:22;

Swarm Source

bzzr://46c517eb298600c26f37358dfeed48b2d5bc9827c15657df0b4ab018f40505db
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.