ETH Price: $2,657.99 (+1.21%)

Token

iOWN Token (iOWN)
 

Overview

Max Total Supply

301,323,924 iOWN

Holders

528 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
LAToken 12
Balance
339,227.974800591618375099 iOWN

Value
$0.00
0xeE61F5fB0dB81d3A09392375Ee96f723C0620E07
Loading...
Loading
Loading...
Loading
Loading...
Loading

IEO Information

IEO Address :https://www.iownbelievers.com/  
IEO Start Date :Apr 1, 2019  
IEO End Date :Sep 30, 2019  
IEO Price :$0.01  
Public Sale Allocation :300,000,000 iOWN  
Country :Cayman Islands  
Soft Cap :$1200000  
Hard Cap :$3000000  
Raised :$1,513,239.24  
Token Distribution Date :Oct 30, 2019  

 

Private Sale Information

Private Sale Token Price :$0.01  
Private Sale Allocation :48,522,000 iOWN  

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
IownToken

Compiler Version
v0.5.11+commit.c082d0b4

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-10-06
*/

// ERC20/ERC223 Token for iOWN

// File: contracts/math/SafeMath.sol

pragma solidity ^0.5.11;

/**
 * @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.
     *
     * NOTE: This is a feature of the next version of OpenZeppelin Contracts.
     * @dev Get it via `npm install @openzeppelin/contracts@next`.
     */
    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.

     * NOTE: This is a feature of the next version of OpenZeppelin Contracts.
     * @dev Get it via `npm install @openzeppelin/contracts@next`.
     */
    function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        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.
     *
     * NOTE: This is a feature of the next version of OpenZeppelin Contracts.
     * @dev Get it via `npm install @openzeppelin/contracts@next`.
     */
    function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
        require(b != 0, errorMessage);
        return a % b;
    }
}

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

pragma solidity ^0.5.11;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP. Does not include
 * the optional functions; to access them see {ERC20Detailed}.
 */
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/token/ERC223/IERC223.sol

pragma solidity ^0.5.11;

/**
 * @dev Extension interface for IERC20 which defines logic specific to ERC223
 */
interface IERC223 {

	/**
	 * Events are actually ERC20 compatible, since etherscan/exhcanges don't support the newer event
	 */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
	 * Events are actually ERC20 compatible, since etherscan/exhcanges don't support the newer event
	 */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    function approve(address spender, uint256 amount, bytes calldata data) external returns (bool);

    function transfer(address to, uint value, bytes calldata data) external returns (bool);

    function transferFrom(address sender, address recipient, uint256 amount, bytes calldata data) external returns (bool);

}

// File: contracts/token/ERC223/ERC223Detailed.sol

pragma solidity ^0.5.11;



/**
 * @dev Optional functions from the ERC20 standard.
 */
contract ERC223Detailed is IERC20, IERC223 {
    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of
     * these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name, string memory symbol, uint8 decimals) public {
        _name = name;
        _symbol = symbol;
        _decimals = decimals;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }
}

// File: contracts/GSN/Context.sol

pragma solidity ^0.5.11;

/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
contract Context {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    constructor () internal { }
    // solhint-disable-previous-line no-empty-blocks

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

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

// File: contracts/utils/Address.sol

pragma solidity ^0.5.11;

/**
 * @dev Collection of functions related to the address type
 * Orginally https://github.com/Dexaran/ERC223-token-standard/blob/development/utils/Address.sol
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * This test is non-exhaustive, and there may be false-negatives: during the
     * execution of a contract's constructor, its address will be reported as
     * not containing a contract.
     *
     * > It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies in 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 Converts an `address` into `address payable`. Note that this is
     * simply a type cast: the actual underlying value is not changed.
     */
    function toPayable(address account) internal pure returns (address payable) {
        return address(uint160(account));
    }
}

// File: contracts/token/ERC223/IERC223Extras.sol

pragma solidity ^0.5.11;

/**
 * @dev Extension interface for IERC223 which idenfies agent like behaviour
 */
interface IERC223Extras {
    function transferFor(address beneficiary, address recipient, uint256 amount, bytes calldata data) external returns (bool);

    function approveFor(address beneficiary, address spender, uint256 amount, bytes calldata data) external returns (bool);
}

// File: contracts/token/ERC223/IERC223Recipient.sol

pragma solidity ^0.5.11;

 /**
 * @title Contract that will work with ERC223 tokens.
 * Originally https://github.com/Dexaran/ERC223-token-standard/blob/development/token/ERC223/IERC223Recipient.sol
 */
interface IERC223Recipient {
    /**
    * @dev Standard ERC223 function that will handle incoming token transfers.
    *
    * @param _from  Token sender address.
    * @param _value Amount of tokens.
    * @param _data  Transaction metadata.
    */
    function tokenFallback(address _from, uint _value, bytes calldata _data) external;
}

// File: contracts/token/ERC223/IERC223ExtendedRecipient.sol

pragma solidity ^0.5.11;

 /**
 * @title Contract that will work with ERC223 tokens which have extended fallback methods triggered on approve,
 * transferFor and approveFor (which are non standard logic)
 */
interface IERC223ExtendedRecipient {
    /**
    * @dev Extra ERC223 like function that will handle incoming approvals.
    *
    * @param _from  Token sender address.
    * @param _value Amount of tokens.
    * @param _data  Transaction metadata.
    */
    function approveFallback(address _from, uint _value, bytes calldata _data) external;

    /**
    * @dev ERC223 like function that will handle incoming token transfers for someone else
    *
    * @param _from  Token sender address.
    * @param _beneficiary Token beneficiary.
    * @param _value Amount of tokens.
    * @param _data  Transaction metadata.
    */
    function tokenForFallback(address _from, address _beneficiary, uint _value, bytes calldata _data) external;

    /**
    * @dev Extra ERC223 like function that will handle incoming approvals.
    *
    * @param _from  Token sender address.
    * @param _beneficiary Token beneficiary.
    * @param _value Amount of tokens.
    * @param _data  Transaction metadata.
    */
    function approveForFallback(address _from, address _beneficiary, uint _value, bytes calldata _data) external;
}

// File: contracts/token/ERC223/ERC223.sol

pragma solidity ^0.5.11;








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

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

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

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

    /**
     * @dev See {IERC223-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public returns (bool) {
        bytes memory _empty = hex"00000000";
        _transfer(_msgSender(), recipient, amount, _empty);
        return true;
    }

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

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

    /**
     * @dev See {IERC2223-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC223};
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for `sender`'s tokens of at least
     * `amount`.
     *
     * Has non-standard implementation: approval and transfer trigger fallback on special conditions
     */
    function transferFrom(address sender, address recipient, uint256 amount, bytes memory data) public returns (bool) {
        _transfer(sender, recipient, amount, data); //has fallback if recipient isn't msg.sender
         //has fallback if not msg sender:
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC223: transfer amount exceeds allowance"), data);
        return true;
    }

    /**
     * @dev See {IERC223-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC223};
     *
     * Requirements:
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for `sender`'s tokens of at least
     * `amount`.
     *
     * Has standard implementation where no approveFallback is triggered
     */
    function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) {
        bytes memory _empty = hex"00000000";
        _transfer(sender, recipient, amount, _empty); //Has standard ERC223 fallback
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC223: transfer amount exceeds allowance")); //no fallback
        return true;
    }

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

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

    /**
     * @dev Transfer the specified amount of tokens to the specified address.
     *      Invokes the `tokenFallback` function if the recipient is a contract.
     *      The token transfer fails if the recipient is a contract
     *      but does not implement the `tokenFallback` function
     *      or the fallback function to receive funds.
     *
     * @param recipient    Receiver address.
     * @param amount Amount of tokens that will be transferred.
     * @param data Transaction metadata.
     */
    function transfer(address recipient, uint256 amount, bytes memory data) public returns (bool success){
        _transfer(_msgSender(), recipient, amount, data);
        return true;
    }

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

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

        _balances[sender] = _balances[sender].sub(amount, "ERC223: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        //ERC223 logic:
        // No fallback if there's a transfer initiated by a contract to itself (transferFrom)
        if(Address.isContract(recipient) && _msgSender() != recipient) {
            IERC223Recipient receiver = IERC223Recipient(recipient);
            receiver.tokenFallback(sender, amount, data);
        }
        emit Transfer(sender, recipient, amount);
    }

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

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

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

        _balances[account] = _balances[account].sub(amount, "ERC223: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens.
     *
     * This is internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     *
     * This Function is non-standard to ERC223, and been modified to reflect same behaviour as _transfer with regards to fallback
     */
    function _approve(address owner, address spender, uint256 amount, bytes memory data) internal {
        require(owner != address(0), "ERC223: approve from the zero address");
        require(spender != address(0), "ERC223: approve to the zero address");

        _allowances[owner][spender] = amount;
        // ERC223 Extra logic:
        // No fallback when msg.sender is triggering this transaction (transferFrom) which it is also receiving
        if(Address.isContract(spender) && _msgSender() != spender) {
            IERC223ExtendedRecipient receiver = IERC223ExtendedRecipient(spender);
            receiver.approveFallback(owner, amount, data);
        }
        emit Approval(owner, spender, amount);
    }

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

    /**
     * @dev Destroys `amount` tokens from `account`.`amount` is then deducted
     * from the caller's allowance.
     *
     * See {_burn} and {_approve}.
     */
    function _burnFrom(address account, uint256 amount) internal {
        _burn(account, amount);
        _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC223: burn amount exceeds allowance"));
    }

    /**
     * @dev Special extended functionality: Allows transferring tokens to a contract for the benefit of someone else
     * Non-standard to ERC20 or ERC223
     */
    function transferFor(address beneficiary, address recipient, uint256 amount, bytes memory data) public returns (bool) {
        address sender = _msgSender();
        require(beneficiary != address(0), "ERC223E: transfer for the zero address");
        require(recipient != address(0), "ERC223: transfer to the zero address");
        require(beneficiary != sender, "ERC223: sender and beneficiary cannot be the same");

        _balances[sender] = _balances[sender].sub(amount, "ERC223: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        //ERC223 Extra logic:
        if(Address.isContract(recipient) && _msgSender() != recipient) {
            IERC223ExtendedRecipient receiver = IERC223ExtendedRecipient(recipient);
            receiver.tokenForFallback(sender, beneficiary, amount, data);
        }
        emit Transfer(sender, recipient, amount);
        return true;
    }

    /**
     * @dev  Special extended functionality: Allows approving tokens to a contract but for the benefit of someone else,
     * transferFrom logic that follows doesn't change, but the spender here can track that the amount is deduced from someone for
     * the benefit of someone else, thus allowing refunds to original sender, while giving service/utility being paid for to beneficiary
     */
    function approveFor(address beneficiary, address spender, uint256 amount, bytes memory data) public returns (bool) {
        address agent = _msgSender();
        require(agent != address(0), "ERC223: approve from the zero address");
        require(spender != address(0), "ERC223: approve to the zero address");
        require(beneficiary != agent, "ERC223: sender and beneficiary cannot be the same");

        _allowances[agent][spender] = amount;
        //ERC223 Extra logic:
        if(Address.isContract(spender) && _msgSender() != spender) {
            IERC223ExtendedRecipient receiver = IERC223ExtendedRecipient(spender);
            receiver.approveForFallback(agent, beneficiary, amount, data);
        }
        emit Approval(agent, spender, amount);
        return true;
    }
}

// File: contracts/access/Roles.sol

pragma solidity ^0.5.11;

/**
 * @title Roles
 * @dev Library for managing addresses assigned to a Role.
 */
library Roles {
    struct Role {
        mapping (address => bool) bearer;
    }

    /**
     * @dev Give an account access to this role.
     */
    function add(Role storage role, address account) internal {
        require(!has(role, account), "Roles: account already has role");
        role.bearer[account] = true;
    }

    /**
     * @dev Remove an account's access to this role.
     */
    function remove(Role storage role, address account) internal {
        require(has(role, account), "Roles: account does not have role");
        role.bearer[account] = false;
    }

    /**
     * @dev Check if an account has this role.
     * @return bool
     */
    function has(Role storage role, address account) internal view returns (bool) {
        require(account != address(0), "Roles: account is the zero address");
        return role.bearer[account];
    }
}

// File: contracts/access/roles/PauserRole.sol

pragma solidity ^0.5.11;

contract PauserRole is Context {
    using Roles for Roles.Role;

    event PauserAdded(address indexed account);
    event PauserRemoved(address indexed account);

    Roles.Role private _pausers;

    constructor () internal {
        _addPauser(_msgSender());
    }

    modifier onlyPauser() {
        require(isPauser(_msgSender()), "PauserRole: caller does not have the Pauser role");
        _;
    }

    function isPauser(address account) public view returns (bool) {
        return _pausers.has(account);
    }

    function addPauser(address account) public onlyPauser {
        _addPauser(account);
    }

    function renouncePauser() public {
        _removePauser(_msgSender());
    }

    function _addPauser(address account) internal {
        _pausers.add(account);
        emit PauserAdded(account);
    }

    function _removePauser(address account) internal {
        _pausers.remove(account);
        emit PauserRemoved(account);
    }
}

// File: contracts/lifecycle/Pausable.sol

pragma solidity ^0.5.11;

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

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

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state. Assigns the Pauser role
     * to the deployer.
     */
    constructor () internal {
        _paused = false;
    }

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

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     */
    modifier whenNotPaused() {
        require(!_paused, "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     */
    modifier whenPaused() {
        require(_paused, "Pausable: not paused");
        _;
    }

    /**
     * @dev Called by a pauser to pause, triggers stopped state.
     */
    function pause() public onlyPauser whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Called by a pauser to unpause, returns to normal state.
     */
    function unpause() public onlyPauser whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

// File: contracts/token/ERC223/ERC223Pausable.sol

pragma solidity ^0.5.11;

/**
 * @title Pausable token
 * @dev ERC223 an extension of ERC20Pausable which applies to ERC223 functions
 *
 */
contract ERC223Pausable is ERC223, Pausable {
    function transfer(address to, uint256 value) public whenNotPaused returns (bool) {
        return super.transfer(to, value);
    }

    function transferFrom(address from, address to, uint256 value) public whenNotPaused returns (bool) {
        return super.transferFrom(from, to, value);
    }

    function approve(address spender, uint256 value) public whenNotPaused returns (bool) {
        return super.approve(spender, value);
    }

    function increaseAllowance(address spender, uint256 addedValue) public whenNotPaused returns (bool) {
        return super.increaseAllowance(spender, addedValue);
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public whenNotPaused returns (bool) {
        return super.decreaseAllowance(spender, subtractedValue);
    }

    /**
     * ERC223
     */
    function transfer(address recipient, uint256 amount, bytes memory data) public whenNotPaused returns (bool success) {
        return super.transfer(recipient, amount, data);
    }

	/**
     * ERC223
     */
    function approve(address spender, uint256 amount, bytes memory data) public whenNotPaused returns (bool) {
        return super.approve(spender, amount, data);
    }

    /**
     * ERC223Extra
     */
    function transferFor(address beneficiary, address recipient, uint256 amount, bytes memory data) public whenNotPaused returns (bool) {
        return super.transferFor(beneficiary, recipient, amount, data);
    }

    /**
     * ERC223Extra
     */
    function approveFor(address beneficiary, address spender, uint256 amount, bytes memory data) public whenNotPaused returns (bool) {
        return super.approveFor(beneficiary, spender, amount, data);
    }
}

// File: contracts/ownership/Ownable.sol

pragma solidity ^0.5.11;

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

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

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

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

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

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        _transferOwnership(newOwner);
    }

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

// File: contracts/access/roles/MinterRole.sol

pragma solidity ^0.5.11;

/**
 * @dev MinterRole inherites from openzeppelin.
 */
contract MinterRole is Context {
    using Roles for Roles.Role;

    event MinterAdded(address indexed account);
    event MinterRemoved(address indexed account);

    Roles.Role private _minters;

    constructor () internal {
        _addMinter(_msgSender());
    }

    modifier onlyMinter() {
        require(isMinter(_msgSender()), "MinterRole: caller does not have the Minter role");
        _;
    }

    function isMinter(address account) public view returns (bool) {
        return _minters.has(account);
    }

    function addMinter(address account) public onlyMinter {
        _addMinter(account);
    }

    function renounceMinter() public {
        _removeMinter(_msgSender());
    }

    function _addMinter(address account) internal {
        _minters.add(account);
        emit MinterAdded(account);
    }

    function _removeMinter(address account) internal {
        _minters.remove(account);
        emit MinterRemoved(account);
    }
}

// File: contracts/token/ERC223/ERC223Mintable.sol

pragma solidity ^0.5.11;

/**
 * @dev Extension of {ERC20} that adds a set of accounts with the {MinterRole},
 * which have permission to mint (create) new tokens as they see fit.
 *
 * At construction, the deployer of the contract is the only minter.
 */
contract ERC223Mintable is ERC223, MinterRole {
    /**
     * @dev See {ERC20-_mint}.
     *
     * Requirements:
     *
     * - the caller must have the {MinterRole}.
     */
    function mint(address account, uint256 amount) public onlyMinter returns (bool) {
        _mint(account, amount);
        return true;
    }
}

// File: contracts/token/ERC223/ERC223Capped.sol

pragma solidity ^0.5.11;

/**
 * @dev Extension of {ERC223Mintable} that adds a cap to the supply of tokens.
 */
contract ERC223Capped is ERC223Mintable {
    uint256 private _cap;

    /**
     * @dev Sets the value of the `cap`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor (uint256 cap) public {
        require(cap > 0, "ERC223Capped: cap is 0");
        _cap = cap;
    }

    /**
     * @dev Returns the cap on the token's total supply.
     */
    function cap() public view returns (uint256) {
        return _cap;
    }

    /**
     * @dev See {ERC223Mintable-mint}.
     *
     * Requirements:
     *
     * - `value` must not cause the total supply to go over the cap.
     */
    function _mint(address account, uint256 value) internal {
        require(totalSupply().add(value) <= _cap, "ERC223Capped: cap exceeded");
        super._mint(account, value);
    }
}

// File: contracts/token/ERC223/ERC223Burnable.sol

pragma solidity ^0.5.11;

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

    /**
     * @dev See {ERC20-_burnFrom}.
     */
    function burnFrom(address account, uint256 amount) public {
        _burnFrom(account, amount);
    }
}

// File: contracts/token/ERC223/ERC223UpgradeAgent.sol

pragma solidity ^0.5.11;

/**
 * @dev Upgrade agent interface inspired by Lunyr.
 *
 * Upgrade agent transfers tokens to a new contract.
 * Upgrade agent itself can be the token contract, or just a middle man contract doing the heavy lifting.
 * Originally https://github.com/TokenMarketNet/smart-contracts/blob/master/contracts/UpgradeAgent.sol
 */
contract ERC223UpgradeAgent {

	/** Original supply of token*/
    uint public originalSupply;

    /** Interface marker */
    function isUpgradeAgent() public pure returns (bool) {
        return true;
    }

    /**
     * @dev Upgrade a set of tokens
     */
    function upgradeFrom(address from, uint256 value) public;

}

// File: contracts/token/ERC223/ERC223Upgradeable.sol

pragma solidity ^0.5.11;

/**
 * @dev A capped burnable token which can be upgraded to a newer version of its self.
 */
contract ERC223Upgradeable is ERC223Capped, ERC223Burnable, Ownable {

	/** The next contract where the tokens will be migrated. */
    address private _upgradeAgent;

    /** How many tokens we have upgraded by now. */
    uint256 private _totalUpgraded = 0;

    /** Set to true if we have an upgrade agent and we're ready to update tokens */
    bool private _upgradeReady = false;

    /** Somebody has upgraded some of his tokens. */
    event Upgrade(address indexed _from, address indexed _to, uint256 _amount);

    /** New upgrade agent available. */
    event UpgradeAgentSet(address agent);

    /** New token information was set */
    event InformationUpdate(string name, string symbol);

    /**
    * @dev Modifier to check if upgrading is allowed
    */
    modifier upgradeAllowed() {
        require(_upgradeReady == true, "Upgrade not allowed");
        _;
    }

    /**
     * @dev Modifier to check if setting upgrade agent is allowed for owner
     */
    modifier upgradeAgentAllowed() {
        require(_totalUpgraded == 0, "Upgrade is already in progress");
        _;
    }

    /**
     * @dev Returns the upgrade agent
     */
    function upgradeAgent() public view returns (address) {
        return _upgradeAgent;
    }

    /**
     * @dev Allow the token holder to upgrade some of their tokens to a new contract.
     * @param amount An amount to upgrade to the next contract
     */
    function upgrade(uint256 amount) public upgradeAllowed {
        require(amount > 0, "Amount should be greater than zero");
        require(balanceOf(msg.sender) >= amount, "Amount exceeds tokens owned");
        //Burn user's tokens:
        burn(amount);
        _totalUpgraded = _totalUpgraded.add(amount);
        // Upgrade agent reissues the tokens in the new contract
        ERC223UpgradeAgent(_upgradeAgent).upgradeFrom(msg.sender, amount);
        emit Upgrade(msg.sender, _upgradeAgent, amount);
    }

    /**
     * @dev Set an upgrade agent that handles transition of tokens from this contract
     * @param agent Sets the address of the ERC223UpgradeAgent (new token)
     */
    function setUpgradeAgent(address agent) external onlyOwner upgradeAgentAllowed {
        require(agent != address(0), "Upgrade agent can not be at address 0");
        ERC223UpgradeAgent target = ERC223UpgradeAgent(agent);
        // Basic validation for target contract
        require(target.isUpgradeAgent() == true, "Address provided is an invalid agent");
        require(target.originalSupply() == cap(), "Upgrade agent should have the same cap");
        _upgradeAgent = agent;
        _upgradeReady = true;
        emit UpgradeAgentSet(agent);
    }

}

// File: contracts/iown/OdrToken.sol

pragma solidity ^0.5.11;

/**
 * @title Odr
 * @dev ODR (On Demand Release) is a contract which holds tokens to be released for special purposes only,
 *  from a token perspective, the ODR is an adress which receives all remainder of token cap
 */
contract OdrToken is ERC223Upgradeable {

 	/** Holds the ODR address: where remainder of hard cap goes*/
    address private _odrAddress;

    /** The date before which release must be triggered or token MUST be upgraded. */
    uint private _releaseDate;

    /** Token release switch. */
    bool private _released = false;

    constructor(uint releaseDate) public {
        _releaseDate = releaseDate;
    }

    /**
     * @dev Modifier for checked whether the token has not been released yet
     */
    modifier whenNotReleased() {
        require(_released == false, "Not allowed after token release");
        _;
    }

    /**
     * @dev Releases the token by marking it as released after minting all tokens to ODR
     */
    function releaseToken() external onlyOwner returns (bool isSuccess) {
        require(_odrAddress != address(0), "ODR Address must be set before releasing token");
        uint256 remainder = cap().sub(totalSupply());
        if(remainder > 0) mint(_odrAddress, remainder); //Mint remainder of tokens to ODR wallet
        _released = true;
        return _released;
    }

    /**
     * @dev Allows Owner to set the ODR address which will hold the remainder of the tokens on release
     * @param odrAddress The address of the ODR wallet
     */
    function setODR(address odrAddress) external onlyOwner returns (bool isSuccess) {
        require(odrAddress != address(0), "Invalid ODR address");
        require(Address.isContract(odrAddress), "ODR address must be a contract");
        _odrAddress = odrAddress;
        return true;
    }

    /**
     * @dev Is token released yet
     * @return true if released
     */
    function released() public view returns (bool) {
        return _released;
    }

    /**
     * @dev Getter for ODR address
     * @return address of ODR
     */
    function odr() public view returns (address) {
        return _odrAddress;
    }
}

// File: contracts/iown/IownToken.sol

pragma solidity ^0.5.11;

/**
 * @title IownToken
 * @dev iOWN Token is an ERC223 Token for iOWN Project, intended to allow users to access iOWN Services
 */
contract IownToken is OdrToken, ERC223Pausable, ERC223Detailed {
    using SafeMath for uint256;

    constructor(
        string memory name,
        string memory symbol,
        uint totalSupply,
        uint8 decimals,
        uint releaseDate,
        address managingWallet
    )
        Context()
        ERC223Detailed(name, symbol, decimals)
        Ownable()
        PauserRole()
        Pausable()
        MinterRole()
        ERC223Capped(totalSupply)
        OdrToken(releaseDate)
        public
    {
        transferOwnership(managingWallet);
    }

    /**
     * @dev Function to transfer ownership of contract to another address
     * Guarantees newOwner has also minter and pauser roles
     */
    function transferOwnership(address newOwner) public onlyOwner {
        require(newOwner != address(0), "Invalid new owner address");
        address oldOwner = owner();
        _addMinter(newOwner);
        _addPauser(newOwner);
        super.transferOwnership(newOwner);
        if(oldOwner != address(0)) {
            _removeMinter(oldOwner);
            _removePauser(oldOwner);
        }
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"odrAddress","type":"address"}],"name":"setODR","outputs":[{"internalType":"bool","name":"isSuccess","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"upgrade","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isPauser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"upgradeAgent","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renouncePauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addPauser","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"released","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"odr","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"transfer","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"beneficiary","type":"address"},{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"approveFor","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"beneficiary","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"transferFor","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"agent","type":"address"}],"name":"setUpgradeAgent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"releaseToken","outputs":[{"internalType":"bool","name":"isSuccess","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"totalSupply","type":"uint256"},{"internalType":"uint8","name":"decimals","type":"uint8"},{"internalType":"uint256","name":"releaseDate","type":"uint256"},{"internalType":"address","name":"managingWallet","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"PauserAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"PauserRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"Upgrade","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"agent","type":"address"}],"name":"UpgradeAgentSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"name","type":"string"},{"indexed":false,"internalType":"string","name":"symbol","type":"string"}],"name":"InformationUpdate","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":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":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"}]

608060405260006007556000600860006101000a81548160ff0219169083151502179055506000600a60006101000a81548160ff0219169083151502179055503480156200004c57600080fd5b5060405162005f1938038062005f19833981810160405260c08110156200007257600080fd5b81019080805160405193929190846401000000008211156200009357600080fd5b83820191506020820185811115620000aa57600080fd5b8251866001820283011164010000000082111715620000c857600080fd5b8083526020830192505050908051906020019080838360005b83811015620000fe578082015181840152602081019050620000e1565b50505050905090810190601f1680156200012c5780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200015057600080fd5b838201915060208201858111156200016757600080fd5b82518660018202830111640100000000821117156200018557600080fd5b8083526020830192505050908051906020019080838360005b83811015620001bb5780820151818401526020810190506200019e565b50505050905090810190601f168015620001e95780820380516001836020036101000a031916815260200191505b5060405260200180519060200190929190805190602001909291908051906020019092919080519060200190929190505050858584848762000240620002346200043c60201b60201c565b6200044460201b60201c565b60008111620002b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260168152602001807f4552433232334361707065643a2063617020697320300000000000000000000081525060200191505060405180910390fd5b8060048190555050620002cf6200043c60201b60201c565b600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a38060098190555050620003b4620003a86200043c60201b60201c565b620004a560201b60201c565b6000600c60006101000a81548160ff02191690831515021790555082600d9080519060200190620003e792919062000c92565b5081600e90805190602001906200040092919062000c92565b5080600f60006101000a81548160ff021916908360ff16021790555050505062000430816200050660201b60201c565b50505050505062000d41565b600033905090565b6200045f816003620006d560201b62004bb91790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b620004c081600b620006d560201b62004bb91790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b62000516620007b960201b60201c565b62000589576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156200062d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f496e76616c6964206e6577206f776e657220616464726573730000000000000081525060200191505060405180910390fd5b60006200063f6200082060201b60201c565b905062000652826200044460201b60201c565b6200066382620004a560201b60201c565b62000679826200084a60201b620046c41760201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614620006d157620006bf81620008e160201b60201c565b620006d0816200094260201b60201c565b5b5050565b620006e78282620009a360201b60201c565b156200075b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16620008046200043c60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6200085a620007b960201b60201c565b620008cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b620008de8162000a8360201b60201c565b50565b620008fc81600362000bcb60201b62004afc1790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669260405160405180910390a250565b6200095d81600b62000bcb60201b62004afc1790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e60405160405180910390a250565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000a2c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018062005ef76022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141562000b0b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018062005eb06026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b62000bdd8282620009a360201b60201c565b62000c34576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018062005ed66021913960400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000cd557805160ff191683800117855562000d06565b8280016001018555821562000d06579182015b8281111562000d0557825182559160200191906001019062000ce8565b5b50905062000d15919062000d19565b5090565b62000d3e91905b8082111562000d3a57600081600090555060010162000d20565b5090565b90565b61515f8062000d516000396000f3fe608060405234801561001057600080fd5b50600436106102485760003560e01c806382dc1ec41161013b578063a9059cbb116100b8578063cef89ee61161007c578063cef89ee614610e7f578063d7e7088a14610f9c578063dd62ed3e14610fe0578063ec715a3114611058578063f2fde38b1461107a57610248565b8063a9059cbb14610a86578063aa271e1a14610aec578063ab67aa5814610b48578063be45fd6214610c65578063c4f2d24914610d6257610248565b806396132521116100ff5780639613252114610966578063983b2d561461098857806398650275146109cc578063a44ec96f146109d6578063a457c2d714610a2057610248565b806382dc1ec4146108295780638456cb591461086d5780638da5cb5b146108775780638f32d59b146108c157806395d89b41146108e357610248565b806342966c68116101c95780635de4ccb01161018d5780635de4ccb0146107255780636ef8d66d1461076f57806370a0823114610779578063715018a6146107d157806379cc6790146107db57610248565b806342966c681461054e57806345977d031461057c57806346fbf68e146105aa5780635c17f9f4146106065780635c975abb1461070357610248565b8063355274ea11610210578063355274ea146103fe578063395093511461041c5780633cf80003146104825780633f4ba83a146104de57806340c10f19146104e857610248565b806306fdde031461024d578063095ea7b3146102d057806318160ddd1461033657806323b872dd14610354578063313ce567146103da575b600080fd5b6102556110be565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561029557808201518184015260208101905061027a565b50505050905090810190601f1680156102c25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61031c600480360360408110156102e657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611160565b604051808215151515815260200191505060405180910390f35b61033e6111f7565b6040518082815260200191505060405180910390f35b6103c06004803603606081101561036a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611201565b604051808215151515815260200191505060405180910390f35b6103e261129a565b604051808260ff1660ff16815260200191505060405180910390f35b6104066112b1565b6040518082815260200191505060405180910390f35b6104686004803603604081101561043257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506112bb565b604051808215151515815260200191505060405180910390f35b6104c46004803603602081101561049857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611352565b604051808215151515815260200191505060405180910390f35b6104e6611536565b005b610534600480360360408110156104fe57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506116a4565b604051808215151515815260200191505060405180910390f35b61057a6004803603602081101561056457600080fd5b810190808035906020019092919050505061171f565b005b6105a86004803603602081101561059257600080fd5b8101908080359060200190929190505050611733565b005b6105ec600480360360208110156105c057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a02565b604051808215151515815260200191505060405180910390f35b6106e96004803603606081101561061c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019064010000000081111561066357600080fd5b82018360208201111561067557600080fd5b8035906020019184600183028401116401000000008311171561069757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611a1f565b604051808215151515815260200191505060405180910390f35b61070b611ab8565b604051808215151515815260200191505060405180910390f35b61072d611acf565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610777611af9565b005b6107bb6004803603602081101561078f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b0b565b6040518082815260200191505060405180910390f35b6107d9611b53565b005b610827600480360360408110156107f157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611c8e565b005b61086b6004803603602081101561083f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c9c565b005b610875611d0d565b005b61087f611e7c565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6108c9611ea6565b604051808215151515815260200191505060405180910390f35b6108eb611f05565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561092b578082015181840152602081019050610910565b50505050905090810190601f1680156109585780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61096e611fa7565b604051808215151515815260200191505060405180910390f35b6109ca6004803603602081101561099e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611fbe565b005b6109d461202f565b005b6109de612041565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610a6c60048036036040811015610a3657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061206b565b604051808215151515815260200191505060405180910390f35b610ad260048036036040811015610a9c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612102565b604051808215151515815260200191505060405180910390f35b610b2e60048036036020811015610b0257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612199565b604051808215151515815260200191505060405180910390f35b610c4b60048036036080811015610b5e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610bc557600080fd5b820183602082011115610bd757600080fd5b80359060200191846001830284011164010000000083111715610bf957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506121b6565b604051808215151515815260200191505060405180910390f35b610d4860048036036060811015610c7b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610cc257600080fd5b820183602082011115610cd457600080fd5b80359060200191846001830284011164010000000083111715610cf657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612292565b604051808215151515815260200191505060405180910390f35b610e6560048036036080811015610d7857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610ddf57600080fd5b820183602082011115610df157600080fd5b80359060200191846001830284011164010000000083111715610e1357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061232b565b604051808215151515815260200191505060405180910390f35b610f8260048036036080811015610e9557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610efc57600080fd5b820183602082011115610f0e57600080fd5b80359060200191846001830284011164010000000083111715610f3057600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506123c6565b604051808215151515815260200191505060405180910390f35b610fde60048036036020811015610fb257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612461565b005b61104260048036036040811015610ff657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061285d565b6040518082815260200191505060405180910390f35b6110606128e4565b604051808215151515815260200191505060405180910390f35b6110bc6004803603602081101561109057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612a95565b005b6060600d8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111565780601f1061112b57610100808354040283529160200191611156565b820191906000526020600020905b81548152906001019060200180831161113957829003601f168201915b5050505050905090565b6000600c60009054906101000a900460ff16156111e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6111ef8383612c24565b905092915050565b6000600254905090565b6000600c60009054906101000a900460ff1615611286576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b611291848484612c42565b90509392505050565b6000600f60009054906101000a900460ff16905090565b6000600454905090565b6000600c60009054906101000a900460ff1615611340576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b61134a8383612d38565b905092915050565b600061135c611ea6565b6113ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611471576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f496e76616c6964204f445220616464726573730000000000000000000000000081525060200191505060405180910390fd5b61147a82612deb565b6114ec576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f4f44522061646472657373206d757374206265206120636f6e7472616374000081525060200191505060405180910390fd5b81600860016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b611546611541612dfe565b611a02565b61159b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180614e0c6030913960400191505060405180910390fd5b600c60009054906101000a900460ff1661161d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611661612dfe565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b60006116b66116b1612dfe565b612199565b61170b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180614ecd6030913960400191505060405180910390fd5b6117158383612e06565b6001905092915050565b61173061172a612dfe565b82612ea5565b50565b60011515600860009054906101000a900460ff161515146117bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f55706772616465206e6f7420616c6c6f7765640000000000000000000000000081525060200191505060405180910390fd5b60008111611815576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614f1e6022913960400191505060405180910390fd5b8061181f33611b0b565b1015611893576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f416d6f756e74206578636565647320746f6b656e73206f776e6564000000000081525060200191505060405180910390fd5b61189c8161171f565b6118b18160075461305d90919063ffffffff16565b600781905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663753e88e533836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b15801561196057600080fd5b505af1158015611974573d6000803e3d6000fd5b50505050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f7e5c344a8141a805725cb476f76c6953b842222b967edd1f78ddb6e8b3f397ac836040518082815260200191505060405180910390a350565b6000611a1882600b6130e590919063ffffffff16565b9050919050565b6000600c60009054906101000a900460ff1615611aa4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b611aaf8484846131c3565b90509392505050565b6000600c60009054906101000a900460ff16905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611b09611b04612dfe565b6131e3565b565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611b5b611ea6565b611bcd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611c98828261323d565b5050565b611cac611ca7612dfe565b611a02565b611d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180614e0c6030913960400191505060405180910390fd5b611d0a8161330c565b50565b611d1d611d18612dfe565b611a02565b611d72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180614e0c6030913960400191505060405180910390fd5b600c60009054906101000a900460ff1615611df5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600c60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611e39612dfe565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611ee9612dfe565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b6060600e8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611f9d5780601f10611f7257610100808354040283529160200191611f9d565b820191906000526020600020905b815481529060010190602001808311611f8057829003601f168201915b5050505050905090565b6000600a60009054906101000a900460ff16905090565b611fce611fc9612dfe565b612199565b612023576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180614ecd6030913960400191505060405180910390fd5b61202c81613366565b50565b61203f61203a612dfe565b6133c0565b565b6000600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600c60009054906101000a900460ff16156120f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6120fa838361341a565b905092915050565b6000600c60009054906101000a900460ff1615612187576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b61219183836134e7565b905092915050565b60006121af8260036130e590919063ffffffff16565b9050919050565b60006121c485858585613522565b612286856121d0612dfe565b61228086604051806060016040528060298152602001614f4060299139600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000612236612dfe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139399092919063ffffffff16565b856139f9565b60019050949350505050565b6000600c60009054906101000a900460ff1615612317576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b612322848484613d51565b90509392505050565b6000600c60009054906101000a900460ff16156123b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6123bc85858585613d71565b9050949350505050565b6000600c60009054906101000a900460ff161561244b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b61245785858585614196565b9050949350505050565b612469611ea6565b6124db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600060075414612553576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f5570677261646520697320616c726561647920696e2070726f6772657373000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806150776025913960400191505060405180910390fd5b6000819050600115158173ffffffffffffffffffffffffffffffffffffffff166361d3d7a66040518163ffffffff1660e01b815260040160206040518083038186803b15801561262857600080fd5b505afa15801561263c573d6000803e3d6000fd5b505050506040513d602081101561265257600080fd5b81019080805190602001909291905050501515146126bb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180614e626024913960400191505060405180910390fd5b6126c36112b1565b8173ffffffffffffffffffffffffffffffffffffffff16634b2ba0dd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561270957600080fd5b505afa15801561271d573d6000803e3d6000fd5b505050506040513d602081101561273357600080fd5b81019080805190602001909291905050501461279a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806150046026913960400191505060405180910390fd5b81600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600860006101000a81548160ff0219169083151502179055507f7845d5aa74cc410e35571258d954f23b82276e160fe8c188fa80566580f279cc82604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a15050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60006128ee611ea6565b612960576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612a08576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180614fb1602e913960400191505060405180910390fd5b6000612a2b612a156111f7565b612a1d6112b1565b61467a90919063ffffffff16565b90506000811115612a6457612a62600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826116a4565b505b6001600a60006101000a81548160ff021916908315150217905550600a60009054906101000a900460ff1691505090565b612a9d611ea6565b612b0f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612bb2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f496e76616c6964206e6577206f776e657220616464726573730000000000000081525060200191505060405180910390fd5b6000612bbc611e7c565b9050612bc782613366565b612bd08261330c565b612bd9826146c4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612c2057612c16816133c0565b612c1f816131e3565b5b5050565b6000612c38612c31612dfe565b848461474a565b6001905092915050565b6000606060405180604001604052806004815260200160008152509050612c6b85858584613522565b612d2c85612c77612dfe565b612d2786604051806060016040528060298152602001614f4060299139600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000612cdd612dfe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139399092919063ffffffff16565b61474a565b60019150509392505050565b6000612de1612d45612dfe565b84612ddc8560016000612d56612dfe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461305d90919063ffffffff16565b61474a565b6001905092915050565b600080823b905060008111915050919050565b600033905090565b600454612e2382612e156111f7565b61305d90919063ffffffff16565b1115612e97576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f4552433232334361707065643a2063617020657863656564656400000000000081525060200191505060405180910390fd5b612ea18282614941565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f2b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061509c6022913960400191505060405180910390fd5b612f9681604051806060016040528060238152602001614eaa602391396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139399092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612fed8160025461467a90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000808284019050838110156130db576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561316c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614f696022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60006131d86131d0612dfe565b8585856139f9565b600190509392505050565b6131f781600b614afc90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e60405160405180910390a250565b6132478282612ea5565b61330882613253612dfe565b61330384604051806060016040528060258152602001614fdf60259139600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006132b9612dfe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139399092919063ffffffff16565b61474a565b5050565b61332081600b614bb990919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b61337a816003614bb990919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b6133d4816003614afc90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669260405160405180910390a250565b60006134dd613427612dfe565b846134d8856040518060600160405280602581526020016150e36025913960016000613451612dfe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139399092919063ffffffff16565b61474a565b6001905092915050565b600060606040518060400160405280600481526020016000815250905061351761350f612dfe565b858584613522565b600191505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156135a8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180614f8b6026913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561362e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180614e866024913960400191505060405180910390fd5b6136998260405180606001604052806027815260200161502a602791396000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139399092919063ffffffff16565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061372c826000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461305d90919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061377783612deb565b80156137b657508273ffffffffffffffffffffffffffffffffffffffff1661379d612dfe565b73ffffffffffffffffffffffffffffffffffffffff1614155b156138ce5760008390508073ffffffffffffffffffffffffffffffffffffffff1663c0ee0b8a8685856040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561386657808201518184015260208101905061384b565b50505050905090810190601f1680156138935780820380516001836020036101000a031916815260200191505b50945050505050600060405180830381600087803b1580156138b457600080fd5b505af11580156138c8573d6000803e3d6000fd5b50505050505b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a350505050565b60008383111582906139e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156139ab578082015181840152602081019050613990565b50505050905090810190601f1680156139d85780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613a7f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806150be6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613b05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806151086023913960400191505060405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613b8f83612deb565b8015613bce57508273ffffffffffffffffffffffffffffffffffffffff16613bb5612dfe565b73ffffffffffffffffffffffffffffffffffffffff1614155b15613ce65760008390508073ffffffffffffffffffffffffffffffffffffffff1663e64551638685856040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015613c7e578082015181840152602081019050613c63565b50505050905090810190601f168015613cab5780820380516001836020036101000a031916815260200191505b50945050505050600060405180830381600087803b158015613ccc57600080fd5b505af1158015613ce0573d6000803e3d6000fd5b50505050505b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a350505050565b6000613d66613d5e612dfe565b858585613522565b600190509392505050565b600080613d7c612dfe565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613e04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806150be6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613e8a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806151086023913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415613f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180614ddb6031913960400191505060405180910390fd5b83600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613f9985612deb565b8015613fd857508473ffffffffffffffffffffffffffffffffffffffff16613fbf612dfe565b73ffffffffffffffffffffffffffffffffffffffff1614155b156141245760008590508073ffffffffffffffffffffffffffffffffffffffff16636b1a8fc2838988886040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156140bb5780820151818401526020810190506140a0565b50505050905090810190601f1680156140e85780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b15801561410a57600080fd5b505af115801561411e573d6000803e3d6000fd5b50505050505b8473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925866040518082815260200191505060405180910390a36001915050949350505050565b6000806141a1612dfe565b9050600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415614229576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806150516026913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156142af576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180614e866024913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415614334576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180614ddb6031913960400191505060405180910390fd5b61439f8460405180606001604052806027815260200161502a602791396000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139399092919063ffffffff16565b6000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614432846000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461305d90919063ffffffff16565b6000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061447d85612deb565b80156144bc57508473ffffffffffffffffffffffffffffffffffffffff166144a3612dfe565b73ffffffffffffffffffffffffffffffffffffffff1614155b156146085760008590508073ffffffffffffffffffffffffffffffffffffffff16633bcd371a838988886040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561459f578082015181840152602081019050614584565b50505050905090810190601f1680156145cc5780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1580156145ee57600080fd5b505af1158015614602573d6000803e3d6000fd5b50505050505b8473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a36001915050949350505050565b60006146bc83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613939565b905092915050565b6146cc611ea6565b61473e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61474781614c94565b50565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156147d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806150be6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614856576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806151086023913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156149e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433232333a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b6149f98160025461305d90919063ffffffff16565b600281905550614a50816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461305d90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b614b0682826130e5565b614b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180614efd6021913960400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b614bc382826130e5565b15614c36576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415614d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180614e3c6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505056fe4552433232333a2073656e64657220616e642062656e65666963696172792063616e6e6f74206265207468652073616d65506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c654f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373416464726573732070726f766964656420697320616e20696e76616c6964206167656e744552433232333a207472616e7366657220746f20746865207a65726f20616464726573734552433232333a206275726e20616d6f756e7420657863656564732062616c616e63654d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65416d6f756e742073686f756c642062652067726561746572207468616e207a65726f4552433232333a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f20616464726573734552433232333a207472616e736665722066726f6d20746865207a65726f20616464726573734f44522041646472657373206d75737420626520736574206265666f72652072656c656173696e6720746f6b656e4552433232333a206275726e20616d6f756e74206578636565647320616c6c6f77616e636555706772616465206167656e742073686f756c642068617665207468652073616d65206361704552433232333a207472616e7366657220616d6f756e7420657863656564732062616c616e6365455243323233453a207472616e7366657220666f7220746865207a65726f206164647265737355706772616465206167656e742063616e206e6f74206265206174206164647265737320304552433232333a206275726e2066726f6d20746865207a65726f20616464726573734552433232333a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4552433232333a20617070726f766520746f20746865207a65726f2061646472657373a265627a7a7231582035f75cf21b60fd89a984667366a5c862adb285bdc02a3365475cda036005e7e964736f6c634300050b00324f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65526f6c65733a206163636f756e7420697320746865207a65726f206164647265737300000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000001743b34e18439b5020000000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000005e0be100000000000000000000000000fd26e0b9178acbe9d783d3d80f259b6ff6e80fdd000000000000000000000000000000000000000000000000000000000000000a694f574e20546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004694f574e00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102485760003560e01c806382dc1ec41161013b578063a9059cbb116100b8578063cef89ee61161007c578063cef89ee614610e7f578063d7e7088a14610f9c578063dd62ed3e14610fe0578063ec715a3114611058578063f2fde38b1461107a57610248565b8063a9059cbb14610a86578063aa271e1a14610aec578063ab67aa5814610b48578063be45fd6214610c65578063c4f2d24914610d6257610248565b806396132521116100ff5780639613252114610966578063983b2d561461098857806398650275146109cc578063a44ec96f146109d6578063a457c2d714610a2057610248565b806382dc1ec4146108295780638456cb591461086d5780638da5cb5b146108775780638f32d59b146108c157806395d89b41146108e357610248565b806342966c68116101c95780635de4ccb01161018d5780635de4ccb0146107255780636ef8d66d1461076f57806370a0823114610779578063715018a6146107d157806379cc6790146107db57610248565b806342966c681461054e57806345977d031461057c57806346fbf68e146105aa5780635c17f9f4146106065780635c975abb1461070357610248565b8063355274ea11610210578063355274ea146103fe578063395093511461041c5780633cf80003146104825780633f4ba83a146104de57806340c10f19146104e857610248565b806306fdde031461024d578063095ea7b3146102d057806318160ddd1461033657806323b872dd14610354578063313ce567146103da575b600080fd5b6102556110be565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561029557808201518184015260208101905061027a565b50505050905090810190601f1680156102c25780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61031c600480360360408110156102e657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611160565b604051808215151515815260200191505060405180910390f35b61033e6111f7565b6040518082815260200191505060405180910390f35b6103c06004803603606081101561036a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611201565b604051808215151515815260200191505060405180910390f35b6103e261129a565b604051808260ff1660ff16815260200191505060405180910390f35b6104066112b1565b6040518082815260200191505060405180910390f35b6104686004803603604081101561043257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506112bb565b604051808215151515815260200191505060405180910390f35b6104c46004803603602081101561049857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611352565b604051808215151515815260200191505060405180910390f35b6104e6611536565b005b610534600480360360408110156104fe57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506116a4565b604051808215151515815260200191505060405180910390f35b61057a6004803603602081101561056457600080fd5b810190808035906020019092919050505061171f565b005b6105a86004803603602081101561059257600080fd5b8101908080359060200190929190505050611733565b005b6105ec600480360360208110156105c057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a02565b604051808215151515815260200191505060405180910390f35b6106e96004803603606081101561061c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291908035906020019064010000000081111561066357600080fd5b82018360208201111561067557600080fd5b8035906020019184600183028401116401000000008311171561069757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050611a1f565b604051808215151515815260200191505060405180910390f35b61070b611ab8565b604051808215151515815260200191505060405180910390f35b61072d611acf565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610777611af9565b005b6107bb6004803603602081101561078f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b0b565b6040518082815260200191505060405180910390f35b6107d9611b53565b005b610827600480360360408110156107f157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611c8e565b005b61086b6004803603602081101561083f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611c9c565b005b610875611d0d565b005b61087f611e7c565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b6108c9611ea6565b604051808215151515815260200191505060405180910390f35b6108eb611f05565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561092b578082015181840152602081019050610910565b50505050905090810190601f1680156109585780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61096e611fa7565b604051808215151515815260200191505060405180910390f35b6109ca6004803603602081101561099e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611fbe565b005b6109d461202f565b005b6109de612041565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610a6c60048036036040811015610a3657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061206b565b604051808215151515815260200191505060405180910390f35b610ad260048036036040811015610a9c57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050612102565b604051808215151515815260200191505060405180910390f35b610b2e60048036036020811015610b0257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612199565b604051808215151515815260200191505060405180910390f35b610c4b60048036036080811015610b5e57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610bc557600080fd5b820183602082011115610bd757600080fd5b80359060200191846001830284011164010000000083111715610bf957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506121b6565b604051808215151515815260200191505060405180910390f35b610d4860048036036060811015610c7b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610cc257600080fd5b820183602082011115610cd457600080fd5b80359060200191846001830284011164010000000083111715610cf657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f820116905080830192505050505050509192919290505050612292565b604051808215151515815260200191505060405180910390f35b610e6560048036036080811015610d7857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610ddf57600080fd5b820183602082011115610df157600080fd5b80359060200191846001830284011164010000000083111715610e1357600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f82011690508083019250505050505050919291929050505061232b565b604051808215151515815260200191505060405180910390f35b610f8260048036036080811015610e9557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190640100000000811115610efc57600080fd5b820183602082011115610f0e57600080fd5b80359060200191846001830284011164010000000083111715610f3057600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600081840152601f19601f8201169050808301925050505050505091929192905050506123c6565b604051808215151515815260200191505060405180910390f35b610fde60048036036020811015610fb257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612461565b005b61104260048036036040811015610ff657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061285d565b6040518082815260200191505060405180910390f35b6110606128e4565b604051808215151515815260200191505060405180910390f35b6110bc6004803603602081101561109057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050612a95565b005b6060600d8054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156111565780601f1061112b57610100808354040283529160200191611156565b820191906000526020600020905b81548152906001019060200180831161113957829003601f168201915b5050505050905090565b6000600c60009054906101000a900460ff16156111e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6111ef8383612c24565b905092915050565b6000600254905090565b6000600c60009054906101000a900460ff1615611286576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b611291848484612c42565b90509392505050565b6000600f60009054906101000a900460ff16905090565b6000600454905090565b6000600c60009054906101000a900460ff1615611340576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b61134a8383612d38565b905092915050565b600061135c611ea6565b6113ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611471576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f496e76616c6964204f445220616464726573730000000000000000000000000081525060200191505060405180910390fd5b61147a82612deb565b6114ec576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f4f44522061646472657373206d757374206265206120636f6e7472616374000081525060200191505060405180910390fd5b81600860016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b611546611541612dfe565b611a02565b61159b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180614e0c6030913960400191505060405180910390fd5b600c60009054906101000a900460ff1661161d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f5061757361626c653a206e6f742070617573656400000000000000000000000081525060200191505060405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa611661612dfe565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b60006116b66116b1612dfe565b612199565b61170b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180614ecd6030913960400191505060405180910390fd5b6117158383612e06565b6001905092915050565b61173061172a612dfe565b82612ea5565b50565b60011515600860009054906101000a900460ff161515146117bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f55706772616465206e6f7420616c6c6f7765640000000000000000000000000081525060200191505060405180910390fd5b60008111611815576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614f1e6022913960400191505060405180910390fd5b8061181f33611b0b565b1015611893576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f416d6f756e74206578636565647320746f6b656e73206f776e6564000000000081525060200191505060405180910390fd5b61189c8161171f565b6118b18160075461305d90919063ffffffff16565b600781905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663753e88e533836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050600060405180830381600087803b15801561196057600080fd5b505af1158015611974573d6000803e3d6000fd5b50505050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f7e5c344a8141a805725cb476f76c6953b842222b967edd1f78ddb6e8b3f397ac836040518082815260200191505060405180910390a350565b6000611a1882600b6130e590919063ffffffff16565b9050919050565b6000600c60009054906101000a900460ff1615611aa4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b611aaf8484846131c3565b90509392505050565b6000600c60009054906101000a900460ff16905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611b09611b04612dfe565b6131e3565b565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611b5b611ea6565b611bcd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b611c98828261323d565b5050565b611cac611ca7612dfe565b611a02565b611d01576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180614e0c6030913960400191505060405180910390fd5b611d0a8161330c565b50565b611d1d611d18612dfe565b611a02565b611d72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180614e0c6030913960400191505060405180910390fd5b600c60009054906101000a900460ff1615611df5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6001600c60006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611e39612dfe565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a1565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16611ee9612dfe565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b6060600e8054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611f9d5780601f10611f7257610100808354040283529160200191611f9d565b820191906000526020600020905b815481529060010190602001808311611f8057829003601f168201915b5050505050905090565b6000600a60009054906101000a900460ff16905090565b611fce611fc9612dfe565b612199565b612023576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180614ecd6030913960400191505060405180910390fd5b61202c81613366565b50565b61203f61203a612dfe565b6133c0565b565b6000600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600c60009054906101000a900460ff16156120f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6120fa838361341a565b905092915050565b6000600c60009054906101000a900460ff1615612187576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b61219183836134e7565b905092915050565b60006121af8260036130e590919063ffffffff16565b9050919050565b60006121c485858585613522565b612286856121d0612dfe565b61228086604051806060016040528060298152602001614f4060299139600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000612236612dfe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139399092919063ffffffff16565b856139f9565b60019050949350505050565b6000600c60009054906101000a900460ff1615612317576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b612322848484613d51565b90509392505050565b6000600c60009054906101000a900460ff16156123b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b6123bc85858585613d71565b9050949350505050565b6000600c60009054906101000a900460ff161561244b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260108152602001807f5061757361626c653a207061757365640000000000000000000000000000000081525060200191505060405180910390fd5b61245785858585614196565b9050949350505050565b612469611ea6565b6124db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600060075414612553576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f5570677261646520697320616c726561647920696e2070726f6772657373000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806150776025913960400191505060405180910390fd5b6000819050600115158173ffffffffffffffffffffffffffffffffffffffff166361d3d7a66040518163ffffffff1660e01b815260040160206040518083038186803b15801561262857600080fd5b505afa15801561263c573d6000803e3d6000fd5b505050506040513d602081101561265257600080fd5b81019080805190602001909291905050501515146126bb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180614e626024913960400191505060405180910390fd5b6126c36112b1565b8173ffffffffffffffffffffffffffffffffffffffff16634b2ba0dd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561270957600080fd5b505afa15801561271d573d6000803e3d6000fd5b505050506040513d602081101561273357600080fd5b81019080805190602001909291905050501461279a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806150046026913960400191505060405180910390fd5b81600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600860006101000a81548160ff0219169083151502179055507f7845d5aa74cc410e35571258d954f23b82276e160fe8c188fa80566580f279cc82604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390a15050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60006128ee611ea6565b612960576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612a08576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180614fb1602e913960400191505060405180910390fd5b6000612a2b612a156111f7565b612a1d6112b1565b61467a90919063ffffffff16565b90506000811115612a6457612a62600860019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826116a4565b505b6001600a60006101000a81548160ff021916908315150217905550600a60009054906101000a900460ff1691505090565b612a9d611ea6565b612b0f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612bb2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f496e76616c6964206e6577206f776e657220616464726573730000000000000081525060200191505060405180910390fd5b6000612bbc611e7c565b9050612bc782613366565b612bd08261330c565b612bd9826146c4565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612c2057612c16816133c0565b612c1f816131e3565b5b5050565b6000612c38612c31612dfe565b848461474a565b6001905092915050565b6000606060405180604001604052806004815260200160008152509050612c6b85858584613522565b612d2c85612c77612dfe565b612d2786604051806060016040528060298152602001614f4060299139600160008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000612cdd612dfe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139399092919063ffffffff16565b61474a565b60019150509392505050565b6000612de1612d45612dfe565b84612ddc8560016000612d56612dfe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461305d90919063ffffffff16565b61474a565b6001905092915050565b600080823b905060008111915050919050565b600033905090565b600454612e2382612e156111f7565b61305d90919063ffffffff16565b1115612e97576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601a8152602001807f4552433232334361707065643a2063617020657863656564656400000000000081525060200191505060405180910390fd5b612ea18282614941565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612f2b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061509c6022913960400191505060405180910390fd5b612f9681604051806060016040528060238152602001614eaa602391396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139399092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612fed8160025461467a90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6000808284019050838110156130db576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561316c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180614f696022913960400191505060405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60006131d86131d0612dfe565b8585856139f9565b600190509392505050565b6131f781600b614afc90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fcd265ebaf09df2871cc7bd4133404a235ba12eff2041bb89d9c714a2621c7c7e60405160405180910390a250565b6132478282612ea5565b61330882613253612dfe565b61330384604051806060016040528060258152602001614fdf60259139600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006132b9612dfe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139399092919063ffffffff16565b61474a565b5050565b61332081600b614bb990919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6719d08c1888103bea251a4ed56406bd0c3e69723c8a1686e017e7bbe159b6f860405160405180910390a250565b61337a816003614bb990919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f660405160405180910390a250565b6133d4816003614afc90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669260405160405180910390a250565b60006134dd613427612dfe565b846134d8856040518060600160405280602581526020016150e36025913960016000613451612dfe565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139399092919063ffffffff16565b61474a565b6001905092915050565b600060606040518060400160405280600481526020016000815250905061351761350f612dfe565b858584613522565b600191505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156135a8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180614f8b6026913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561362e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180614e866024913960400191505060405180910390fd5b6136998260405180606001604052806027815260200161502a602791396000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139399092919063ffffffff16565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061372c826000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461305d90919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061377783612deb565b80156137b657508273ffffffffffffffffffffffffffffffffffffffff1661379d612dfe565b73ffffffffffffffffffffffffffffffffffffffff1614155b156138ce5760008390508073ffffffffffffffffffffffffffffffffffffffff1663c0ee0b8a8685856040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561386657808201518184015260208101905061384b565b50505050905090810190601f1680156138935780820380516001836020036101000a031916815260200191505b50945050505050600060405180830381600087803b1580156138b457600080fd5b505af11580156138c8573d6000803e3d6000fd5b50505050505b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040518082815260200191505060405180910390a350505050565b60008383111582906139e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156139ab578082015181840152602081019050613990565b50505050905090810190601f1680156139d85780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613a7f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806150be6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613b05576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806151086023913960400191505060405180910390fd5b81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613b8f83612deb565b8015613bce57508273ffffffffffffffffffffffffffffffffffffffff16613bb5612dfe565b73ffffffffffffffffffffffffffffffffffffffff1614155b15613ce65760008390508073ffffffffffffffffffffffffffffffffffffffff1663e64551638685856040518463ffffffff1660e01b8152600401808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b83811015613c7e578082015181840152602081019050613c63565b50505050905090810190601f168015613cab5780820380516001836020036101000a031916815260200191505b50945050505050600060405180830381600087803b158015613ccc57600080fd5b505af1158015613ce0573d6000803e3d6000fd5b50505050505b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040518082815260200191505060405180910390a350505050565b6000613d66613d5e612dfe565b858585613522565b600190509392505050565b600080613d7c612dfe565b9050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613e04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806150be6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613e8a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806151086023913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415613f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180614ddb6031913960400191505060405180910390fd5b83600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613f9985612deb565b8015613fd857508473ffffffffffffffffffffffffffffffffffffffff16613fbf612dfe565b73ffffffffffffffffffffffffffffffffffffffff1614155b156141245760008590508073ffffffffffffffffffffffffffffffffffffffff16636b1a8fc2838988886040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b838110156140bb5780820151818401526020810190506140a0565b50505050905090810190601f1680156140e85780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b15801561410a57600080fd5b505af115801561411e573d6000803e3d6000fd5b50505050505b8473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925866040518082815260200191505060405180910390a36001915050949350505050565b6000806141a1612dfe565b9050600073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415614229576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806150516026913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156142af576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180614e866024913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161415614334576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526031815260200180614ddb6031913960400191505060405180910390fd5b61439f8460405180606001604052806027815260200161502a602791396000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546139399092919063ffffffff16565b6000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550614432846000808873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461305d90919063ffffffff16565b6000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061447d85612deb565b80156144bc57508473ffffffffffffffffffffffffffffffffffffffff166144a3612dfe565b73ffffffffffffffffffffffffffffffffffffffff1614155b156146085760008590508073ffffffffffffffffffffffffffffffffffffffff16633bcd371a838988886040518563ffffffff1660e01b8152600401808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200183815260200180602001828103825283818151815260200191508051906020019080838360005b8381101561459f578082015181840152602081019050614584565b50505050905090810190601f1680156145cc5780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1580156145ee57600080fd5b505af1158015614602573d6000803e3d6000fd5b50505050505b8473ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040518082815260200191505060405180910390a36001915050949350505050565b60006146bc83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613939565b905092915050565b6146cc611ea6565b61473e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b61474781614c94565b50565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156147d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806150be6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415614856576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806151086023913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156149e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4552433232333a206d696e7420746f20746865207a65726f206164647265737381525060200191505060405180910390fd5b6149f98160025461305d90919063ffffffff16565b600281905550614a50816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461305d90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b614b0682826130e5565b614b5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180614efd6021913960400191505060405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b614bc382826130e5565b15614c36576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f526f6c65733a206163636f756e7420616c72656164792068617320726f6c650081525060200191505060405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415614d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526026815260200180614e3c6026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505056fe4552433232333a2073656e64657220616e642062656e65666963696172792063616e6e6f74206265207468652073616d65506175736572526f6c653a2063616c6c657220646f6573206e6f742068617665207468652050617573657220726f6c654f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373416464726573732070726f766964656420697320616e20696e76616c6964206167656e744552433232333a207472616e7366657220746f20746865207a65726f20616464726573734552433232333a206275726e20616d6f756e7420657863656564732062616c616e63654d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65416d6f756e742073686f756c642062652067726561746572207468616e207a65726f4552433232333a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365526f6c65733a206163636f756e7420697320746865207a65726f20616464726573734552433232333a207472616e736665722066726f6d20746865207a65726f20616464726573734f44522041646472657373206d75737420626520736574206265666f72652072656c656173696e6720746f6b656e4552433232333a206275726e20616d6f756e74206578636565647320616c6c6f77616e636555706772616465206167656e742073686f756c642068617665207468652073616d65206361704552433232333a207472616e7366657220616d6f756e7420657863656564732062616c616e6365455243323233453a207472616e7366657220666f7220746865207a65726f206164647265737355706772616465206167656e742063616e206e6f74206265206174206164647265737320304552433232333a206275726e2066726f6d20746865207a65726f20616464726573734552433232333a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f4552433232333a20617070726f766520746f20746865207a65726f2061646472657373a265627a7a7231582035f75cf21b60fd89a984667366a5c862adb285bdc02a3365475cda036005e7e964736f6c634300050b0032

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

00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000001743b34e18439b5020000000000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000005e0be100000000000000000000000000fd26e0b9178acbe9d783d3d80f259b6ff6e80fdd000000000000000000000000000000000000000000000000000000000000000a694f574e20546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004694f574e00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): iOWN Token
Arg [1] : symbol (string): iOWN
Arg [2] : totalSupply (uint256): 450000000000000000000000000
Arg [3] : decimals (uint8): 18
Arg [4] : releaseDate (uint256): 1577836800
Arg [5] : managingWallet (address): 0xFd26e0b9178AcBe9D783D3d80F259b6fF6E80FDD

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 000000000000000000000000000000000000000001743b34e18439b502000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 000000000000000000000000000000000000000000000000000000005e0be100
Arg [5] : 000000000000000000000000fd26e0b9178acbe9d783d3d80f259b6ff6e80fdd
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [7] : 694f574e20546f6b656e00000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [9] : 694f574e00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

49424:1159:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;49424:1159:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10351:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;10351:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35805:140;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;35805:140:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;17989:91;;;:::i;:::-;;;;;;;;;;;;;;;;;;;35637:160;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;35637:160:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11203:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;42093:75;;;:::i;:::-;;;;;;;;;;;;;;;;;;;35953:170;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;35953:170:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;48565:296;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;48565:296:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;35117:120;;;:::i;:::-;;41360:143;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;41360:143:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;42987:83;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;42987:83:0;;;;;;;;;;;;;;;;;:::i;:::-;;45656:521;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;45656:521:0;;;;;;;;;;;;;;;;;:::i;:::-;;32613:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;32613:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;36571:167;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;36571:167:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;36571:167:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;36571:167:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;36571:167:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;36571:167:0;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;34324:78;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;45386:93;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;32830:79;;;:::i;:::-;;18144:110;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;18144:110:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;38968:140;;;:::i;:::-;;43132:103;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;43132:103:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;32730:92;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;32730:92:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;34904:118;;;:::i;:::-;;38157:79;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;38523:94;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;10553:87;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;10553:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48955:82;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;40398:92;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;40398:92:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;40498:79;;;:::i;:::-;;49130:82;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;36131:180;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;36131:180:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;35497:132;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;35497:132:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;40281:109;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;40281:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;19763:425;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;19763:425:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;19763:425:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;19763:425:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;19763:425:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;19763:425:0;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;36352:181;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;36352:181:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;36352:181:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;36352:181:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;36352:181:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;36352:181:0;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;37043:207;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;37043:207:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;37043:207:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;37043:207:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;37043:207:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;37043:207:0;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;36784:213;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;36784:213:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;36784:213:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;36784:213:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;36784:213:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;93:3;85:6;81:16;74:27;137:4;133:9;126:4;121:3;117:14;113:30;106:37;;169:3;161:6;157:16;147:26;;36784:213:0;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;46366:566;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;46366:566:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;18744:134;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;18744:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;48001:378;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;50171:409;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;50171:409:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;10351:83;10388:13;10421:5;10414:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10351:83;:::o;35805:140::-;35884:4;34561:7;;;;;;;;;;;34560:8;34552:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35908:29;35922:7;35931:5;35908:13;:29::i;:::-;35901:36;;35805:140;;;;:::o;17989:91::-;18033:7;18060:12;;18053:19;;17989:91;:::o;35637:160::-;35730:4;34561:7;;;;;;;;;;;34560:8;34552:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35754:35;35773:4;35779:2;35783:5;35754:18;:35::i;:::-;35747:42;;35637:160;;;;;:::o;11203:83::-;11244:5;11269:9;;;;;;;;;;;11262:16;;11203:83;:::o;42093:75::-;42129:7;42156:4;;42149:11;;42093:75;:::o;35953:170::-;36047:4;34561:7;;;;;;;;;;;34560:8;34552:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36071:44;36095:7;36104:10;36071:23;:44::i;:::-;36064:51;;35953:170;;;;:::o;48565:296::-;48629:14;38369:9;:7;:9::i;:::-;38361:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48686:1;48664:24;;:10;:24;;;;48656:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48731:30;48750:10;48731:18;:30::i;:::-;48723:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48821:10;48807:11;;:24;;;;;;;;;;;;;;;;;;48849:4;48842:11;;48565:296;;;:::o;35117:120::-;32510:22;32519:12;:10;:12::i;:::-;32510:8;:22::i;:::-;32502:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34760:7;;;;;;;;;;;34752:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35186:5;35176:7;;:15;;;;;;;;;;;;;;;;;;35207:22;35216:12;:10;:12::i;:::-;35207:22;;;;;;;;;;;;;;;;;;;;;;35117:120::o;41360:143::-;41434:4;40178:22;40187:12;:10;:12::i;:::-;40178:8;:22::i;:::-;40170:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41451:22;41457:7;41466:6;41451:5;:22::i;:::-;41491:4;41484:11;;41360:143;;;;:::o;42987:83::-;43035:27;43041:12;:10;:12::i;:::-;43055:6;43035:5;:27::i;:::-;42987:83;:::o;45656:521::-;45046:4;45029:21;;:13;;;;;;;;;;;:21;;;45021:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45739:1;45730:6;:10;45722:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45823:6;45798:21;45808:10;45798:9;:21::i;:::-;:31;;45790:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45903:12;45908:6;45903:4;:12::i;:::-;45943:26;45962:6;45943:14;;:18;;:26;;;;:::i;:::-;45926:14;:43;;;;46065:13;;;;;;;;;;;46046:45;;;46092:10;46104:6;46046:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;46046:65:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;46046:65:0;;;;46147:13;;;;;;;;;;;46127:42;;46135:10;46127:42;;;46162:6;46127:42;;;;;;;;;;;;;;;;;;45656:521;:::o;32613:109::-;32669:4;32693:21;32706:7;32693:8;:12;;:21;;;;:::i;:::-;32686:28;;32613:109;;;:::o;36571:167::-;36670:4;34561:7;;;;;;;;;;;34560:8;34552:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36694:36;36708:7;36717:6;36725:4;36694:13;:36::i;:::-;36687:43;;36571:167;;;;;:::o;34324:78::-;34363:4;34387:7;;;;;;;;;;;34380:14;;34324:78;:::o;45386:93::-;45431:7;45458:13;;;;;;;;;;;45451:20;;45386:93;:::o;32830:79::-;32874:27;32888:12;:10;:12::i;:::-;32874:13;:27::i;:::-;32830:79::o;18144:110::-;18201:7;18228:9;:18;18238:7;18228:18;;;;;;;;;;;;;;;;18221:25;;18144:110;;;:::o;38968:140::-;38369:9;:7;:9::i;:::-;38361:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39067:1;39030:40;;39051:6;;;;;;;;;;;39030:40;;;;;;;;;;;;39098:1;39081:6;;:19;;;;;;;;;;;;;;;;;;38968:140::o;43132:103::-;43201:26;43211:7;43220:6;43201:9;:26::i;:::-;43132:103;;:::o;32730:92::-;32510:22;32519:12;:10;:12::i;:::-;32510:8;:22::i;:::-;32502:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32795:19;32806:7;32795:10;:19::i;:::-;32730:92;:::o;34904:118::-;32510:22;32519:12;:10;:12::i;:::-;32510:8;:22::i;:::-;32502:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34561:7;;;;;;;;;;;34560:8;34552:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34974:4;34964:7;;:14;;;;;;;;;;;;;;;;;;34994:20;35001:12;:10;:12::i;:::-;34994:20;;;;;;;;;;;;;;;;;;;;;;34904:118::o;38157:79::-;38195:7;38222:6;;;;;;;;;;;38215:13;;38157:79;:::o;38523:94::-;38563:4;38603:6;;;;;;;;;;;38587:22;;:12;:10;:12::i;:::-;:22;;;38580:29;;38523:94;:::o;10553:87::-;10592:13;10625:7;10618:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10553:87;:::o;48955:82::-;48996:4;49020:9;;;;;;;;;;;49013:16;;48955:82;:::o;40398:92::-;40178:22;40187:12;:10;:12::i;:::-;40178:8;:22::i;:::-;40170:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40463:19;40474:7;40463:10;:19::i;:::-;40398:92;:::o;40498:79::-;40542:27;40556:12;:10;:12::i;:::-;40542:13;:27::i;:::-;40498:79::o;49130:82::-;49166:7;49193:11;;;;;;;;;;;49186:18;;49130:82;:::o;36131:180::-;36230:4;34561:7;;;;;;;;;;;34560:8;34552:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36254:49;36278:7;36287:15;36254:23;:49::i;:::-;36247:56;;36131:180;;;;:::o;35497:132::-;35572:4;34561:7;;;;;;;;;;;34560:8;34552:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35596:25;35611:2;35615:5;35596:14;:25::i;:::-;35589:32;;35497:132;;;;:::o;40281:109::-;40337:4;40361:21;40374:7;40361:8;:12;;:21;;;;:::i;:::-;40354:28;;40281:109;;;:::o;19763:425::-;19871:4;19888:42;19898:6;19906:9;19917:6;19925:4;19888:9;:42::i;:::-;20030:128;20039:6;20047:12;:10;:12::i;:::-;20061:90;20099:6;20061:90;;;;;;;;;;;;;;;;;:11;:19;20073:6;20061:19;;;;;;;;;;;;;;;:33;20081:12;:10;:12::i;:::-;20061:33;;;;;;;;;;;;;;;;:37;;:90;;;;;:::i;:::-;20153:4;20030:8;:128::i;:::-;20176:4;20169:11;;19763:425;;;;;;:::o;36352:181::-;36454:12;34561:7;;;;;;;;;;;34560:8;34552:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36486:39;36501:9;36512:6;36520:4;36486:14;:39::i;:::-;36479:46;;36352:181;;;;;:::o;37043:207::-;37166:4;34561:7;;;;;;;;;;;34560:8;34552:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37190:52;37207:11;37220:7;37229:6;37237:4;37190:16;:52::i;:::-;37183:59;;37043:207;;;;;;:::o;36784:213::-;36910:4;34561:7;;;;;;;;;;;34560:8;34552:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36934:55;36952:11;36965:9;36976:6;36984:4;36934:17;:55::i;:::-;36927:62;;36784:213;;;;;;:::o;46366:566::-;38369:9;:7;:9::i;:::-;38361:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45265:1;45247:14;;:19;45239:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46481:1;46464:19;;:5;:19;;;;46456:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46536:25;46583:5;46536:53;;46684:4;46657:31;;:6;:21;;;:23;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;46657:23:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;46657:23:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;46657:23:0;;;;;;;;;;;;;;;;:31;;;46649:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46775:5;:3;:5::i;:::-;46748:6;:21;;;:23;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;46748:23:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;46748:23:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;46748:23:0;;;;;;;;;;;;;;;;:32;46740:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46850:5;46834:13;;:21;;;;;;;;;;;;;;;;;;46882:4;46866:13;;:20;;;;;;;;;;;;;;;;;;46902:22;46918:5;46902:22;;;;;;;;;;;;;;;;;;;;;;45312:1;46366:566;:::o;18744:134::-;18816:7;18843:11;:18;18855:5;18843:18;;;;;;;;;;;;;;;:27;18862:7;18843:27;;;;;;;;;;;;;;;;18836:34;;18744:134;;;;:::o;48001:378::-;48053:14;38369:9;:7;:9::i;:::-;38361:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48111:1;48088:25;;:11;;;;;;;;;;;:25;;;;48080:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48175:17;48195:24;48205:13;:11;:13::i;:::-;48195:5;:3;:5::i;:::-;:9;;:24;;;;:::i;:::-;48175:44;;48245:1;48233:9;:13;48230:46;;;48248:28;48253:11;;;;;;;;;;;48266:9;48248:4;:28::i;:::-;;48230:46;48340:4;48328:9;;:16;;;;;;;;;;;;;;;;;;48362:9;;;;;;;;;;;48355:16;;;48001:378;:::o;50171:409::-;38369:9;:7;:9::i;:::-;38361:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50272:1;50252:22;;:8;:22;;;;50244:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50315:16;50334:7;:5;:7::i;:::-;50315:26;;50352:20;50363:8;50352:10;:20::i;:::-;50383;50394:8;50383:10;:20::i;:::-;50414:33;50438:8;50414:23;:33::i;:::-;50481:1;50461:22;;:8;:22;;;50458:115;;50500:23;50514:8;50500:13;:23::i;:::-;50538;50552:8;50538:13;:23::i;:::-;50458:115;38426:1;50171:409;:::o;19026:152::-;19092:4;19109:39;19118:12;:10;:12::i;:::-;19132:7;19141:6;19109:8;:39::i;:::-;19166:4;19159:11;;19026:152;;;;:::o;20744:404::-;20833:4;20850:19;:35;;;;;;;;;;;;;;;;;;;20896:44;20906:6;20914:9;20925:6;20933;20896:9;:44::i;:::-;20982:122;20991:6;20999:12;:10;:12::i;:::-;21013:90;21051:6;21013:90;;;;;;;;;;;;;;;;;:11;:19;21025:6;21013:19;;;;;;;;;;;;;;;:33;21033:12;:10;:12::i;:::-;21013:33;;;;;;;;;;;;;;;;:37;;:90;;;;;:::i;:::-;20982:8;:122::i;:::-;21136:4;21129:11;;;20744:404;;;;;:::o;21558:210::-;21638:4;21655:83;21664:12;:10;:12::i;:::-;21678:7;21687:50;21726:10;21687:11;:25;21699:12;:10;:12::i;:::-;21687:25;;;;;;;;;;;;;;;:34;21713:7;21687:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;21655:8;:83::i;:::-;21756:4;21749:11;;21558:210;;;;:::o;13164:422::-;13224:4;13432:12;13543:7;13531:20;13523:28;;13577:1;13570:4;:8;13563:15;;;13164:422;;;:::o;12138:90::-;12183:7;12210:10;12203:17;;12138:90;:::o;42342:184::-;42445:4;;42417:24;42435:5;42417:13;:11;:13::i;:::-;:17;;:24;;;;:::i;:::-;:32;;42409:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42491:27;42503:7;42512:5;42491:11;:27::i;:::-;42342:184;;:::o;25826:350::-;25921:1;25902:21;;:7;:21;;;;25894:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25996:69;26019:6;25996:69;;;;;;;;;;;;;;;;;:9;:18;26006:7;25996:18;;;;;;;;;;;;;;;;:22;;:69;;;;;:::i;:::-;25975:9;:18;25985:7;25975:18;;;;;;;;;;;;;;;:90;;;;26091:24;26108:6;26091:12;;:16;;:24;;;;:::i;:::-;26076:12;:39;;;;26157:1;26131:37;;26140:7;26131:37;;;26161:6;26131:37;;;;;;;;;;;;;;;;;;25826:350;;:::o;934:181::-;992:7;1012:9;1028:1;1024;:5;1012:17;;1053:1;1048;:6;;1040:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1106:1;1099:8;;;934:181;;;;:::o;31895:203::-;31967:4;32011:1;31992:21;;:7;:21;;;;31984:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32070:4;:11;;:20;32082:7;32070:20;;;;;;;;;;;;;;;;;;;;;;;;;32063:27;;31895:203;;;;:::o;23409:177::-;23494:4;23511:45;23520:12;:10;:12::i;:::-;23534:7;23543:6;23551:4;23511:8;:45::i;:::-;23574:4;23567:11;;23409:177;;;;;:::o;33047:130::-;33107:24;33123:7;33107:8;:15;;:24;;;;:::i;:::-;33161:7;33147:22;;;;;;;;;;;;33047:130;:::o;28448:233::-;28520:22;28526:7;28535:6;28520:5;:22::i;:::-;28553:120;28562:7;28571:12;:10;:12::i;:::-;28585:87;28624:6;28585:87;;;;;;;;;;;;;;;;;:11;:20;28597:7;28585:20;;;;;;;;;;;;;;;:34;28606:12;:10;:12::i;:::-;28585:34;;;;;;;;;;;;;;;;:38;;:87;;;;;:::i;:::-;28553:8;:120::i;:::-;28448:233;;:::o;32917:122::-;32974:21;32987:7;32974:8;:12;;:21;;;;:::i;:::-;33023:7;33011:20;;;;;;;;;;;;32917:122;:::o;40585:::-;40642:21;40655:7;40642:8;:12;;:21;;;;:::i;:::-;40691:7;40679:20;;;;;;;;;;;;40585:122;:::o;40715:130::-;40775:24;40791:7;40775:8;:15;;:24;;;;:::i;:::-;40829:7;40815:22;;;;;;;;;;;;40715:130;:::o;22272:261::-;22357:4;22374:129;22383:12;:10;:12::i;:::-;22397:7;22406:96;22445:15;22406:96;;;;;;;;;;;;;;;;;:11;:25;22418:12;:10;:12::i;:::-;22406:25;;;;;;;;;;;;;;;:34;22432:7;22406:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;22374:8;:129::i;:::-;22521:4;22514:11;;22272:261;;;;:::o;18468:212::-;18537:4;18554:19;:35;;;;;;;;;;;;;;;;;;;18600:50;18610:12;:10;:12::i;:::-;18624:9;18635:6;18643;18600:9;:50::i;:::-;18668:4;18661:11;;;18468:212;;;;:::o;24076:827::-;24211:1;24193:20;;:6;:20;;;;24185:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24296:1;24275:23;;:9;:23;;;;24267:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24372;24394:6;24372:72;;;;;;;;;;;;;;;;;:9;:17;24382:6;24372:17;;;;;;;;;;;;;;;;:21;;:72;;;;;:::i;:::-;24352:9;:17;24362:6;24352:17;;;;;;;;;;;;;;;:92;;;;24478:32;24503:6;24478:9;:20;24488:9;24478:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;24455:9;:20;24465:9;24455:20;;;;;;;;;;;;;;;:55;;;;24644:29;24663:9;24644:18;:29::i;:::-;:58;;;;;24693:9;24677:25;;:12;:10;:12::i;:::-;:25;;;;24644:58;24641:204;;;24719:25;24764:9;24719:55;;24789:8;:22;;;24812:6;24820;24828:4;24789:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;24789:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24789:44:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;24789:44:0;;;;24641:204;;24877:9;24860:35;;24869:6;24860:35;;;24888:6;24860:35;;;;;;;;;;;;;;;;;;24076:827;;;;:::o;1976:192::-;2062:7;2095:1;2090;:6;;2098:12;2082:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;2082:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2122:9;2138:1;2134;:5;2122:17;;2159:1;2152:8;;;1976:192;;;;;:::o;26755:729::-;26885:1;26868:19;;:5;:19;;;;26860:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26967:1;26948:21;;:7;:21;;;;26940:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27052:6;27022:11;:18;27034:5;27022:18;;;;;;;;;;;;;;;:27;27041:7;27022:27;;;;;;;;;;;;;;;:36;;;;27217:27;27236:7;27217:18;:27::i;:::-;:54;;;;;27264:7;27248:23;;:12;:10;:12::i;:::-;:23;;;;27217:54;27214:215;;;27288:33;27349:7;27288:69;;27372:8;:24;;;27397:5;27404:6;27412:4;27372:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;27372:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27372:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;27372:45:0;;;;27214:215;;27460:7;27444:32;;27453:5;27444:32;;;27469:6;27444:32;;;;;;;;;;;;;;;;;;26755:729;;;;:::o;23071:190::-;23159:12;23183:48;23193:12;:10;:12::i;:::-;23207:9;23218:6;23226:4;23183:9;:48::i;:::-;23249:4;23242:11;;23071:190;;;;;:::o;30232:806::-;30341:4;30358:13;30374:12;:10;:12::i;:::-;30358:28;;30422:1;30405:19;;:5;:19;;;;30397:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30504:1;30485:21;;:7;:21;;;;30477:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30580:5;30565:20;;:11;:20;;;;30557:82;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30682:6;30652:11;:18;30664:5;30652:18;;;;;;;;;;;;;;;:27;30671:7;30652:27;;;;;;;;;;;;;;;:36;;;;30733:27;30752:7;30733:18;:27::i;:::-;:54;;;;;30780:7;30764:23;;:12;:10;:12::i;:::-;:23;;;;30733:54;30730:231;;;30804:33;30865:7;30804:69;;30888:8;:27;;;30916:5;30923:11;30936:6;30944:4;30888:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;30888:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30888:61:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;30888:61:0;;;;30730:231;;30992:7;30976:32;;30985:5;30976:32;;;31001:6;30976:32;;;;;;;;;;;;;;;;;;31026:4;31019:11;;;30232:806;;;;;;:::o;28865:951::-;28977:4;28994:14;29011:12;:10;:12::i;:::-;28994:29;;29065:1;29042:25;;:11;:25;;;;29034:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29150:1;29129:23;;:9;:23;;;;29121:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29227:6;29212:21;;:11;:21;;;;29204:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29320:72;29342:6;29320:72;;;;;;;;;;;;;;;;;:9;:17;29330:6;29320:17;;;;;;;;;;;;;;;;:21;;:72;;;;;:::i;:::-;29300:9;:17;29310:6;29300:17;;;;;;;;;;;;;;;:92;;;;29426:32;29451:6;29426:9;:20;29436:9;29426:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;29403:9;:20;29413:9;29403:20;;;;;;;;;;;;;;;:55;;;;29503:29;29522:9;29503:18;:29::i;:::-;:58;;;;;29552:9;29536:25;;:12;:10;:12::i;:::-;:25;;;;29503:58;29500:236;;;29578:33;29639:9;29578:71;;29664:8;:25;;;29690:6;29698:11;29711:6;29719:4;29664:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;99:1;94:3;90:11;84:18;80:1;75:3;71:11;64:39;52:2;49:1;45:10;40:15;;8:100;;;12:14;29664:60:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29664:60:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;29664:60:0;;;;29500:236;;29768:9;29751:35;;29760:6;29751:35;;;29779:6;29751:35;;;;;;;;;;;;;;;;;;29804:4;29797:11;;;28865:951;;;;;;:::o;1390:136::-;1448:7;1475:43;1479:1;1482;1475:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;1468:50;;1390:136;;;;:::o;39263:109::-;38369:9;:7;:9::i;:::-;38361:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39336:28;39355:8;39336:18;:28::i;:::-;39263:109;:::o;27924:338::-;28035:1;28018:19;;:5;:19;;;;28010:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28117:1;28098:21;;:7;:21;;;;28090:69;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28200:6;28170:11;:18;28182:5;28170:18;;;;;;;;;;;;;;;:27;28189:7;28170:27;;;;;;;;;;;;;;;:36;;;;28238:7;28222:32;;28231:5;28222:32;;;28247:6;28222:32;;;;;;;;;;;;;;;;;;27924:338;;;:::o;25184:309::-;25279:1;25260:21;;:7;:21;;;;25252:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25346:24;25363:6;25346:12;;:16;;:24;;;;:::i;:::-;25331:12;:39;;;;25402:30;25425:6;25402:9;:18;25412:7;25402:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;25381:9;:18;25391:7;25381:18;;;;;;;;;;;;;;;:51;;;;25469:7;25448:37;;25465:1;25448:37;;;25478:6;25448:37;;;;;;;;;;;;;;;;;;25184:309;;:::o;31617:183::-;31697:18;31701:4;31707:7;31697:3;:18::i;:::-;31689:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31787:5;31764:4;:11;;:20;31776:7;31764:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;31617:183;;:::o;31359:178::-;31437:18;31441:4;31447:7;31437:3;:18::i;:::-;31436:19;31428:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31525:4;31502;:11;;:20;31514:7;31502:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;31359:178;;:::o;39478:229::-;39572:1;39552:22;;:8;:22;;;;39544:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39662:8;39633:38;;39654:6;;;;;;;;;;;39633:38;;;;;;;;;;;;39691:8;39682:6;;:17;;;;;;;;;;;;;;;;;;39478:229;:::o

Swarm Source

bzzr://35f75cf21b60fd89a984667366a5c862adb285bdc02a3365475cda036005e7e9
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.