ETH Price: $3,395.98 (+6.21%)
Gas: 23 Gwei

Token

10Set Token (10SET)
 

Overview

Max Total Supply

209,909,109.875110355430219555 10SET

Holders

596

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
43,345.809266322310321359 10SET

Value
$0.00
0xcd2026b871de7f8b08449d9716db06b14071e334
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:
TenSetToken

Compiler Version
v0.6.2+commit.bacdbe57

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-01-30
*/

// File: contracts/IERC20Cutted.sol

pragma solidity ^0.6.2;


interface IERC20Cutted {

    // Some old tokens are implemented without a retrun parameter (this was prior to the ERC20 standart change)
    function transfer(address to, uint256 value) external;

    function balanceOf(address who) external view returns (uint256);

}

// File: @openzeppelin/contracts/GSN/Context.sol

// SPDX-License-Identifier: MIT

pragma solidity >=0.6.0 <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 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.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address payable) {
        return msg.sender;
    }

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

// File: @openzeppelin/contracts/access/Ownable.sol


pragma solidity >=0.6.0 <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 () 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(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

// File: contracts/RetrieveTokensFeature.sol

pragma solidity ^0.6.2;





contract RetrieveTokensFeature is Context, Ownable {

    function retrieveTokens(address to, address anotherToken) virtual public onlyOwner() {
        IERC20Cutted alienToken = IERC20Cutted(anotherToken);
        alienToken.transfer(to, alienToken.balanceOf(address(this)));
    }

    function retriveETH(address payable to) virtual public onlyOwner() {
        to.transfer(address(this).balance);
    }

}

// File: @openzeppelin/contracts/math/SafeMath.sol


pragma solidity >=0.6.0 <0.8.0;

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

        return c;
    }

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

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

// File: @openzeppelin/contracts/utils/Address.sol


pragma solidity >=0.6.2 <0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain`call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
      return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: contracts/StagedCrowdsale.sol

pragma solidity ^0.6.2;






contract StagedCrowdsale is Context, Ownable {
    using SafeMath for uint256;
    using Address for address;

    struct Milestone {
        uint256 start;
        uint256 end;
        uint256 bonus;
        uint256 minInvestedLimit;
        uint256 maxInvestedLimit;
        uint256 invested;
        uint256 tokensSold;
        uint256 hardcapInTokens;
    }

    Milestone[] public milestones;

    function milestonesCount() public view returns (uint) {
        return milestones.length;
    }

    function addMilestone(uint256 start, uint256 end, uint256 bonus, uint256 minInvestedLimit, uint256 maxInvestedLimit, uint256 invested, uint256 tokensSold, uint256 hardcapInTokens) public onlyOwner {
        milestones.push(Milestone(start, end, bonus, minInvestedLimit, maxInvestedLimit, invested, tokensSold, hardcapInTokens));
    }

    function removeMilestone(uint8 number) public onlyOwner {
        require(number < milestones.length);
        //Milestone storage milestone = milestones[number];

        delete milestones[number];

        // check it
        for (uint i = number; i < milestones.length - 1; i++) {
            milestones[i] = milestones[i + 1];
        }

    }

    function changeMilestone(uint8 number, uint256 start, uint256 end, uint256 bonus, uint256 minInvestedLimit, uint256 maxInvestedLimit, uint256 invested, uint256 tokensSold, uint256 hardcapInTokens) public onlyOwner {
        require(number < milestones.length);
        Milestone storage milestone = milestones[number];

        milestone.start = start;
        milestone.end = end;
        milestone.bonus = bonus;
        milestone.minInvestedLimit = minInvestedLimit;
        milestone.maxInvestedLimit = maxInvestedLimit;
        milestone.invested = invested;
        milestone.tokensSold = tokensSold;
        milestone.hardcapInTokens = hardcapInTokens;
    }

    function insertMilestone(uint8 index, uint256 start, uint256 end, uint256 bonus, uint256 minInvestedLimit, uint256 maxInvestedLimit, uint256 invested, uint256 tokensSold, uint256 hardcapInTokens) public onlyOwner {
        require(index < milestones.length);
        for (uint i = milestones.length; i > index; i--) {
            milestones[i] = milestones[i - 1];
        }
        milestones[index] = Milestone(start, end, bonus, minInvestedLimit, maxInvestedLimit, invested, tokensSold, hardcapInTokens);
    }

    function clearMilestones() public onlyOwner {
        require(milestones.length > 0);
        for (uint i = 0; i < milestones.length; i++) {
            delete milestones[i];
        }
    }

    function currentMilestone() public view returns (uint256) {
        for (uint256 i = 0; i < milestones.length; i++) {
            if (now >= milestones[i].start && now < milestones[i].end && milestones[i].tokensSold <= milestones[i].hardcapInTokens) {
                return i;
            }
        }
        revert();
    }

}

// File: contracts/CommonSale.sol

pragma solidity ^0.6.2;





contract CommonSale is StagedCrowdsale, RetrieveTokensFeature {

    IERC20Cutted public token;
    uint256 public price; // amount of tokens per 1 ETH
    uint256 public invested;
    uint256 public percentRate = 100;
    address payable public wallet;
    bool public isPause = false;
    mapping(address => bool) public whitelist;

    mapping(uint256 => mapping(address => uint256)) public balances;

    mapping(uint256 => bool) public whitelistedMilestones;

    function setMilestoneWithWhitelist(uint256 index) public onlyOwner {
        whitelistedMilestones[index] = true;
    }

    function unsetMilestoneWithWhitelist(uint256 index) public onlyOwner {
        whitelistedMilestones[index] = false;
    }

    function addToWhiteList(address target) public onlyOwner {
        require(!whitelist[target], "Already in whitelist");
        whitelist[target] = true;
    }

    function addToWhiteListMultiple(address[] memory targets) public onlyOwner {
        for (uint i = 0; i < targets.length; i++) {
            if (!whitelist[targets[i]]) whitelist[targets[i]] = true;
        }
    }

    function pause() public onlyOwner {
        isPause = true;
    }

    function unpause() public onlyOwner {
        isPause = false;
    }

    function setToken(address newTokenAddress) public onlyOwner() {
        token = IERC20Cutted(newTokenAddress);
    }

    function setPercentRate(uint256 newPercentRate) public onlyOwner() {
        percentRate = newPercentRate;
    }

    function setWallet(address payable newWallet) public onlyOwner() {
        wallet = newWallet;
    }

    function setPrice(uint256 newPrice) public onlyOwner() {
        price = newPrice;
    }

    function updateInvested(uint256 value) internal {
        invested = invested.add(value);
    }

    function internalFallback() internal returns (uint) {
        require(!isPause, "Contract paused");

        uint256 milestoneIndex = currentMilestone();
        Milestone storage milestone = milestones[milestoneIndex];
        uint256 limitedInvestValue = msg.value;

        // limit the minimum amount for one transaction (ETH) 
        require(limitedInvestValue >= milestone.minInvestedLimit, "The amount is too small");

        // check if the milestone requires user to be whitelisted
        if (whitelistedMilestones[milestoneIndex]) {
            require(whitelist[_msgSender()], "The address must be whitelisted!");
        }

        // limit the maximum amount that one user can spend during the current milestone (ETH)
        uint256 maxAllowableValue = milestone.maxInvestedLimit - balances[milestoneIndex][_msgSender()];
        if (limitedInvestValue > maxAllowableValue) {
            limitedInvestValue = maxAllowableValue;
        }
        require(limitedInvestValue > 0, "Investment limit exceeded!");

        // apply a bonus if any (10SET)
        uint256 tokensWithoutBonus = limitedInvestValue.mul(price).div(1 ether);
        uint256 tokensWithBonus = tokensWithoutBonus;
        if (milestone.bonus > 0) {
            tokensWithBonus = tokensWithoutBonus.add(tokensWithoutBonus.mul(milestone.bonus).div(percentRate));
        }

        // limit the number of tokens that user can buy according to the hardcap of the current milestone (10SET)
        if (milestone.tokensSold.add(tokensWithBonus) > milestone.hardcapInTokens) {
            tokensWithBonus = milestone.hardcapInTokens.sub(milestone.tokensSold);
            if (milestone.bonus > 0) {
                tokensWithoutBonus = tokensWithBonus.mul(percentRate).div(percentRate + milestone.bonus);
            }
        }
        
        // calculate the resulting amount of ETH that user will spend and calculate the change if any
        uint256 tokenBasedLimitedInvestValue = tokensWithoutBonus.mul(1 ether).div(price);
        uint256 change = msg.value - tokenBasedLimitedInvestValue;

        // update stats
        invested = invested.add(tokenBasedLimitedInvestValue);
        milestone.tokensSold = milestone.tokensSold.add(tokensWithBonus);
        balances[milestoneIndex][_msgSender()] = balances[milestoneIndex][_msgSender()].add(tokenBasedLimitedInvestValue);
        
        wallet.transfer(tokenBasedLimitedInvestValue);
        
        // we multiply the amount to send by 100 / 98 to compensate the buyer 2% fee charged on each transaction
        token.transfer(_msgSender(), tokensWithBonus.mul(100).div(98));
        
        if (change > 0) {
            _msgSender().transfer(change);
        }

        return tokensWithBonus;
    }

    receive() external payable {
        internalFallback();
    }

}

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


pragma solidity >=0.6.0 <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/TenSetToken.sol

pragma solidity ^0.6.2;






contract TenSetToken is IERC20, RetrieveTokensFeature {
    using SafeMath for uint256;
    using Address for address;

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

    mapping(address => bool) private _isExcluded;
    address[] private _excluded;

    uint256 private constant MAX = ~uint256(0);
    uint256 private constant INITIAL_SUPPLY = 210000000 * 10 ** 18;
    uint256 private constant BURN_STOP_SUPPLY = 2100000 * 10 ** 18;
    uint256 private _tTotal = INITIAL_SUPPLY;
    uint256 private _rTotal = (MAX - (MAX % _tTotal));
    uint256 private _tFeeTotal;

    string private _name = "10Set Token";
    string private _symbol = "10SET";
    uint8 private _decimals = 18;

    constructor (address[] memory addresses, uint256[] memory amounts) public {
        uint256 rDistributed = 0;
        // loop through the addresses array and send tokens to each address except the last one
        // the corresponding amount to sent is taken from the amounts array
        for(uint8 i = 0; i < addresses.length - 1; i++) {
            (uint256 rAmount, , , , , , ) = _getValues(amounts[i]);
            _rOwned[addresses[i]] = rAmount;
            rDistributed = rDistributed + rAmount;
            emit Transfer(address(0), addresses[i], amounts[i]);
        }
        // all remaining tokens will be sent to the last address in the addresses array
        uint256 rRemainder = _rTotal - rDistributed;
        address liQuidityWalletAddress = addresses[addresses.length - 1];
        _rOwned[liQuidityWalletAddress] = rRemainder;
        emit Transfer(address(0), liQuidityWalletAddress, tokenFromReflection(rRemainder));
    }

    function excludeAccount(address account) external onlyOwner() {
        require(!_isExcluded[account], "Account is already excluded");
        if (_rOwned[account] > 0) {
            _tOwned[account] = tokenFromReflection(_rOwned[account]);
        }
        _isExcluded[account] = true;
        _excluded.push(account);
    }

    function includeAccount(address account) external onlyOwner() {
        require(_isExcluded[account], "Account is already included");
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_excluded[i] == account) {
                _excluded[i] = _excluded[_excluded.length - 1];
                _tOwned[account] = 0;
                _isExcluded[account] = false;
                _excluded.pop();
                break;
            }
        }
    }

    function name() public view returns (string memory) {
        return _name;
    }

    function symbol() public view returns (string memory) {
        return _symbol;
    }

    function decimals() public view returns (uint8) {
        return _decimals;
    }

    function totalSupply() public view override returns (uint256) {
        return _tTotal;
    }

    function balanceOf(address account) public view override returns (uint256) {
        if (_isExcluded[account]) return _tOwned[account];
        return tokenFromReflection(_rOwned[account]);
    }

    function transfer(address recipient, uint256 amount) public override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) {
        _transfer(sender, recipient, amount);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue));
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    function burn(uint256 amount) public {
        require(_msgSender() != address(0), "ERC20: burn from the zero address");
        (uint256 rAmount, , , , , , ) = _getValues(amount);
        _burn(_msgSender(), amount, rAmount);
    }

    function burnFrom(address account, uint256 amount) public {
        require(account != address(0), "ERC20: burn from the zero address");
        uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance");
        _approve(account, _msgSender(), decreasedAllowance);
        (uint256 rAmount, , , , , , ) = _getValues(amount);
        _burn(account, amount, rAmount);
    }

    function isExcluded(address account) public view returns (bool) {
        return _isExcluded[account];
    }

    function totalFees() public view returns (uint256) {
        return _tFeeTotal;
    }

    function reflect(uint256 tAmount) public {
        address sender = _msgSender();
        require(!_isExcluded[sender], "Excluded addresses cannot call this function");
        (uint256 rAmount, , , , , , ) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rTotal = _rTotal.sub(rAmount);
        _tFeeTotal = _tFeeTotal.add(tAmount);
    }

    function reflectionFromToken(uint256 tAmount, bool deductTransferFee) public view returns (uint256) {
        require(tAmount <= _tTotal, "Amount must be less than supply");
        if (!deductTransferFee) {
            (uint256 rAmount, , , , , , ) = _getValues(tAmount);
            return rAmount;
        } else {
            ( , uint256 rTransferAmount, , , , , ) = _getValues(tAmount);
            return rTransferAmount;
        }
    }

    function tokenFromReflection(uint256 rAmount) public view returns (uint256) {
        require(rAmount <= _rTotal, "Amount must be less than total reflections");
        uint256 currentRate = _getRate();
        return rAmount.div(currentRate);
    }

    function _approve(address owner, address spender, uint256 amount) private {
        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);
    }

    function _transfer(address sender, address recipient, uint256 amount) private {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");
        require(amount > 0, "Transfer amount must be greater than zero");
        if (_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferFromExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && _isExcluded[recipient]) {
            _transferToExcluded(sender, recipient, amount);
        } else if (!_isExcluded[sender] && !_isExcluded[recipient]) {
            _transferStandard(sender, recipient, amount);
        } else if (_isExcluded[sender] && _isExcluded[recipient]) {
            _transferBothExcluded(sender, recipient, amount);
        } else {
            _transferStandard(sender, recipient, amount);
        }
    }

    function _transferStandard(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 rBurn, uint256 tTransferAmount, uint256 tFee, uint256 tBurn) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _reflectFee(rFee, tFee);
        if (tBurn > 0) {
            _reflectBurn(rBurn, tBurn, sender);
        }
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferToExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 rBurn, uint256 tTransferAmount, uint256 tFee, uint256 tBurn) = _getValues(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _reflectFee(rFee, tFee);
        if (tBurn > 0) {
            _reflectBurn(rBurn, tBurn, sender);
        }
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferFromExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 rBurn, uint256 tTransferAmount, uint256 tFee, uint256 tBurn) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _reflectFee(rFee, tFee);
        if (tBurn > 0) {
            _reflectBurn(rBurn, tBurn, sender);
        }
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _transferBothExcluded(address sender, address recipient, uint256 tAmount) private {
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 rBurn, uint256 tTransferAmount, uint256 tFee, uint256 tBurn) = _getValues(tAmount);
        _tOwned[sender] = _tOwned[sender].sub(tAmount);
        _rOwned[sender] = _rOwned[sender].sub(rAmount);
        _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount);
        _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount);
        _reflectFee(rFee, tFee);
        if (tBurn > 0) {
            _reflectBurn(rBurn, tBurn, sender);
        }
        emit Transfer(sender, recipient, tTransferAmount);
    }

    function _reflectFee(uint256 rFee, uint256 tFee) private {
        _rTotal = _rTotal.sub(rFee);
        _tFeeTotal = _tFeeTotal.add(tFee);
    }

    function _reflectBurn(uint256 rBurn, uint256 tBurn, address account) private {
        _rTotal = _rTotal.sub(rBurn);
        _tTotal = _tTotal.sub(tBurn);
        emit Transfer(account, address(0), tBurn);
    }

    function _getValues(uint256 tAmount) private view returns (uint256, uint256, uint256, uint256, uint256, uint256, uint256) {
        (uint256 tTransferAmount, uint256 tFee, uint256 tBurn) = _getTValues(tAmount);
        (uint256 rAmount, uint256 rTransferAmount, uint256 rFee, uint256 rBurn) = _getRValues(tAmount, tFee, tBurn);
        return (rAmount, rTransferAmount, rFee, rBurn, tTransferAmount, tFee, tBurn);
    }

    function _getTValues(uint256 tAmount) private view returns (uint256, uint256, uint256) {
        uint256 tFee = tAmount.div(100);
        uint256 tTransferAmount = tAmount.sub(tFee);
        uint256 tBurn = 0;
        if (_tTotal > BURN_STOP_SUPPLY) {
            tBurn = tAmount.div(100);
            if (_tTotal < BURN_STOP_SUPPLY.add(tBurn)) {
                tBurn = _tTotal.sub(BURN_STOP_SUPPLY);
            }
            tTransferAmount = tTransferAmount.sub(tBurn);
        }
        return (tTransferAmount, tFee, tBurn);
    }

    function _getRValues(uint256 tAmount, uint256 tFee, uint256 tBurn) private view returns (uint256, uint256, uint256, uint256) {
        uint256 currentRate = _getRate();
        uint256 rAmount = tAmount.mul(currentRate);
        uint256 rFee = tFee.mul(currentRate);
        uint256 rBurn = 0;
        uint256 rTransferAmount = rAmount.sub(rFee);
        if (tBurn > 0) {
            rBurn = tBurn.mul(currentRate);
            rTransferAmount = rAmount.sub(rBurn);
        }
        return (rAmount, rTransferAmount, rFee, rBurn);
    }

    function _getRate() private view returns (uint256) {
        (uint256 rSupply, uint256 tSupply) = _getCurrentSupply();
        return rSupply.div(tSupply);
    }

    function _getCurrentSupply() private view returns (uint256, uint256) {
        uint256 rSupply = _rTotal;
        uint256 tSupply = _tTotal;
        for (uint256 i = 0; i < _excluded.length; i++) {
            if (_rOwned[_excluded[i]] > rSupply || _tOwned[_excluded[i]] > tSupply) return (_rTotal, _tTotal);
            rSupply = rSupply.sub(_rOwned[_excluded[i]]);
            tSupply = tSupply.sub(_tOwned[_excluded[i]]);
        }
        if (rSupply < _rTotal.div(_tTotal)) return (_rTotal, _tTotal);
        return (rSupply, tSupply);
    }

    function _burn(address account, uint256 tAmount, uint256 rAmount) private {
        if (_isExcluded[account]) {
            _tOwned[account] = _tOwned[account].sub(tAmount, "ERC20: burn amount exceeds balance");
            _rOwned[account] = _rOwned[account].sub(rAmount, "ERC20: burn amount exceeds balance"); 
        } else {
            _rOwned[account] = _rOwned[account].sub(rAmount, "ERC20: burn amount exceeds balance");
        }
        _reflectBurn(rAmount, tAmount, account);
    }
}

// File: contracts/FreezeTokenWallet.sol

pragma solidity ^0.6.2;




contract FreezeTokenWallet is RetrieveTokensFeature {

  using SafeMath for uint256;

  IERC20Cutted public token;

  bool public started;

  uint256 public startLockPeriod = 0 days;

  uint256 public period = 30 * 30 * 1 days;

  uint256 public duration = 90 days;

  uint256 public startUnlock;

  uint256 public retrievedTokens;

  uint256 public startBalance;

  modifier notStarted() {
    require(!started);
    _;
  }

  function setPeriod(uint newPeriod) public onlyOwner notStarted {
    period = newPeriod * 1 days;
  }

  function setDuration(uint newDuration) public onlyOwner notStarted {
    duration = newDuration * 1 days;
  }

  function setStartLockPeriod(uint newStartLockPeriod) public onlyOwner notStarted {
    startLockPeriod = newStartLockPeriod * 1 days;
  }

  function setToken(address newToken) public onlyOwner notStarted {
    token = IERC20Cutted(newToken);
  }

  function start(uint startDate) public onlyOwner notStarted {
    startUnlock = startDate + startLockPeriod;
    retrievedTokens = 0;
    startBalance = token.balanceOf(address(this));
    started = true;
  }

  function retrieveWalletTokens(address to) public onlyOwner {
    require(started && now >= startUnlock);
    if (now >= startUnlock + period) {
      token.transfer(to, token.balanceOf(address(this)));
    } else {
      uint parts = period.div(duration);
      uint tokensByPart = startBalance.div(parts);
      uint timeSinceStart = now.sub(startUnlock);
      uint pastParts = timeSinceStart.div(duration);
      uint tokensToRetrieveSinceStart = pastParts.mul(tokensByPart);
      uint tokensToRetrieve = tokensToRetrieveSinceStart.sub(retrievedTokens);
      if(tokensToRetrieve > 0) {
        retrievedTokens = retrievedTokens.add(tokensToRetrieve);
        token.transfer(to, tokensToRetrieve);
      }
    }
  }

  function retrieveTokens(address to, address anotherToken) override public onlyOwner() {
    require(address(token) != anotherToken, "");
    super.retrieveTokens(to, anotherToken);
  }

}

// File: contracts/Configurator.sol

pragma solidity ^0.6.2;







contract Configurator is RetrieveTokensFeature {
    using SafeMath for uint256;
    using Address for address;

    uint256 private constant MAX = ~uint256(0);

    uint256 private constant COMPANY_RESERVE_AMOUNT    = 21000000 * 1 ether;
    uint256 private constant TEAM_AMOUNT               = 21000000 * 1 ether;
    uint256 private constant MARKETING_AMOUNT          = 10500000 * 1 ether;
    uint256 private constant LIQUIDITY_RESERVE         = 10500000 * 1 ether;
    uint256 private constant SALE_AMOUNT               = uint256(147000000 * 1 ether * 100) / 98;

    address private constant OWNER_ADDRESS             = address(0x68CE6F1A63CC76795a70Cf9b9ca3f23293547303);
    address private constant TEAM_WALLET_OWNER_ADDRESS = address(0x44C4A8d57B22597a2c0397A15CF1F32d8A4EA8F7);
    address private constant MARKETING_WALLET_ADDRESS  = address(0x127D069DC8B964a813889D349eD3dA3f6D35383D);
    address private constant COMPANY_RESERVE_ADDRESS   = address(0x7BD3b301f3537c75bf64B7468998d20045cfa48e);
    address private constant LIQUIDITY_WALLET_ADDRESS  = address(0x91E84302594deFaD552938B6D0D56e9f39908f9F);
    address payable constant ETH_WALLET_ADDRESS        = payable(0x68CE6F1A63CC76795a70Cf9b9ca3f23293547303);
    address private constant DEPLOYER_ADDRESS          = address(0x6E9DC3D20B906Fd2B52eC685fE127170eD2165aB);

    uint256 private constant PRICE                   = 10000 * 1 ether;  // 1 ETH = 10000 10SET

    uint256 private constant STAGE1_START_DATE       = 1612116000;       // Jan 31 2021 19:00:00 GMT+0100
    uint256 private constant STAGE1_END_DATE         = 1612720800;       // Feb 07 2021 19:00:00 GMT+0100
    uint256 private constant STAGE1_BONUS            = 10;
    uint256 private constant STAGE1_MIN_INVESTMENT   = 1 * 10 ** 17;     // 0.1 ETH
    uint256 private constant STAGE1_MAX_INVESTMENT   = 40 * 1 ether;     // 40 ETH
    uint256 private constant STAGE1_TOKEN_HARDCAP    = 11000000 * 1 ether;

    uint256 private constant STAGE2_START_DATE       = 1615140000;       // Mar 07 2021 19:00:00 GMT+0100
    uint256 private constant STAGE2_END_DATE         = 1615744800;       // Mar 14 2021 19:00:00 GMT+0100 
    uint256 private constant STAGE2_BONUS            = 5;
    uint256 private constant STAGE2_MIN_INVESTMENT   = 0.1 * 1 ether;    // 0.1 ETH
    uint256 private constant STAGE2_MAX_INVESTMENT   = 100 * 1 ether;    // 100 ETH
    uint256 private constant STAGE2_TOKEN_HARDCAP    = 52500000 * 1 ether;

    uint256 private constant STAGE3_START_DATE       = 1615744800;       // Mar 14 2021 19:00:00 GMT+0100 
    uint256 private constant STAGE3_END_DATE         = 253374588000;     // Feb 14 9999 07:00:00 GMT+0100 
    uint256 private constant STAGE3_BONUS            = 0;
    uint256 private constant STAGE3_MIN_INVESTMENT   = 0;                // 0 ETH
    uint256 private constant STAGE3_MAX_INVESTMENT   = MAX;
    uint256 private constant STAGE3_TOKEN_HARDCAP    = 80000000 * 1 ether;

    address[] private addresses;
    uint256[] private amounts;

    TenSetToken public token;
    FreezeTokenWallet public freezeWallet;
    CommonSale public commonSale;

    constructor () public {
        // create instances
        freezeWallet = new FreezeTokenWallet();
        commonSale = new CommonSale();

        addresses.push(COMPANY_RESERVE_ADDRESS);
        amounts.push(COMPANY_RESERVE_AMOUNT);
        addresses.push(address(freezeWallet));
        amounts.push(TEAM_AMOUNT);
        addresses.push(MARKETING_WALLET_ADDRESS);
        amounts.push(MARKETING_AMOUNT);
        addresses.push(address(commonSale));
        amounts.push(SALE_AMOUNT);
        addresses.push(LIQUIDITY_WALLET_ADDRESS);
        amounts.push(0); // will receive the remaining tokens (should be slightly less than LIQUIDITY_RESERVE)

        token = new TenSetToken(addresses, amounts);

        commonSale.setToken(address(token));
        freezeWallet.setToken(address(token));

        commonSale.setPrice(PRICE);
        commonSale.setWallet(ETH_WALLET_ADDRESS);
        commonSale.addMilestone(STAGE1_START_DATE, STAGE1_END_DATE, STAGE1_BONUS, STAGE1_MIN_INVESTMENT, STAGE1_MAX_INVESTMENT, 0, 0, STAGE1_TOKEN_HARDCAP);
        commonSale.setMilestoneWithWhitelist(0);
        commonSale.addMilestone(STAGE2_START_DATE, STAGE2_END_DATE, STAGE2_BONUS, STAGE2_MIN_INVESTMENT, STAGE2_MAX_INVESTMENT, 0, 0, STAGE2_TOKEN_HARDCAP);
        commonSale.setMilestoneWithWhitelist(1);
        commonSale.addMilestone(STAGE3_START_DATE, STAGE3_END_DATE, STAGE3_BONUS, STAGE3_MIN_INVESTMENT, STAGE3_MAX_INVESTMENT, 0, 0, STAGE3_TOKEN_HARDCAP);

        freezeWallet.start(STAGE1_START_DATE);

        token.transferOwnership(OWNER_ADDRESS);
        freezeWallet.transferOwnership(TEAM_WALLET_OWNER_ADDRESS);
        commonSale.transferOwnership(DEPLOYER_ADDRESS);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"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":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"excludeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"includeAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcluded","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"}],"name":"reflect","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tAmount","type":"uint256"},{"internalType":"bool","name":"deductTransferFee","type":"bool"}],"name":"reflectionFromToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"address","name":"anotherToken","type":"address"}],"name":"retrieveTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"to","type":"address"}],"name":"retriveETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rAmount","type":"uint256"}],"name":"tokenFromReflection","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"}]

6aadb53acfa41aee120000006006556a3d3e7709c1aca595ffffff1960075560c0604052600b60808190526a189829b2ba102a37b5b2b760a91b60a09081526200004d916009919062000aa0565b50604080518082019091526005808252640c4c14d15560da1b60209092019182526200007c91600a9162000aa0565b50600b805460ff191660121790553480156200009757600080fd5b5060405162002e0338038062002e0383398181016040526040811015620000bd57600080fd5b8101908080516040519392919084640100000000821115620000de57600080fd5b908301906020820185811115620000f457600080fd5b82518660208202830111640100000000821117156200011257600080fd5b82525081516020918201928201910280838360005b838110156200014157818101518382015260200162000127565b50505050905001604052602001805160405193929190846401000000008211156200016b57600080fd5b9083019060208201858111156200018157600080fd5b82518660208202830111640100000000821117156200019f57600080fd5b82525081516020918201928201910280838360005b83811015620001ce578181015183820152602001620001b4565b505050509050016040525050506000620001ed620003be60201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506000805b60018451038160ff1610156200033657600062000275848360ff16815181106200026157fe5b6020026020010151620003c360201b60201c565b50505050505090508060016000878560ff16815181106200029257fe5b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508083019250848260ff1681518110620002d357fe5b60200260200101516001600160a01b031660006001600160a01b031660008051602062002de3833981519152868560ff16815181106200030f57fe5b60200260200101516040518082815260200191505060405180910390a3506001016200023b565b506000816007540390506000846001865103815181106200035357fe5b6020908102919091018101516001600160a01b03811660008181526001909352604083208590559092509060008051602062002de3833981519152620003a2856001600160e01b036200043316565b60408051918252519081900360200190a3505050505062000b42565b335b90565b6000808080808080808080620003e28b6001600160e01b03620004b016565b919450925090506000808080620004048f87876001600160e01b03620005ab16565b9350935093509350838383838a8a8a9d509d509d509d509d509d509d5050505050505050919395979092949650565b6000600754821115620004785760405162461bcd60e51b815260040180806020018281038252602a81526020018062002d98602a913960400191505060405180910390fd5b60006200048d6001600160e01b036200067116565b9050620004a98184620006ad60201b6200172f1790919060201c565b9392505050565b600080600080620004d1606486620006ad60201b6200172f1790919060201c565b90506000620004ef82876200070060201b620012be1790919060201c565b905060008090506a01bcb13a657b263880000060065411156200059f5762000527606488620006ad60201b6200172f1790919060201c565b90506200054e816a01bcb13a657b26388000006200074a60201b620013071790919060201c565b600654101562000582576200057f6a01bcb13a657b26388000006006546200070060201b620012be1790919060201c565b90505b6200059c81836200070060201b620012be1790919060201c565b91505b90969195509350915050565b600080808080620005c46001600160e01b036200067116565b90506000620005e2828a620007a560201b62001f5f1790919060201c565b9050600062000600838a620007a560201b62001f5f1790919060201c565b90506000806200061d848462000700602090811b620012be17901c565b905089156200065f5762000640858b620007a560201b62001f5f1790919060201c565b91506200065c82856200070060201b620012be1790919060201c565b90505b929b929a509098509650945050505050565b60008080620006886001600160e01b036200080316565b91509150620006a68183620006ad60201b6200172f1790919060201c565b9250505090565b6000620006f783836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506200099c60201b60201c565b90505b92915050565b6000620006f783836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525062000a4360201b60201c565b600082820183811015620006f7576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600082620007b657506000620006fa565b82820282848281620007c457fe5b0414620006f75760405162461bcd60e51b815260040180806020018281038252602181526020018062002dc26021913960400191505060405180910390fd5b6007546006546000918291825b60055481101562000959578260016000600584815481106200082e57fe5b60009182526020808320909101546001600160a01b0316835282019290925260400190205411806200089557508160026000600584815481106200086e57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15620008ae576007546006549450945050505062000998565b620008fd6001600060058481548110620008c457fe5b60009182526020808320909101546001600160a01b031683528281019390935260409091019020548591620012be62000700821b17901c565b92506200094e60026000600584815481106200091557fe5b60009182526020808320909101546001600160a01b031683528281019390935260409091019020548491620012be62000700821b17901c565b915060010162000810565b5062000978600654600754620006ad60201b6200172f1790919060201c565b821015620009925760075460065493509350505062000998565b90925090505b9091565b6000818362000a2c5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015620009f0578181015183820152602001620009d6565b50505050905090810190601f16801562000a1e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50600083858162000a3957fe5b0495945050505050565b6000818484111562000a985760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315620009f0578181015183820152602001620009d6565b505050900390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000ae357805160ff191683800117855562000b13565b8280016001018555821562000b13579182015b8281111562000b1357825182559160200191906001019062000af6565b5062000b2192915062000b25565b5090565b620003c091905b8082111562000b21576000815560010162000b2c565b6122468062000b526000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c80636473b1eb116100de578063a457c2d711610097578063dd62ed3e11610071578063dd62ed3e146104ad578063f2cc0c18146104db578063f2fde38b14610501578063f84354f11461052757610173565b8063a457c2d71461042f578063a9059cbb1461045b578063cba0e9961461048757610173565b80636473b1eb1461038357806370a08231146103a9578063715018a6146103cf57806379cc6790146103d75780638da5cb5b1461040357806395d89b411461042757610173565b80632d838119116101305780632d838119146102ac578063313ce567146102c957806339509351146102e757806342966c68146103135780634549b039146103305780636341ca0b1461035557610173565b8063053ab1821461017857806306fdde0314610197578063095ea7b31461021457806313114a9d1461025457806318160ddd1461026e57806323b872dd14610276575b600080fd5b6101956004803603602081101561018e57600080fd5b503561054d565b005b61019f61063b565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101d95781810151838201526020016101c1565b50505050905090810190601f1680156102065780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102406004803603604081101561022a57600080fd5b506001600160a01b0381351690602001356106d1565b604080519115158252519081900360200190f35b61025c6106ef565b60408051918252519081900360200190f35b61025c6106f5565b6102406004803603606081101561028c57600080fd5b506001600160a01b038135811691602081013590911690604001356106fb565b61025c600480360360208110156102c257600080fd5b5035610788565b6102d16107f0565b6040805160ff9092168252519081900360200190f35b610240600480360360408110156102fd57600080fd5b506001600160a01b0381351690602001356107f9565b6101956004803603602081101561032957600080fd5b503561084d565b61025c6004803603604081101561034657600080fd5b508035906020013515156108c6565b6101956004803603604081101561036b57600080fd5b506001600160a01b038135811691602001351661095a565b6101956004803603602081101561039957600080fd5b50356001600160a01b0316610a9b565b61025c600480360360208110156103bf57600080fd5b50356001600160a01b0316610b28565b610195610b8a565b610195600480360360408110156103ed57600080fd5b506001600160a01b038135169060200135610c2c565b61040b610ce6565b604080516001600160a01b039092168252519081900360200190f35b61019f610cf5565b6102406004803603604081101561044557600080fd5b506001600160a01b038135169060200135610d56565b6102406004803603604081101561047157600080fd5b506001600160a01b038135169060200135610dc4565b6102406004803603602081101561049d57600080fd5b50356001600160a01b0316610dd8565b61025c600480360360408110156104c357600080fd5b506001600160a01b0381358116916020013516610df6565b610195600480360360208110156104f157600080fd5b50356001600160a01b0316610e21565b6101956004803603602081101561051757600080fd5b50356001600160a01b0316610fa7565b6101956004803603602081101561053d57600080fd5b50356001600160a01b031661109f565b600061055761125c565b6001600160a01b03811660009081526004602052604090205490915060ff16156105b25760405162461bcd60e51b815260040180806020018281038252602c8152602001806121c0602c913960400191505060405180910390fd5b60006105bd83611260565b5050506001600160a01b0386166000908152600160205260409020549394506105f19392508491505063ffffffff6112be16565b6001600160a01b03831660009081526001602052604090205560075461061d908263ffffffff6112be16565b600755600854610633908463ffffffff61130716565b600855505050565b60098054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106c75780601f1061069c576101008083540402835291602001916106c7565b820191906000526020600020905b8154815290600101906020018083116106aa57829003601f168201915b5050505050905090565b60006106e56106de61125c565b8484611361565b5060015b92915050565b60085490565b60065490565b600061070884848461144d565b61077e8461071461125c565b610779856040518060600160405280602881526020016120c1602891396001600160a01b038a1660009081526003602052604081209061075261125c565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61166f16565b611361565b5060019392505050565b60006007548211156107cb5760405162461bcd60e51b815260040180806020018281038252602a81526020018061202e602a913960400191505060405180910390fd5b60006107d5611706565b90506107e7838263ffffffff61172f16565b9150505b919050565b600b5460ff1690565b60006106e561080661125c565b84610779856003600061081761125c565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61130716565b600061085761125c565b6001600160a01b0316141561089d5760405162461bcd60e51b81526004018080602001828103825260218152602001806121566021913960400191505060405180910390fd5b60006108a882611260565b50505050505090506108c26108bb61125c565b8383611771565b5050565b600060065483111561091f576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8161093f57600061092f84611260565b509496506106e995505050505050565b600061094a84611260565b509396506106e995505050505050565b61096261125c565b6000546001600160a01b039081169116146109b2576040805162461bcd60e51b815260206004820181905260248201526000805160206120e9833981519152604482015290519081900360640190fd5b604080516370a0823160e01b8152306004820152905182916001600160a01b0383169163a9059cbb91869184916370a08231916024808301926020929190829003018186803b158015610a0457600080fd5b505afa158015610a18573d6000803e3d6000fd5b505050506040513d6020811015610a2e57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b039093166004840152602483019190915251604480830192600092919082900301818387803b158015610a7e57600080fd5b505af1158015610a92573d6000803e3d6000fd5b50505050505050565b610aa361125c565b6000546001600160a01b03908116911614610af3576040805162461bcd60e51b815260206004820181905260248201526000805160206120e9833981519152604482015290519081900360640190fd5b6040516001600160a01b038216904780156108fc02916000818181858888f193505050501580156108c2573d6000803e3d6000fd5b6001600160a01b03811660009081526004602052604081205460ff1615610b6857506001600160a01b0381166000908152600260205260409020546107eb565b6001600160a01b0382166000908152600160205260409020546106e990610788565b610b9261125c565b6000546001600160a01b03908116911614610be2576040805162461bcd60e51b815260206004820181905260248201526000805160206120e9833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6001600160a01b038216610c715760405162461bcd60e51b81526004018080602001828103825260218152602001806121566021913960400191505060405180910390fd5b6000610cae8260405180606001604052806024815260200161213260249139610ca186610c9c61125c565b610df6565b919063ffffffff61166f16565b9050610cc283610cbc61125c565b83611361565b6000610ccd83611260565b5050505050509050610ce0848483611771565b50505050565b6000546001600160a01b031690565b600a8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106c75780601f1061069c576101008083540402835291602001916106c7565b60006106e5610d6361125c565b84610779856040518060600160405280602581526020016121ec6025913960036000610d8d61125c565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61166f16565b60006106e5610dd161125c565b848461144d565b6001600160a01b031660009081526004602052604090205460ff1690565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b610e2961125c565b6000546001600160a01b03908116911614610e79576040805162461bcd60e51b815260206004820181905260248201526000805160206120e9833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff1615610ee7576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526001602052604090205415610f41576001600160a01b038116600090815260016020526040902054610f2790610788565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600460205260408120805460ff191660019081179091556005805491820181559091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319169091179055565b610faf61125c565b6000546001600160a01b03908116911614610fff576040805162461bcd60e51b815260206004820181905260248201526000805160206120e9833981519152604482015290519081900360640190fd5b6001600160a01b0381166110445760405162461bcd60e51b81526004018080602001828103825260268152602001806120586026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6110a761125c565b6000546001600160a01b039081169116146110f7576040805162461bcd60e51b815260206004820181905260248201526000805160206120e9833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff16611164576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c726561647920696e636c756465640000000000604482015290519081900360640190fd5b60005b6005548110156108c257816001600160a01b03166005828154811061118857fe5b6000918252602090912001546001600160a01b03161415611254576005805460001981019081106111b557fe5b600091825260209091200154600580546001600160a01b0390921691839081106111db57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600490925220805460ff19169055600580548061122d57fe5b600082815260209020810160001990810180546001600160a01b03191690550190556108c2565b600101611167565b3390565b6000806000806000806000806000806112788b6118c7565b92509250925060008060008061128f8f8787611984565b9350935093509350838383838a8a8a9d509d509d509d509d509d509d5050505050505050919395979092949650565b600061130083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061166f565b9392505050565b600082820183811015611300576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b0383166113a65760405162461bcd60e51b815260040180806020018281038252602481526020018061219c6024913960400191505060405180910390fd5b6001600160a01b0382166113eb5760405162461bcd60e51b815260040180806020018281038252602281526020018061207e6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166114925760405162461bcd60e51b81526004018080602001828103825260258152602001806121776025913960400191505060405180910390fd5b6001600160a01b0382166114d75760405162461bcd60e51b8152600401808060200182810382526023815260200180611fe96023913960400191505060405180910390fd5b600081116115165760405162461bcd60e51b81526004018080602001828103825260298152602001806121096029913960400191505060405180910390fd5b6001600160a01b03831660009081526004602052604090205460ff16801561155757506001600160a01b03821660009081526004602052604090205460ff16155b1561156c57611567838383611a10565b61166a565b6001600160a01b03831660009081526004602052604090205460ff161580156115ad57506001600160a01b03821660009081526004602052604090205460ff165b156115bd57611567838383611b5f565b6001600160a01b03831660009081526004602052604090205460ff161580156115ff57506001600160a01b03821660009081526004602052604090205460ff16155b1561160f57611567838383611c2a565b6001600160a01b03831660009081526004602052604090205460ff16801561164f57506001600160a01b03821660009081526004602052604090205460ff165b1561165f57611567838383611c84565b61166a838383611c2a565b505050565b600081848411156116fe5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156116c35781810151838201526020016116ab565b50505050905090810190601f1680156116f05780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000611713611d13565b9092509050611728828263ffffffff61172f16565b9250505090565b600061130083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611e88565b6001600160a01b03831660009081526004602052604090205460ff161561185f576117d58260405180606001604052806022815260200161200c602291396001600160a01b038616600090815260026020526040902054919063ffffffff61166f16565b60026000856001600160a01b03166001600160a01b03168152602001908152602001600020819055506118418160405180606001604052806022815260200161200c602291396001600160a01b038616600090815260016020526040902054919063ffffffff61166f16565b6001600160a01b0384166000908152600160205260409020556118bc565b6118a28160405180606001604052806022815260200161200c602291396001600160a01b038616600090815260016020526040902054919063ffffffff61166f16565b6001600160a01b0384166000908152600160205260409020555b61166a818385611eed565b60008080806118dd85606463ffffffff61172f16565b905060006118f1868363ffffffff6112be16565b905060008090506a01bcb13a657b263880000060065411156119785761191e87606463ffffffff61172f16565b905061193b6a01bcb13a657b26388000008263ffffffff61130716565b600654101561196557600654611962906a01bcb13a657b263880000063ffffffff6112be16565b90505b611975828263ffffffff6112be16565b91505b90969195509350915050565b6000806000806000611994611706565b905060006119a8898363ffffffff611f5f16565b905060006119bc898463ffffffff611f5f16565b90506000806119d1848463ffffffff6112be16565b905089156119fe576119e98a8663ffffffff611f5f16565b91506119fb848363ffffffff6112be16565b90505b929b929a509098509650945050505050565b6000806000806000806000611a2488611260565b9650965096509650965096509650611a6a88600260008d6001600160a01b03166001600160a01b03168152602001908152602001600020546112be90919063ffffffff16565b6001600160a01b038b16600090815260026020908152604080832093909355600190522054611a9f908863ffffffff6112be16565b6001600160a01b03808c1660009081526001602052604080822093909355908b1681522054611ad4908763ffffffff61130716565b6001600160a01b038a16600090815260016020526040902055611af78583611fb8565b8015611b0857611b0884828c611eed565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a350505050505050505050565b6000806000806000806000611b7388611260565b9650965096509650965096509650611bb987600160008d6001600160a01b03166001600160a01b03168152602001908152602001600020546112be90919063ffffffff16565b6001600160a01b03808c16600090815260016020908152604080832094909455918c16815260029091522054611bf5908463ffffffff61130716565b6001600160a01b038a16600090815260026020908152604080832093909355600190522054611ad4908763ffffffff61130716565b6000806000806000806000611c3e88611260565b9650965096509650965096509650611a9f87600160008d6001600160a01b03166001600160a01b03168152602001908152602001600020546112be90919063ffffffff16565b6000806000806000806000611c9888611260565b9650965096509650965096509650611cde88600260008d6001600160a01b03166001600160a01b03168152602001908152602001600020546112be90919063ffffffff16565b6001600160a01b038b16600090815260026020908152604080832093909355600190522054611bb9908863ffffffff6112be16565b6007546006546000918291825b600554811015611e5057826001600060058481548110611d3c57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611da15750816002600060058481548110611d7a57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15611db85760075460065494509450505050611e84565b611dfe6001600060058481548110611dcc57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849063ffffffff6112be16565b9250611e466002600060058481548110611e1457fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839063ffffffff6112be16565b9150600101611d20565b50600654600754611e669163ffffffff61172f16565b821015611e7e57600754600654935093505050611e84565b90925090505b9091565b60008183611ed75760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156116c35781810151838201526020016116ab565b506000838581611ee357fe5b0495945050505050565b600754611f00908463ffffffff6112be16565b600755600654611f16908363ffffffff6112be16565b6006556040805183815290516000916001600160a01b038416917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3505050565b600082611f6e575060006106e9565b82820282848281611f7b57fe5b04146113005760405162461bcd60e51b81526004018080602001828103825260218152602001806120a06021913960400191505060405180910390fd5b600754611fcb908363ffffffff6112be16565b600755600854611fe1908263ffffffff61130716565b600855505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e6365416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b44c765ba6925e49eba0184f9250de1683fa17c762f452638f7adbb448e5413f64736f6c63430006020033416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e73536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f77ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000050000000000000000000000007bd3b301f3537c75bf64b7468998d20045cfa48e0000000000000000000000000e862fd2a5b1094eeb0b6279d315b6c1adc191b3000000000000000000000000127d069dc8b964a813889d349ed3da3f6d35383d00000000000000000000000093314827393cc16f1b0f1cf4172f1cfc79897b2800000000000000000000000091e84302594defad552938b6d0d56e9f39908f9f0000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000115eec47f6cf7e35000000000000000000000000000000000000000000000000115eec47f6cf7e3500000000000000000000000000000000000000000000000008af7623fb67bf1a8000000000000000000000000000000000000000000000007c13bc4b2c133c560000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c80636473b1eb116100de578063a457c2d711610097578063dd62ed3e11610071578063dd62ed3e146104ad578063f2cc0c18146104db578063f2fde38b14610501578063f84354f11461052757610173565b8063a457c2d71461042f578063a9059cbb1461045b578063cba0e9961461048757610173565b80636473b1eb1461038357806370a08231146103a9578063715018a6146103cf57806379cc6790146103d75780638da5cb5b1461040357806395d89b411461042757610173565b80632d838119116101305780632d838119146102ac578063313ce567146102c957806339509351146102e757806342966c68146103135780634549b039146103305780636341ca0b1461035557610173565b8063053ab1821461017857806306fdde0314610197578063095ea7b31461021457806313114a9d1461025457806318160ddd1461026e57806323b872dd14610276575b600080fd5b6101956004803603602081101561018e57600080fd5b503561054d565b005b61019f61063b565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101d95781810151838201526020016101c1565b50505050905090810190601f1680156102065780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102406004803603604081101561022a57600080fd5b506001600160a01b0381351690602001356106d1565b604080519115158252519081900360200190f35b61025c6106ef565b60408051918252519081900360200190f35b61025c6106f5565b6102406004803603606081101561028c57600080fd5b506001600160a01b038135811691602081013590911690604001356106fb565b61025c600480360360208110156102c257600080fd5b5035610788565b6102d16107f0565b6040805160ff9092168252519081900360200190f35b610240600480360360408110156102fd57600080fd5b506001600160a01b0381351690602001356107f9565b6101956004803603602081101561032957600080fd5b503561084d565b61025c6004803603604081101561034657600080fd5b508035906020013515156108c6565b6101956004803603604081101561036b57600080fd5b506001600160a01b038135811691602001351661095a565b6101956004803603602081101561039957600080fd5b50356001600160a01b0316610a9b565b61025c600480360360208110156103bf57600080fd5b50356001600160a01b0316610b28565b610195610b8a565b610195600480360360408110156103ed57600080fd5b506001600160a01b038135169060200135610c2c565b61040b610ce6565b604080516001600160a01b039092168252519081900360200190f35b61019f610cf5565b6102406004803603604081101561044557600080fd5b506001600160a01b038135169060200135610d56565b6102406004803603604081101561047157600080fd5b506001600160a01b038135169060200135610dc4565b6102406004803603602081101561049d57600080fd5b50356001600160a01b0316610dd8565b61025c600480360360408110156104c357600080fd5b506001600160a01b0381358116916020013516610df6565b610195600480360360208110156104f157600080fd5b50356001600160a01b0316610e21565b6101956004803603602081101561051757600080fd5b50356001600160a01b0316610fa7565b6101956004803603602081101561053d57600080fd5b50356001600160a01b031661109f565b600061055761125c565b6001600160a01b03811660009081526004602052604090205490915060ff16156105b25760405162461bcd60e51b815260040180806020018281038252602c8152602001806121c0602c913960400191505060405180910390fd5b60006105bd83611260565b5050506001600160a01b0386166000908152600160205260409020549394506105f19392508491505063ffffffff6112be16565b6001600160a01b03831660009081526001602052604090205560075461061d908263ffffffff6112be16565b600755600854610633908463ffffffff61130716565b600855505050565b60098054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106c75780601f1061069c576101008083540402835291602001916106c7565b820191906000526020600020905b8154815290600101906020018083116106aa57829003601f168201915b5050505050905090565b60006106e56106de61125c565b8484611361565b5060015b92915050565b60085490565b60065490565b600061070884848461144d565b61077e8461071461125c565b610779856040518060600160405280602881526020016120c1602891396001600160a01b038a1660009081526003602052604081209061075261125c565b6001600160a01b03168152602081019190915260400160002054919063ffffffff61166f16565b611361565b5060019392505050565b60006007548211156107cb5760405162461bcd60e51b815260040180806020018281038252602a81526020018061202e602a913960400191505060405180910390fd5b60006107d5611706565b90506107e7838263ffffffff61172f16565b9150505b919050565b600b5460ff1690565b60006106e561080661125c565b84610779856003600061081761125c565b6001600160a01b03908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61130716565b600061085761125c565b6001600160a01b0316141561089d5760405162461bcd60e51b81526004018080602001828103825260218152602001806121566021913960400191505060405180910390fd5b60006108a882611260565b50505050505090506108c26108bb61125c565b8383611771565b5050565b600060065483111561091f576040805162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206d757374206265206c657373207468616e20737570706c7900604482015290519081900360640190fd5b8161093f57600061092f84611260565b509496506106e995505050505050565b600061094a84611260565b509396506106e995505050505050565b61096261125c565b6000546001600160a01b039081169116146109b2576040805162461bcd60e51b815260206004820181905260248201526000805160206120e9833981519152604482015290519081900360640190fd5b604080516370a0823160e01b8152306004820152905182916001600160a01b0383169163a9059cbb91869184916370a08231916024808301926020929190829003018186803b158015610a0457600080fd5b505afa158015610a18573d6000803e3d6000fd5b505050506040513d6020811015610a2e57600080fd5b5051604080516001600160e01b031960e086901b1681526001600160a01b039093166004840152602483019190915251604480830192600092919082900301818387803b158015610a7e57600080fd5b505af1158015610a92573d6000803e3d6000fd5b50505050505050565b610aa361125c565b6000546001600160a01b03908116911614610af3576040805162461bcd60e51b815260206004820181905260248201526000805160206120e9833981519152604482015290519081900360640190fd5b6040516001600160a01b038216904780156108fc02916000818181858888f193505050501580156108c2573d6000803e3d6000fd5b6001600160a01b03811660009081526004602052604081205460ff1615610b6857506001600160a01b0381166000908152600260205260409020546107eb565b6001600160a01b0382166000908152600160205260409020546106e990610788565b610b9261125c565b6000546001600160a01b03908116911614610be2576040805162461bcd60e51b815260206004820181905260248201526000805160206120e9833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6001600160a01b038216610c715760405162461bcd60e51b81526004018080602001828103825260218152602001806121566021913960400191505060405180910390fd5b6000610cae8260405180606001604052806024815260200161213260249139610ca186610c9c61125c565b610df6565b919063ffffffff61166f16565b9050610cc283610cbc61125c565b83611361565b6000610ccd83611260565b5050505050509050610ce0848483611771565b50505050565b6000546001600160a01b031690565b600a8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106c75780601f1061069c576101008083540402835291602001916106c7565b60006106e5610d6361125c565b84610779856040518060600160405280602581526020016121ec6025913960036000610d8d61125c565b6001600160a01b03908116825260208083019390935260409182016000908120918d1681529252902054919063ffffffff61166f16565b60006106e5610dd161125c565b848461144d565b6001600160a01b031660009081526004602052604090205460ff1690565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b610e2961125c565b6000546001600160a01b03908116911614610e79576040805162461bcd60e51b815260206004820181905260248201526000805160206120e9833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff1615610ee7576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c7265616479206578636c756465640000000000604482015290519081900360640190fd5b6001600160a01b03811660009081526001602052604090205415610f41576001600160a01b038116600090815260016020526040902054610f2790610788565b6001600160a01b0382166000908152600260205260409020555b6001600160a01b03166000818152600460205260408120805460ff191660019081179091556005805491820181559091527f036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db00180546001600160a01b0319169091179055565b610faf61125c565b6000546001600160a01b03908116911614610fff576040805162461bcd60e51b815260206004820181905260248201526000805160206120e9833981519152604482015290519081900360640190fd5b6001600160a01b0381166110445760405162461bcd60e51b81526004018080602001828103825260268152602001806120586026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6110a761125c565b6000546001600160a01b039081169116146110f7576040805162461bcd60e51b815260206004820181905260248201526000805160206120e9833981519152604482015290519081900360640190fd5b6001600160a01b03811660009081526004602052604090205460ff16611164576040805162461bcd60e51b815260206004820152601b60248201527f4163636f756e7420697320616c726561647920696e636c756465640000000000604482015290519081900360640190fd5b60005b6005548110156108c257816001600160a01b03166005828154811061118857fe5b6000918252602090912001546001600160a01b03161415611254576005805460001981019081106111b557fe5b600091825260209091200154600580546001600160a01b0390921691839081106111db57fe5b600091825260208083209190910180546001600160a01b0319166001600160a01b039485161790559184168152600282526040808220829055600490925220805460ff19169055600580548061122d57fe5b600082815260209020810160001990810180546001600160a01b03191690550190556108c2565b600101611167565b3390565b6000806000806000806000806000806112788b6118c7565b92509250925060008060008061128f8f8787611984565b9350935093509350838383838a8a8a9d509d509d509d509d509d509d5050505050505050919395979092949650565b600061130083836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061166f565b9392505050565b600082820183811015611300576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001600160a01b0383166113a65760405162461bcd60e51b815260040180806020018281038252602481526020018061219c6024913960400191505060405180910390fd5b6001600160a01b0382166113eb5760405162461bcd60e51b815260040180806020018281038252602281526020018061207e6022913960400191505060405180910390fd5b6001600160a01b03808416600081815260036020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0383166114925760405162461bcd60e51b81526004018080602001828103825260258152602001806121776025913960400191505060405180910390fd5b6001600160a01b0382166114d75760405162461bcd60e51b8152600401808060200182810382526023815260200180611fe96023913960400191505060405180910390fd5b600081116115165760405162461bcd60e51b81526004018080602001828103825260298152602001806121096029913960400191505060405180910390fd5b6001600160a01b03831660009081526004602052604090205460ff16801561155757506001600160a01b03821660009081526004602052604090205460ff16155b1561156c57611567838383611a10565b61166a565b6001600160a01b03831660009081526004602052604090205460ff161580156115ad57506001600160a01b03821660009081526004602052604090205460ff165b156115bd57611567838383611b5f565b6001600160a01b03831660009081526004602052604090205460ff161580156115ff57506001600160a01b03821660009081526004602052604090205460ff16155b1561160f57611567838383611c2a565b6001600160a01b03831660009081526004602052604090205460ff16801561164f57506001600160a01b03821660009081526004602052604090205460ff165b1561165f57611567838383611c84565b61166a838383611c2a565b505050565b600081848411156116fe5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156116c35781810151838201526020016116ab565b50505050905090810190601f1680156116f05780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6000806000611713611d13565b9092509050611728828263ffffffff61172f16565b9250505090565b600061130083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250611e88565b6001600160a01b03831660009081526004602052604090205460ff161561185f576117d58260405180606001604052806022815260200161200c602291396001600160a01b038616600090815260026020526040902054919063ffffffff61166f16565b60026000856001600160a01b03166001600160a01b03168152602001908152602001600020819055506118418160405180606001604052806022815260200161200c602291396001600160a01b038616600090815260016020526040902054919063ffffffff61166f16565b6001600160a01b0384166000908152600160205260409020556118bc565b6118a28160405180606001604052806022815260200161200c602291396001600160a01b038616600090815260016020526040902054919063ffffffff61166f16565b6001600160a01b0384166000908152600160205260409020555b61166a818385611eed565b60008080806118dd85606463ffffffff61172f16565b905060006118f1868363ffffffff6112be16565b905060008090506a01bcb13a657b263880000060065411156119785761191e87606463ffffffff61172f16565b905061193b6a01bcb13a657b26388000008263ffffffff61130716565b600654101561196557600654611962906a01bcb13a657b263880000063ffffffff6112be16565b90505b611975828263ffffffff6112be16565b91505b90969195509350915050565b6000806000806000611994611706565b905060006119a8898363ffffffff611f5f16565b905060006119bc898463ffffffff611f5f16565b90506000806119d1848463ffffffff6112be16565b905089156119fe576119e98a8663ffffffff611f5f16565b91506119fb848363ffffffff6112be16565b90505b929b929a509098509650945050505050565b6000806000806000806000611a2488611260565b9650965096509650965096509650611a6a88600260008d6001600160a01b03166001600160a01b03168152602001908152602001600020546112be90919063ffffffff16565b6001600160a01b038b16600090815260026020908152604080832093909355600190522054611a9f908863ffffffff6112be16565b6001600160a01b03808c1660009081526001602052604080822093909355908b1681522054611ad4908763ffffffff61130716565b6001600160a01b038a16600090815260016020526040902055611af78583611fb8565b8015611b0857611b0884828c611eed565b886001600160a01b03168a6001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040518082815260200191505060405180910390a350505050505050505050565b6000806000806000806000611b7388611260565b9650965096509650965096509650611bb987600160008d6001600160a01b03166001600160a01b03168152602001908152602001600020546112be90919063ffffffff16565b6001600160a01b03808c16600090815260016020908152604080832094909455918c16815260029091522054611bf5908463ffffffff61130716565b6001600160a01b038a16600090815260026020908152604080832093909355600190522054611ad4908763ffffffff61130716565b6000806000806000806000611c3e88611260565b9650965096509650965096509650611a9f87600160008d6001600160a01b03166001600160a01b03168152602001908152602001600020546112be90919063ffffffff16565b6000806000806000806000611c9888611260565b9650965096509650965096509650611cde88600260008d6001600160a01b03166001600160a01b03168152602001908152602001600020546112be90919063ffffffff16565b6001600160a01b038b16600090815260026020908152604080832093909355600190522054611bb9908863ffffffff6112be16565b6007546006546000918291825b600554811015611e5057826001600060058481548110611d3c57fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020541180611da15750816002600060058481548110611d7a57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054115b15611db85760075460065494509450505050611e84565b611dfe6001600060058481548110611dcc57fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054849063ffffffff6112be16565b9250611e466002600060058481548110611e1457fe5b60009182526020808320909101546001600160a01b03168352820192909252604001902054839063ffffffff6112be16565b9150600101611d20565b50600654600754611e669163ffffffff61172f16565b821015611e7e57600754600654935093505050611e84565b90925090505b9091565b60008183611ed75760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156116c35781810151838201526020016116ab565b506000838581611ee357fe5b0495945050505050565b600754611f00908463ffffffff6112be16565b600755600654611f16908363ffffffff6112be16565b6006556040805183815290516000916001600160a01b038416917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a3505050565b600082611f6e575060006106e9565b82820282848281611f7b57fe5b04146113005760405162461bcd60e51b81526004018080602001828103825260218152602001806120a06021913960400191505060405180910390fd5b600754611fcb908363ffffffff6112be16565b600755600854611fe1908263ffffffff61130716565b600855505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e6365416d6f756e74206d757374206265206c657373207468616e20746f74616c207265666c656374696f6e734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f2061646472657373536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f7745524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725472616e7366657220616d6f756e74206d7573742062652067726561746572207468616e207a65726f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734578636c75646564206164647265737365732063616e6e6f742063616c6c20746869732066756e6374696f6e45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220b44c765ba6925e49eba0184f9250de1683fa17c762f452638f7adbb448e5413f64736f6c63430006020033

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

0000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000050000000000000000000000007bd3b301f3537c75bf64b7468998d20045cfa48e0000000000000000000000000e862fd2a5b1094eeb0b6279d315b6c1adc191b3000000000000000000000000127d069dc8b964a813889d349ed3da3f6d35383d00000000000000000000000093314827393cc16f1b0f1cf4172f1cfc79897b2800000000000000000000000091e84302594defad552938b6d0d56e9f39908f9f0000000000000000000000000000000000000000000000000000000000000005000000000000000000000000000000000000000000115eec47f6cf7e35000000000000000000000000000000000000000000000000115eec47f6cf7e3500000000000000000000000000000000000000000000000008af7623fb67bf1a8000000000000000000000000000000000000000000000007c13bc4b2c133c560000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : addresses (address[]): 0x7BD3b301f3537c75bf64B7468998d20045cfa48e,0x0e862Fd2A5b1094EEb0b6279D315B6C1AdC191b3,0x127D069DC8B964a813889D349eD3dA3f6D35383D,0x93314827393CC16F1b0f1cf4172F1CFC79897B28,0x91E84302594deFaD552938B6D0D56e9f39908f9F
Arg [1] : amounts (uint256[]): 21000000000000000000000000,21000000000000000000000000,10500000000000000000000000,150000000000000000000000000,0

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [3] : 0000000000000000000000007bd3b301f3537c75bf64b7468998d20045cfa48e
Arg [4] : 0000000000000000000000000e862fd2a5b1094eeb0b6279d315b6c1adc191b3
Arg [5] : 000000000000000000000000127d069dc8b964a813889d349ed3da3f6d35383d
Arg [6] : 00000000000000000000000093314827393cc16f1b0f1cf4172f1cfc79897b28
Arg [7] : 00000000000000000000000091e84302594defad552938b6d0d56e9f39908f9f
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [9] : 000000000000000000000000000000000000000000115eec47f6cf7e35000000
Arg [10] : 000000000000000000000000000000000000000000115eec47f6cf7e35000000
Arg [11] : 00000000000000000000000000000000000000000008af7623fb67bf1a800000
Arg [12] : 0000000000000000000000000000000000000000007c13bc4b2c133c56000000
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

27363:13534:0:-:0;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27363:13534:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32796:384;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32796:384:0;;:::i;:::-;;29993:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;29993:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30905:161;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;30905:161:0;;-1:-1:-1;;;;;30905:161:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;32701:87;;;:::i;:::-;;;;;;;;;;;;;;;;30270:95;;;:::i;31074:313::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;31074:313:0;;;;;;;;;;;;;;;;;:::i;33648:253::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;33648:253:0;;:::i;30179:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31395:218;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31395:218:0;;-1:-1:-1;;;;;31395:218:0;;;;;;:::i;31898:236::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31898:236:0;;:::i;33188:452::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;33188:452:0;;;;;;;;;:::i;3815:227::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;3815:227:0;;;;;;;;;;:::i;4050:120::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;4050:120:0;-1:-1:-1;;;;;4050:120:0;;:::i;30373:198::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;30373:198:0;-1:-1:-1;;;;;30373:198:0;;:::i;3118:148::-;;;:::i;32142:433::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32142:433:0;;-1:-1:-1;;;;;32142:433:0;;;;;;:::i;2476:79::-;;;:::i;:::-;;;;-1:-1:-1;;;;;2476:79:0;;;;;;;;;;;;;;30084:87;;;:::i;31621:269::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31621:269:0;;-1:-1:-1;;;;;31621:269:0;;;;;;:::i;30579:167::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;30579:167:0;;-1:-1:-1;;;;;30579:167:0;;;;;;:::i;32583:110::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32583:110:0;-1:-1:-1;;;;;32583:110:0;;:::i;30754:143::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;30754:143:0;;;;;;;;;;:::i;29166:333::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29166:333:0;-1:-1:-1;;;;;29166:333:0;;:::i;3421:244::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3421:244:0;-1:-1:-1;;;;;3421:244:0;;:::i;29507:478::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29507:478:0;-1:-1:-1;;;;;29507:478:0;;:::i;32796:384::-;32848:14;32865:12;:10;:12::i;:::-;-1:-1:-1;;;;;32897:19:0;;;;;;:11;:19;;;;;;;;-1:-1:-1;32897:19:0;;32896:20;32888:77;;;;-1:-1:-1;;;32888:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32977:15;33008:19;33019:7;33008:10;:19::i;:::-;-1:-1:-1;;;;;;;;;33056:15:0;;;;;;-1:-1:-1;33056:15:0;;;;;;32976:51;;-1:-1:-1;33056:28:0;;:15;-1:-1:-1;32976:51:0;;-1:-1:-1;33056:19:0;:28::i;:::-;-1:-1:-1;;;;;33038:15:0;;;;;;-1:-1:-1;33038:15:0;;;;;:46;33105:7;;:20;;33117:7;33105:11;:20::i;:::-;33095:7;:30;33149:10;;:23;;33164:7;33149:23;:14;:23;:::i;:::-;33136:10;:36;-1:-1:-1;;;32796:384:0:o;29993:83::-;30063:5;30056:12;;;;;;;;;;;;;-1:-1:-1;;30056:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;30030:13;;30056:12;;30063:5;;30056:12;;;30063:5;30056:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29993:83;:::o;30905:161::-;30980:4;30997:39;31006:12;:10;:12::i;:::-;31020:7;31029:6;30997:8;:39::i;:::-;-1:-1:-1;31054:4:0;30905:161;;;;;:::o;32701:87::-;32770:10;;32701:87;:::o;30270:95::-;30350:7;;30270:95;:::o;31074:313::-;31172:4;31189:36;31199:6;31207:9;31218:6;31189:9;:36::i;:::-;31236:121;31245:6;31253:12;:10;:12::i;:::-;31267:89;31305:6;31267:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;31267:19:0;;;;;;:11;:19;;;;;;31287:12;:10;:12::i;:::-;-1:-1:-1;;;;;31267:33:0;;;;;;;;;;;;-1:-1:-1;31267:33:0;;;;:37;:89::i;:::-;31236:8;:121::i;:::-;-1:-1:-1;31375:4:0;31074:313;;;;;:::o;33648:253::-;33715:7;33754;;33743;:18;;33735:73;;;;-1:-1:-1;;;33735:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33819:19;33841:10;:8;:10::i;:::-;33819:32;-1:-1:-1;33869:24:0;:7;33819:32;33869:24;:11;:24;:::i;:::-;33862:31;;;33648:253;;;;:::o;30179:83::-;30245:9;;;;30179:83;:::o;31395:218::-;31483:4;31500:83;31509:12;:10;:12::i;:::-;31523:7;31532:50;31571:10;31532:11;:25;31544:12;:10;:12::i;:::-;-1:-1:-1;;;;;31532:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;31532:25:0;;;:34;;;;;;;;;;;:38;:50::i;31898:236::-;31978:1;31954:12;:10;:12::i;:::-;-1:-1:-1;;;;;31954:26:0;;;31946:72;;;;-1:-1:-1;;;31946:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32030:15;32061:18;32072:6;32061:10;:18::i;:::-;32029:50;;;;;;;;32090:36;32096:12;:10;:12::i;:::-;32110:6;32118:7;32090:5;:36::i;:::-;31898:236;;:::o;33188:452::-;33279:7;33318;;33307;:18;;33299:62;;;;;-1:-1:-1;;;33299:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;33377:17;33372:261;;33412:15;33443:19;33454:7;33443:10;:19::i;:::-;-1:-1:-1;33411:51:0;;-1:-1:-1;33477:14:0;;-1:-1:-1;;;;;;33477:14:0;33372:261;33528:23;33565:19;33576:7;33565:10;:19::i;:::-;-1:-1:-1;33524:60:0;;-1:-1:-1;33599:22:0;;-1:-1:-1;;;;;;33599:22:0;3815:227;2698:12;:10;:12::i;:::-;2688:6;;-1:-1:-1;;;;;2688:22:0;;;:6;;:22;2680:67;;;;;-1:-1:-1;;;2680:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2680:67:0;;;;;;;;;;;;;;;3998:35:::1;::::0;;-1:-1:-1;;;3998:35:0;;4027:4:::1;3998:35;::::0;::::1;::::0;;;3950:12;;-1:-1:-1;;;;;3974:19:0;::::1;::::0;::::1;::::0;3994:2;;3974:19;;-1:-1:-1;;3998:35:0;;;;;::::1;::::0;;;;;;;;3974:19;3998:35;::::1;;5:2:-1::0;::::1;;;30:1;27::::0;20:12:::1;5:2;3998:35:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;3998:35:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26::::0;19:12:::1;2:2;-1:-1:::0;3998:35:0;3974:60:::1;::::0;;-1:-1:-1;3974:60:0;;;-1:-1:-1;;;;;;3974:60:0;;;-1:-1:-1;;;;;3974:60:0;;;::::1;;::::0;::::1;::::0;;;;;;;;;;;;;;-1:-1:-1;;3974:60:0;;;;;;;-1:-1:-1;3974:60:0;;::::1;;5:2:-1::0;::::1;;;30:1;27::::0;20:12:::1;5:2;3974:60:0;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;5:2;3974:60:0;;;;2758:1;3815:227:::0;;:::o;4050:120::-;2698:12;:10;:12::i;:::-;2688:6;;-1:-1:-1;;;;;2688:22:0;;;:6;;:22;2680:67;;;;;-1:-1:-1;;;2680:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2680:67:0;;;;;;;;;;;;;;;4128:34:::1;::::0;-1:-1:-1;;;;;4128:11:0;::::1;::::0;4140:21:::1;4128:34:::0;::::1;;;::::0;::::1;::::0;;;4140:21;4128:11;:34;::::1;;;;;;;8:9:-1;5:2;;;45:16;42:1;39::::0;24:38:::1;77:16;74:1;67:27;30373:198:0::0;-1:-1:-1;;;;;30463:20:0;;30439:7;30463:20;;;:11;:20;;;;;;;;30459:49;;;-1:-1:-1;;;;;;30492:16:0;;;;;;:7;:16;;;;;;30485:23;;30459:49;-1:-1:-1;;;;;30546:16:0;;;;;;-1:-1:-1;30546:16:0;;;;;;30526:37;;:19;:37::i;3118:148::-;2698:12;:10;:12::i;:::-;2688:6;;-1:-1:-1;;;;;2688:22:0;;;:6;;:22;2680:67;;;;;-1:-1:-1;;;2680:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2680:67:0;;;;;;;;;;;;;;;3225:1:::1;3209:6:::0;;3188:40:::1;::::0;-1:-1:-1;;;;;3209:6:0;;::::1;::::0;3188:40:::1;::::0;3225:1;;3188:40:::1;3256:1;3239:19:::0;;-1:-1:-1;;;;;;3239:19:0::1;::::0;;3118:148::o;32142:433::-;-1:-1:-1;;;;;32219:21:0;;32211:67;;;;-1:-1:-1;;;32211:67:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32289:26;32318:84;32355:6;32318:84;;;;;;;;;;;;;;;;;:32;32328:7;32337:12;:10;:12::i;:::-;32318:9;:32::i;:::-;:36;:84;;:36;:84;:::i;:::-;32289:113;;32413:51;32422:7;32431:12;:10;:12::i;:::-;32445:18;32413:8;:51::i;:::-;32476:15;32507:18;32518:6;32507:10;:18::i;:::-;32475:50;;;;;;;;32536:31;32542:7;32551:6;32559:7;32536:5;:31::i;:::-;32142:433;;;;:::o;2476:79::-;2514:7;2541:6;-1:-1:-1;;;;;2541:6:0;;2476:79::o;30084:87::-;30156:7;30149:14;;;;;;;;;;;;;-1:-1:-1;;30149:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;30123:13;;30149:14;;30156:7;;30149:14;;;30156:7;30149:14;;;;;;;;;;;;;;;;;;;;;;;;31621:269;31714:4;31731:129;31740:12;:10;:12::i;:::-;31754:7;31763:96;31802:15;31763:96;;;;;;;;;;;;;;;;;:11;:25;31775:12;:10;:12::i;:::-;-1:-1:-1;;;;;31763:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;31763:25:0;;;:34;;;;;;;;;;;;:38;:96::i;30579:167::-;30657:4;30674:42;30684:12;:10;:12::i;:::-;30698:9;30709:6;30674:9;:42::i;32583:110::-;-1:-1:-1;;;;;32665:20:0;32641:4;32665:20;;;:11;:20;;;;;;;;;32583:110::o;30754:143::-;-1:-1:-1;;;;;30862:18:0;;;30835:7;30862:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;30754:143::o;29166:333::-;2698:12;:10;:12::i;:::-;2688:6;;-1:-1:-1;;;;;2688:22:0;;;:6;;:22;2680:67;;;;;-1:-1:-1;;;2680:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2680:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;29248:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;29247:21;29239:61;;;::::0;;-1:-1:-1;;;29239:61:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;-1:-1:-1::0;;;;;29315:16:0;::::1;29334:1;29315:16:::0;;;-1:-1:-1;29315:16:0::1;::::0;;;;;:20;29311:109:::1;;-1:-1:-1::0;;;;;29391:16:0;::::1;;::::0;;;-1:-1:-1;29391:16:0::1;::::0;;;;;29371:37:::1;::::0;:19:::1;:37::i;:::-;-1:-1:-1::0;;;;;29352:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;:56;29311:109:::1;-1:-1:-1::0;;;;;29430:20:0::1;;::::0;;;:11:::1;:20;::::0;;;;:27;;-1:-1:-1;;29430:27:0::1;-1:-1:-1::0;29430:27:0;;::::1;::::0;;;29468:9:::1;27:10:-1::0;;23:18;;::::1;45:23:::0;;29468::0;;;;::::1;::::0;;-1:-1:-1;;;;;;29468:23:0::1;::::0;;::::1;::::0;;29166:333::o;3421:244::-;2698:12;:10;:12::i;:::-;2688:6;;-1:-1:-1;;;;;2688:22:0;;;:6;;:22;2680:67;;;;;-1:-1:-1;;;2680:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2680:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;3510:22:0;::::1;3502:73;;;;-1:-1:-1::0;;;3502:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3612:6;::::0;;3591:38:::1;::::0;-1:-1:-1;;;;;3591:38:0;;::::1;::::0;3612:6;::::1;::::0;3591:38:::1;::::0;::::1;3640:6;:17:::0;;-1:-1:-1;;;;;;3640:17:0::1;-1:-1:-1::0;;;;;3640:17:0;;;::::1;::::0;;;::::1;::::0;;3421:244::o;29507:478::-;2698:12;:10;:12::i;:::-;2688:6;;-1:-1:-1;;;;;2688:22:0;;;:6;;:22;2680:67;;;;;-1:-1:-1;;;2680:67:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;2680:67:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;29588:20:0;::::1;;::::0;;;:11:::1;:20;::::0;;;;;::::1;;29580:60;;;::::0;;-1:-1:-1;;;29580:60:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;29656:9;29651:327;29675:9;:16:::0;29671:20;::::1;29651:327;;;29717:9;:12:::0;;-1:-1:-1;;;;;29717:23:0;::::1;::::0;:9;29727:1;;29717:12;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;29717:12:0::1;:23;29713:254;;;29776:9;29786:16:::0;;-1:-1:-1;;29786:20:0;;;29776:31;::::1;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;29761:9:::1;:12:::0;;-1:-1:-1;;;;;29776:31:0;;::::1;::::0;29771:1;;29761:12;::::1;;;;;;::::0;;;::::1;::::0;;;;;;::::1;:46:::0;;-1:-1:-1;;;;;;29761:46:0::1;-1:-1:-1::0;;;;;29761:46:0;;::::1;;::::0;;29826:16;;::::1;::::0;;:7:::1;:16:::0;;;;;;:20;;;29865:11:::1;:20:::0;;;;:28;;-1:-1:-1;;29865:28:0::1;::::0;;29912:9:::1;:15:::0;;;::::1;;;;;::::0;;;::::1;::::0;;-1:-1:-1;;29912:15:0;;;;;;;-1:-1:-1;;;;;;29912:15:0::1;::::0;;;;;29946:5:::1;;29713:254;29693:3;;29651:327;;1013:106:::0;1101:10;1013:106;:::o;38113:423::-;38172:7;38181;38190;38199;38208;38217;38226;38247:23;38272:12;38286:13;38303:20;38315:7;38303:11;:20::i;:::-;38246:77;;;;;;38335:15;38352:23;38377:12;38391:13;38408:33;38420:7;38429:4;38435:5;38408:11;:33::i;:::-;38334:107;;;;;;;;38460:7;38469:15;38486:4;38492:5;38499:15;38516:4;38522:5;38452:76;;;;;;;;;;;;;;;;;;;;;38113:423;;;;;;;;;:::o;5574:136::-;5632:7;5659:43;5663:1;5666;5659:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;5652:50;5574:136;-1:-1:-1;;;5574:136:0:o;5110:181::-;5168:7;5200:5;;;5224:6;;;;5216:46;;;;;-1:-1:-1;;;5216:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;33909:337;-1:-1:-1;;;;;34002:19:0;;33994:68;;;;-1:-1:-1;;;33994:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34081:21:0;;34073:68;;;;-1:-1:-1;;;34073:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34154:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;34206:32;;;;;;;;;;;;;;;;;33909:337;;;:::o;34254:931::-;-1:-1:-1;;;;;34351:20:0;;34343:70;;;;-1:-1:-1;;;34343:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34432:23:0;;34424:71;;;;-1:-1:-1;;;34424:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34523:1;34514:6;:10;34506:64;;;;-1:-1:-1;;;34506:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;34585:19:0;;;;;;:11;:19;;;;;;;;:46;;;;-1:-1:-1;;;;;;34609:22:0;;;;;;:11;:22;;;;;;;;34608:23;34585:46;34581:597;;;34648:48;34670:6;34678:9;34689:6;34648:21;:48::i;:::-;34581:597;;;-1:-1:-1;;;;;34719:19:0;;;;;;:11;:19;;;;;;;;34718:20;:46;;;;-1:-1:-1;;;;;;34742:22:0;;;;;;:11;:22;;;;;;;;34718:46;34714:464;;;34781:46;34801:6;34809:9;34820:6;34781:19;:46::i;34714:464::-;-1:-1:-1;;;;;34850:19:0;;;;;;:11;:19;;;;;;;;34849:20;:47;;;;-1:-1:-1;;;;;;34874:22:0;;;;;;:11;:22;;;;;;;;34873:23;34849:47;34845:333;;;34913:44;34931:6;34939:9;34950:6;34913:17;:44::i;34845:333::-;-1:-1:-1;;;;;34979:19:0;;;;;;:11;:19;;;;;;;;:45;;;;-1:-1:-1;;;;;;35002:22:0;;;;;;:11;:22;;;;;;;;34979:45;34975:203;;;35041:48;35063:6;35071:9;35082:6;35041:21;:48::i;34975:203::-;35122:44;35140:6;35148:9;35159:6;35122:17;:44::i;:::-;34254:931;;;:::o;6013:192::-;6099:7;6135:12;6127:6;;;;6119:29;;;;-1:-1:-1;;;6119:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;6119:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;6171:5:0;;;6013:192::o;39656:164::-;39698:7;39719:15;39736;39755:19;:17;:19::i;:::-;39718:56;;-1:-1:-1;39718:56:0;-1:-1:-1;39792:20:0;39718:56;;39792:20;:11;:20;:::i;:::-;39785:27;;;;39656:164;:::o;7411:132::-;7469:7;7496:39;7500:1;7503;7496:39;;;;;;;;;;;;;;;;;:3;:39::i;40392:502::-;-1:-1:-1;;;;;40481:20:0;;;;;;:11;:20;;;;;;;;40477:360;;;40537:67;40558:7;40537:67;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40537:16:0;;;;;;:7;:16;;;;;;;;:20;:67::i;:::-;-1:-1:-1;;;;;40518:16:0;;;;;;:7;:16;;;;;;;;;:86;;;;40638:67;;;;;;;;;;;;;;40659:7;;40638:67;;;;;;;-1:-1:-1;;;;;40638:16:0;;;;;;-1:-1:-1;40638:16:0;;;;;;;;:20;:67::i;:::-;-1:-1:-1;;;;;40619:16:0;;;;;;-1:-1:-1;40619:16:0;;;;;:86;40477:360;;;40758:67;40779:7;40758:67;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40758:16:0;;;;;;-1:-1:-1;40758:16:0;;;;;;;;:20;:67::i;:::-;-1:-1:-1;;;;;40739:16:0;;;;;;-1:-1:-1;40739:16:0;;;;;:86;40477:360;40847:39;40860:7;40869;40878;40847:12;:39::i;38544:548::-;38604:7;;;;38657:16;:7;38669:3;38657:16;:11;:16;:::i;:::-;38642:31;-1:-1:-1;38684:23:0;38710:17;:7;38642:31;38710:17;:11;:17;:::i;:::-;38684:43;;38738:13;38754:1;38738:17;;27916:18;38770:7;;:26;38766:271;;;38821:16;:7;38833:3;38821:16;:11;:16;:::i;:::-;38813:24;-1:-1:-1;38866:27:0;27916:18;38813:24;38866:27;:20;:27;:::i;:::-;38856:7;;:37;38852:115;;;38922:7;;:29;;27916:18;38922:29;:11;:29;:::i;:::-;38914:37;;38852:115;38999:26;:15;39019:5;38999:26;:19;:26;:::i;:::-;38981:44;;38766:271;39055:15;;39072:4;;-1:-1:-1;39055:15:0;-1:-1:-1;38544:548:0;-1:-1:-1;;38544:548:0:o;39100:::-;39189:7;39198;39207;39216;39236:19;39258:10;:8;:10::i;:::-;39236:32;-1:-1:-1;39279:15:0;39297:24;:7;39236:32;39297:24;:11;:24;:::i;:::-;39279:42;-1:-1:-1;39332:12:0;39347:21;:4;39356:11;39347:21;:8;:21;:::i;:::-;39332:36;-1:-1:-1;39379:13:0;;39433:17;:7;39332:36;39433:17;:11;:17;:::i;:::-;39407:43;-1:-1:-1;39465:9:0;;39461:123;;39499:22;:5;39509:11;39499:22;:9;:22;:::i;:::-;39491:30;-1:-1:-1;39554:18:0;:7;39491:30;39554:18;:11;:18;:::i;:::-;39536:36;;39461:123;39602:7;;;;-1:-1:-1;39628:4:0;;-1:-1:-1;39611:15:0;-1:-1:-1;39100:548:0;-1:-1:-1;;;;;39100:548:0:o;36404:622::-;36507:15;36524:23;36549:12;36563:13;36578:23;36603:12;36617:13;36634:19;36645:7;36634:10;:19::i;:::-;36506:147;;;;;;;;;;;;;;36682:28;36702:7;36682;:15;36690:6;-1:-1:-1;;;;;36682:15:0;-1:-1:-1;;;;;36682:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;36664:15:0;;;;;;:7;:15;;;;;;;;:46;;;;-1:-1:-1;36739:15:0;;;;:28;;36759:7;36739:19;:28::i;:::-;-1:-1:-1;;;;;36721:15:0;;;;;;;-1:-1:-1;36721:15:0;;;;;;:46;;;;36799:18;;;;;;;:39;;36822:15;36799:22;:39::i;:::-;-1:-1:-1;;;;;36778:18:0;;;;;;-1:-1:-1;36778:18:0;;;;;:60;36849:23;36861:4;36867;36849:11;:23::i;:::-;36887:9;;36883:76;;36913:34;36926:5;36933;36940:6;36913:12;:34::i;:::-;36974:44;;;;;;;;-1:-1:-1;;;;;36974:44:0;;;;;;;;;;;;;;;;;36404:622;;;;;;;;;;:::o;35762:634::-;35863:15;35880:23;35905:12;35919:13;35934:23;35959:12;35973:13;35990:19;36001:7;35990:10;:19::i;:::-;35862:147;;;;;;;;;;;;;;36038:28;36058:7;36038;:15;36046:6;-1:-1:-1;;;;;36038:15:0;-1:-1:-1;;;;;36038:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;36020:15:0;;;;;;;-1:-1:-1;36020:15:0;;;;;;;;:46;;;;36098:18;;;;;:7;:18;;;;;:39;;36121:15;36098:22;:39::i;:::-;-1:-1:-1;;;;;36077:18:0;;;;;;:7;:18;;;;;;;;:60;;;;-1:-1:-1;36169:18:0;;;;:39;;36192:15;36169:22;:39::i;35193:561::-;35292:15;35309:23;35334:12;35348:13;35363:23;35388:12;35402:13;35419:19;35430:7;35419:10;:19::i;:::-;35291:147;;;;;;;;;;;;;;35467:28;35487:7;35467;:15;35475:6;-1:-1:-1;;;;;35467:15:0;-1:-1:-1;;;;;35467:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;37034:693::-;37137:15;37154:23;37179:12;37193:13;37208:23;37233:12;37247:13;37264:19;37275:7;37264:10;:19::i;:::-;37136:147;;;;;;;;;;;;;;37312:28;37332:7;37312;:15;37320:6;-1:-1:-1;;;;;37312:15:0;-1:-1:-1;;;;;37312:15:0;;;;;;;;;;;;;:19;;:28;;;;:::i;:::-;-1:-1:-1;;;;;37294:15:0;;;;;;:7;:15;;;;;;;;:46;;;;-1:-1:-1;37369:15:0;;;;:28;;37389:7;37369:19;:28::i;39828:556::-;39926:7;;39962;;39879;;;;;39980:289;40004:9;:16;40000:20;;39980:289;;;40070:7;40046;:21;40054:9;40064:1;40054:12;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40054:12:0;40046:21;;;;;;;;;;;;;:31;;:66;;;40105:7;40081;:21;40089:9;40099:1;40089:12;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40089:12:0;40081:21;;;;;;;;;;;;;:31;40046:66;40042:97;;;40122:7;;40131;;40114:25;;;;;;;;;40042:97;40164:34;40176:7;:21;40184:9;40194:1;40184:12;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40184:12:0;40176:21;;;;;;;;;;;;;40164:7;;:11;:34::i;:::-;40154:44;;40223:34;40235:7;:21;40243:9;40253:1;40243:12;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;40243:12:0;40235:21;;;;;;;;;;;;;40223:7;;:11;:34::i;:::-;40213:44;-1:-1:-1;40022:3:0;;39980:289;;;-1:-1:-1;40305:7:0;;40293;;:20;;;:11;:20;:::i;:::-;40283:7;:30;40279:61;;;40323:7;;40332;;40315:25;;;;;;;;40279:61;40359:7;;-1:-1:-1;40368:7:0;-1:-1:-1;39828:556:0;;;:::o;8039:278::-;8125:7;8160:12;8153:5;8145:28;;;;-1:-1:-1;;;8145:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27:10;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;8145:28:0;;8184:9;8200:1;8196;:5;;;;;;;8039:278;-1:-1:-1;;;;;8039:278:0:o;37890:215::-;37988:7;;:18;;38000:5;37988:18;:11;:18;:::i;:::-;37978:7;:28;38027:7;;:18;;38039:5;38027:18;:11;:18;:::i;:::-;38017:7;:28;38061:36;;;;;;;;38087:1;;-1:-1:-1;;;;;38061:36:0;;;;;;;;;;;;37890:215;;;:::o;6464:471::-;6522:7;6767:6;6763:47;;-1:-1:-1;6797:1:0;6790:8;;6763:47;6834:5;;;6838:1;6834;:5;:1;6858:5;;;;;:10;6850:56;;;;-1:-1:-1;;;6850:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37735:147;37813:7;;:17;;37825:4;37813:17;:11;:17;:::i;:::-;37803:7;:27;37854:10;;:20;;37869:4;37854:20;:14;:20;:::i;:::-;37841:10;:33;-1:-1:-1;;37735:147:0:o

Swarm Source

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