ERC-20
Finance
Overview
Max Total Supply
200,000 SXT
Holders
81 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
201.68317235412400124 SXTValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
xProject
Compiler Version
v0.5.17+commit.d19bba13
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-12-23 */ /* _ _ _ _ _ _ _ _ _ /_/\ /\ \ /\ \ /\ \ /\ \ /\ \ /\ \ /\ \ /\ \ \ \ \ \ \_\ / \ \ / \ \ / \ \ \ \ \ / \ \ / \ \ \_\ \ \ \ \__/ / / / /\ \ \ / /\ \ \ / /\ \ \ /\ \_\ / /\ \ \ / /\ \ \ /\__ \ \ \__ \/_/ / / /\ \_\ / / /\ \_\ / / /\ \ \ / /\/_// / /\ \_\ / / /\ \ \ / /_ \ \ \/_/\__/\ / / /_/ / // / /_/ / / / / / \ \_\ _ / / / / /_/_ \/_/ / / / \ \_\ / / /\ \ \ _/\/__\ \ / / /__\/ // / /__\/ / / / / / / //\ \ / / / / /____/\ / / / \/_/ / / / \/_/ / _/_/\ \ \ / / /_____// / /_____/ / / / / / / \ \_\ / / / / /\____\/ / / / / / / / / / \ \ \ / / / / / /\ \ \ / / /___/ / / / / /_/ / / / / /______ / / /________ / / / / / / /_/ // / / / / / \ \ \/ / /____\/ / / / /__\/ / / / /_______\/ / /_________\/_/ / \/_/ \_\/ \/_/ \/_/ \_\/\/_________/ \/_______/ \/__________/\/____________/\_\/ $SXT Website: https://xProject.finance Forums: https://forum.xProject.finance Your One Stop Solution To The Insecure DeFi. */ // File: @openzeppelin/contracts/GSN/Context.sol pragma solidity ^0.5.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor () internal { } // solhint-disable-previous-line no-empty-blocks function _msgSender() internal view returns (address payable) { return msg.sender; } function _msgData() internal view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol pragma solidity ^0.5.0; /** * @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: @openzeppelin/contracts/math/SafeMath.sol pragma solidity ^0.5.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. * * _Available since v2.4.0._ */ 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. * * _Available since v2.4.0._ */ 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. * * _Available since v2.4.0._ */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol pragma solidity ^0.5.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {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 {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-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 {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for `sender`'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public 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 {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); 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), "ERC20: 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), "ERC20: burn from the zero address"); _balances[account] = _balances[account].sub(amount, "ERC20: 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. */ function _approve(address owner, address spender, uint256 amount) internal { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev 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, "ERC20: burn amount exceeds allowance")); } } // File: @openzeppelin/contracts/token/ERC20/ERC20Detailed.sol pragma solidity ^0.5.0; /** * @dev Optional functions from the ERC20 standard. */ contract ERC20Detailed is IERC20 { 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: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.5.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(isOwner(), "Ownable: caller is not the owner"); _; } /** * @dev Returns true if the caller is the current owner. */ function isOwner() public view returns (bool) { return _msgSender() == _owner; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). */ function _transferOwnership(address newOwner) internal { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: contracts/ERC20FixedSupply.sol pragma solidity 0.5.17; /** * @title ERC20 Token with Fixed Supply. * @notice Total supply is defined in the contract's constructor. It won't be possible to mint more tokens. * @dev This contract has the following properties: * - Basic ERC20 functionality (https://eips.ethereum.org/EIPS/eip-20) * - Pausable (circuit breaker pattern) - transfers can be paused * - Ownable (access control pattern) - sets an owner who can pause the token. * Ownership can be transfer anytime by current owner */ contract ERC20FixedSupply is ERC20, ERC20Detailed, Ownable { constructor( uint256 initialSupply, string memory name, string memory symbol, uint8 decimals // This contract cannot be instantiated. It needs to be inherited. ) internal ERC20Detailed(name, symbol, decimals) { require(initialSupply > 0, "ERC20FixedSupply: Invalid initialSupply"); require(bytes(name).length > 0, "ERC20FixedSupply: Token name cannot be empty"); require(bytes(symbol).length > 0, "ERC20FixedSupply: Token symbol cannot be empty"); _mint(_msgSender(), initialSupply); } /** * @notice Transfers ownership of the contract to a new account (`newOwner`). * Grants Pauser Role to `newOwner` and revokes Pauser Role from `old owner`. * @dev Overrides {Ownable.sol} to assign Pauser Role to the new owner and revoke privileges * from old owner (msg.sender). */ function _transferOwnership(address newOwner) internal { super._transferOwnership(newOwner); } } // File: contracts/ERC20/ERC20RewardLiqProviders.sol pragma solidity ^0.5.17; contract ERC20RewardLiqProviders is ERC20 { using SafeMath for uint256; event RewardLiquidityProviders(uint256 tokenAmount); address public uniswapV2Router; address public uniswapV2Pair; // the amount of tokens to reward to liquidity providers during every transfer, i.e. 100 = 1%, 50 = 2%, 40 = 2.5% // It rewards all the liquidity providers directly without need to stake :) uint256 public liquidityRewardsDivisor; function _transfer(address from, address to, uint256 amount) internal { // calculate liquidity reward amount if (liquidityRewardsDivisor != 0 && from != address(this)) { uint256 liquidityRewardsAmount = amount.div(liquidityRewardsDivisor); super._transfer(from, address(this), liquidityRewardsAmount); super._transfer(from, to, amount.sub(liquidityRewardsAmount)); } else { super._transfer(from, to, amount); } } // receive eth from uniswap swap function () external payable {} // external util so anyone can easily distribute rewards // calls _rewardLiquidityProviders function rewardLiquidityProviders() external { // reward the liquidity providers _rewardLiquidityProviders(balanceOf(address(this))); } function _rewardLiquidityProviders(uint256 liquidityRewards) private { // calls super._transfer directly super._transfer(address(this), uniswapV2Pair, liquidityRewards); IUniswapV2Pair(uniswapV2Pair).sync(); emit RewardLiquidityProviders(liquidityRewards); } function swapTokensForEth(uint256 tokenAmount) private { address[] memory uniswapPairPath = new address[](2); uniswapPairPath[0] = address(this); uniswapPairPath[1] = IUniswapV2Router02(uniswapV2Router).WETH(); _approve(address(this), uniswapV2Router, tokenAmount); IUniswapV2Router02(uniswapV2Router) .swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, uniswapPairPath, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { _approve(address(this), uniswapV2Router, tokenAmount); IUniswapV2Router02(uniswapV2Router) .addLiquidityETH .value(ethAmount)( address(this), tokenAmount, 0, 0, address(this), block.timestamp ); } } interface IUniswapV2Router02 { function WETH() external pure returns (address); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); } interface IUniswapV2Pair { function sync() external; } // File: contracts/ERC20/ERC20Governance.sol pragma solidity ^0.5.17; contract ERC20Governance is ERC20, ERC20Detailed { using SafeMath for uint256; function _transfer(address from, address to, uint256 amount) internal { _moveDelegates(_delegates[from], _delegates[to], amount); super._transfer(from, to, amount); } function _mint(address account, uint256 amount) internal { _moveDelegates(address(0), _delegates[account], amount); super._mint(account, amount); } function _burn(address account, uint256 amount) internal { _moveDelegates(_delegates[account], address(0), amount); super._burn(account, amount); } // Copied and modified from YAM code: // https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernanceStorage.sol // https://github.com/yam-finance/yam-protocol/blob/master/contracts/token/YAMGovernance.sol // Which is copied and modified from COMPOUND: // https://github.com/compound-finance/compound-protocol/blob/master/contracts/Governance/Comp.sol /// @notice A record of each accounts delegate mapping (address => address) internal _delegates; /// @notice A checkpoint for marking number of votes from a given block struct Checkpoint { uint32 fromBlock; uint256 votes; } /// @notice A record of votes checkpoints for each account, by index mapping (address => mapping (uint32 => Checkpoint)) public checkpoints; /// @notice The number of checkpoints for each account mapping (address => uint32) public numCheckpoints; /// @notice The EIP-712 typehash for the contract's domain bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)"); /// @notice The EIP-712 typehash for the delegation struct used by the contract bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)"); /// @notice A record of states for signing / validating signatures mapping (address => uint) public nonces; /// @notice An event thats emitted when an account changes its delegate event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate); /// @notice An event thats emitted when a delegate account's vote balance changes event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance); /** * @notice Delegate votes from `msg.sender` to `delegatee` * @param delegator The address to get delegatee for */ function delegates(address delegator) external view returns (address) { return _delegates[delegator]; } /** * @notice Delegate votes from `msg.sender` to `delegatee` * @param delegatee The address to delegate votes to */ function delegate(address delegatee) external { return _delegate(msg.sender, delegatee); } /** * @notice Delegates votes from signatory to `delegatee` * @param delegatee The address to delegate votes to * @param nonce The contract state required to match the signature * @param expiry The time at which to expire the signature * @param v The recovery byte of the signature * @param r Half of the ECDSA signature pair * @param s Half of the ECDSA signature pair */ function delegateBySig( address delegatee, uint nonce, uint expiry, uint8 v, bytes32 r, bytes32 s ) external { bytes32 domainSeparator = keccak256( abi.encode( DOMAIN_TYPEHASH, keccak256(bytes(name())), getChainId(), address(this) ) ); bytes32 structHash = keccak256( abi.encode( DELEGATION_TYPEHASH, delegatee, nonce, expiry ) ); bytes32 digest = keccak256( abi.encodePacked( "\x19\x01", domainSeparator, structHash ) ); address signatory = ecrecover(digest, v, r, s); require(signatory != address(0), "ERC20Governance::delegateBySig: invalid signature"); require(nonce == nonces[signatory]++, "ERC20Governance::delegateBySig: invalid nonce"); require(now <= expiry, "ERC20Governance::delegateBySig: signature expired"); return _delegate(signatory, delegatee); } /** * @notice Gets the current votes balance for `account` * @param account The address to get votes balance * @return The number of current votes for `account` */ function getCurrentVotes(address account) external view returns (uint256) { uint32 nCheckpoints = numCheckpoints[account]; return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0; } /** * @notice Determine the prior number of votes for an account as of a block number * @dev Block number must be a finalized block or else this function will revert to prevent misinformation. * @param account The address of the account to check * @param blockNumber The block number to get the vote balance at * @return The number of votes the account had as of the given block */ function getPriorVotes(address account, uint blockNumber) external view returns (uint256) { require(blockNumber < block.number, "ERC20Governance::getPriorVotes: not yet determined"); uint32 nCheckpoints = numCheckpoints[account]; if (nCheckpoints == 0) { return 0; } // First check most recent balance if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) { return checkpoints[account][nCheckpoints - 1].votes; } // Next check implicit zero balance if (checkpoints[account][0].fromBlock > blockNumber) { return 0; } uint32 lower = 0; uint32 upper = nCheckpoints - 1; while (upper > lower) { uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow Checkpoint memory cp = checkpoints[account][center]; if (cp.fromBlock == blockNumber) { return cp.votes; } else if (cp.fromBlock < blockNumber) { lower = center; } else { upper = center - 1; } } return checkpoints[account][lower].votes; } function _delegate(address delegator, address delegatee) internal { address currentDelegate = _delegates[delegator]; uint256 delegatorBalance = balanceOf(delegator); // balance of underlying ERC20Governances (not scaled); _delegates[delegator] = delegatee; emit DelegateChanged(delegator, currentDelegate, delegatee); _moveDelegates(currentDelegate, delegatee, delegatorBalance); } function _moveDelegates(address srcRep, address dstRep, uint256 amount) internal { if (srcRep != dstRep && amount > 0) { if (srcRep != address(0)) { // decrease old representative uint32 srcRepNum = numCheckpoints[srcRep]; uint256 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0; uint256 srcRepNew = srcRepOld.sub(amount); _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew); } if (dstRep != address(0)) { // increase new representative uint32 dstRepNum = numCheckpoints[dstRep]; uint256 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0; uint256 dstRepNew = dstRepOld.add(amount); _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew); } } } function _writeCheckpoint( address delegatee, uint32 nCheckpoints, uint256 oldVotes, uint256 newVotes ) internal { uint32 blockNumber = safe32(block.number, "ERC20Governance::_writeCheckpoint: block number exceeds 32 bits"); if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) { checkpoints[delegatee][nCheckpoints - 1].votes = newVotes; } else { checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes); numCheckpoints[delegatee] = nCheckpoints + 1; } emit DelegateVotesChanged(delegatee, oldVotes, newVotes); } function safe32(uint n, string memory errorMessage) internal pure returns (uint32) { require(n < 2**32, errorMessage); return uint32(n); } function getChainId() internal pure returns (uint) { uint256 chainId; assembly { chainId := chainid() } return chainId; } } // File: ./xProject.sol pragma solidity ^0.5.17; contract xProject is ERC20, // governance must be before RewardLiqProviders // or delegates are not updated correctly Ownable, ERC20FixedSupply(200000 * 10**18, "xProject.finance", "SXT", 18), ERC20Governance, ERC20RewardLiqProviders { function setUniswapV2Router(address _uniswapV2Router) public onlyOwner { require(uniswapV2Router == address(0), "xProject::setUniswapV2Router: already set"); uniswapV2Router = _uniswapV2Router; } function setUniswapV2Pair(address _uniswapV2Pair) public onlyOwner { require(uniswapV2Pair == address(0), "xProject::setUniswapV2Pair: already set"); uniswapV2Pair = _uniswapV2Pair; } function setLiquidityRewardsDivisor(uint256 _liquidityRewardsDivisor) public onlyOwner { liquidityRewardsDivisor = _liquidityRewardsDivisor; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"RewardLiquidityProviders","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"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"constant":true,"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"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":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint256","name":"votes","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"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":"delegatee","type":"address"}],"name":"delegate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"delegator","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"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":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"liquidityRewardsDivisor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"rewardLiquidityProviders","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_liquidityRewardsDivisor","type":"uint256"}],"name":"setLiquidityRewardsDivisor","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_uniswapV2Pair","type":"address"}],"name":"setUniswapV2Pair","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_uniswapV2Router","type":"address"}],"name":"setUniswapV2Router","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"}]
Contract Creation Code
6080604052692a5a058fc295ed0000006040518060400160405280601081526020017f7850726f6a6563742e66696e616e6365000000000000000000000000000000008152506040518060400160405280600381526020017f5358540000000000000000000000000000000000000000000000000000000000815250601282828282600390805190602001906200009892919062000ce0565b508160049080519060200190620000b192919062000ce0565b5080600560006101000a81548160ff021916908360ff1602179055505050506000620000e2620002bf60201b60201c565b905080600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35060008411620001dc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526027815260200180620047106027913960400191505060405180910390fd5b600083511162000238576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602c81526020018062004677602c913960400191505060405180910390fd5b600082511162000294576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180620046e2602e913960400191505060405180910390fd5b620002b5620002a8620002bf60201b60201c565b85620002c760201b60201c565b5050505062000d8f565b600033905090565b6200033a6000600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836200035560201b60201c565b6200035182826200061860201b620033f41760201c565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015620003925750600081115b156200061357600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614620004d5576000600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff1690506000808263ffffffff1611620004395760006200049d565b600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001840363ffffffff1663ffffffff168152602001908152602001600020600101545b90506000620004bb8483620007e260201b620028dc1790919060201c565b9050620004d1868484846200083460201b60201c565b5050505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161462000612576000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff1690506000808263ffffffff161162000576576000620005da565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001840363ffffffff1663ffffffff168152602001908152602001600020600101545b90506000620005f8848362000ad460201b620024be1790919060201c565b90506200060e858484846200083460201b60201c565b5050505b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620006bc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b620006d88160025462000ad460201b620024be1790919060201c565b60028190555062000736816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205462000ad460201b620024be1790919060201c565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b60006200082c83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525062000b5d60201b60201c565b905092915050565b600062000861436040518060600160405280603f8152602001620046a3603f913962000c2160201b60201c565b905060008463ffffffff16118015620008f757508063ffffffff16600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001870363ffffffff1663ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff16145b156200096a5781600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001870363ffffffff1663ffffffff1681526020019081526020016000206001018190555062000a77565b60405180604001604052808263ffffffff16815260200183815250600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008663ffffffff1663ffffffff16815260200190815260200160002060008201518160000160006101000a81548163ffffffff021916908363ffffffff1602179055506020820151816001015590505060018401600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548163ffffffff021916908363ffffffff1602179055505b8473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051808381526020018281526020019250505060405180910390a25050505050565b60008082840190508381101562000b53576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600083831115829062000c0e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101562000bd257808201518184015260208101905062000bb5565b50505050905090810190601f16801562000c005780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60006401000000008310829062000cd6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101562000c9a57808201518184015260208101905062000c7d565b50505050905090810190601f16801562000cc85780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5082905092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1062000d2357805160ff191683800117855562000d54565b8280016001018555821562000d54579182015b8281111562000d5357825182559160200191906001019062000d36565b5b50905062000d63919062000d67565b5090565b62000d8c91905b8082111562000d8857600081600090555060010162000d6e565b5090565b90565b6138d88062000d9f6000396000f3fe6080604052600436106101e35760003560e01c8063782d6fe111610102578063a9059cbb11610095578063dd62ed3e11610064578063dd62ed3e14610bcc578063e7a324dc14610c51578063f1127ed814610c7c578063f2fde38b14610d04576101e3565b8063a9059cbb14610a57578063b4b5ea5714610aca578063c3cda52014610b2f578063db647b7614610bb5576101e3565b806395d89b41116100d157806395d89b41146108c8578063a29a608914610958578063a457c2d7146109a9578063a56c95b814610a1c576101e3565b8063782d6fe11461076e5780637ecebe00146107dd5780638da5cb5b146108425780638f32d59b14610899576101e3565b8063313ce5671161017a5780635c19a95c116101495780635c19a95c146106305780636fcfff451461068157806370a08231146106f2578063715018a614610757576101e3565b8063313ce567146104a457806339509351146104d557806349bd5a5e14610548578063587cde1e1461059f576101e3565b806318160ddd116101b657806318160ddd1461039057806320606b70146103bb57806323b872dd146103e65780632f5c461514610479576101e3565b806306fdde03146101e5578063095ea7b3146102755780631419841d146102e85780631694505e14610339575b005b3480156101f157600080fd5b506101fa610d55565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561023a57808201518184015260208101905061021f565b50505050905090810190601f1680156102675780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561028157600080fd5b506102ce6004803603604081101561029857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610df7565b604051808215151515815260200191505060405180910390f35b3480156102f457600080fd5b506103376004803603602081101561030b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e15565b005b34801561034557600080fd5b5061034e610f7a565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561039c57600080fd5b506103a5610fa0565b6040518082815260200191505060405180910390f35b3480156103c757600080fd5b506103d0610faa565b6040518082815260200191505060405180910390f35b3480156103f257600080fd5b5061045f6004803603606081101561040957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fc6565b604051808215151515815260200191505060405180910390f35b34801561048557600080fd5b5061048e61109f565b6040518082815260200191505060405180910390f35b3480156104b057600080fd5b506104b96110a5565b604051808260ff1660ff16815260200191505060405180910390f35b3480156104e157600080fd5b5061052e600480360360408110156104f857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506110bc565b604051808215151515815260200191505060405180910390f35b34801561055457600080fd5b5061055d61116f565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156105ab57600080fd5b506105ee600480360360208110156105c257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611195565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561063c57600080fd5b5061067f6004803603602081101561065357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111fe565b005b34801561068d57600080fd5b506106d0600480360360208110156106a457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061120b565b604051808263ffffffff1663ffffffff16815260200191505060405180910390f35b3480156106fe57600080fd5b506107416004803603602081101561071557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061122e565b6040518082815260200191505060405180910390f35b34801561076357600080fd5b5061076c611276565b005b34801561077a57600080fd5b506107c76004803603604081101561079157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506113b1565b6040518082815260200191505060405180910390f35b3480156107e957600080fd5b5061082c6004803603602081101561080057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611776565b6040518082815260200191505060405180910390f35b34801561084e57600080fd5b5061085761178e565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156108a557600080fd5b506108ae6117b8565b604051808215151515815260200191505060405180910390f35b3480156108d457600080fd5b506108dd611817565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561091d578082015181840152602081019050610902565b50505050905090810190601f16801561094a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561096457600080fd5b506109a76004803603602081101561097b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118b9565b005b3480156109b557600080fd5b50610a02600480360360408110156109cc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611a1e565b604051808215151515815260200191505060405180910390f35b348015610a2857600080fd5b50610a5560048036036020811015610a3f57600080fd5b8101908080359060200190929190505050611aeb565b005b348015610a6357600080fd5b50610ab060048036036040811015610a7a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b6f565b604051808215151515815260200191505060405180910390f35b348015610ad657600080fd5b50610b1960048036036020811015610aed57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b8d565b6040518082815260200191505060405180910390f35b348015610b3b57600080fd5b50610bb3600480360360c0811015610b5257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190803560ff1690602001909291908035906020019092919080359060200190929190505050611c63565b005b348015610bc157600080fd5b50610bca611fe6565b005b348015610bd857600080fd5b50610c3b60048036036040811015610bef57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ff9565b6040518082815260200191505060405180910390f35b348015610c5d57600080fd5b50610c66612080565b6040518082815260200191505060405180910390f35b348015610c8857600080fd5b50610cdb60048036036040811015610c9f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803563ffffffff16906020019092919050505061209c565b604051808363ffffffff1663ffffffff1681526020018281526020019250505060405180910390f35b348015610d1057600080fd5b50610d5360048036036020811015610d2757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506120dd565b005b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610ded5780601f10610dc257610100808354040283529160200191610ded565b820191906000526020600020905b815481529060010190602001808311610dd057829003601f168201915b5050505050905090565b6000610e0b610e04612163565b848461216b565b6001905092915050565b610e1d6117b8565b610e8f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f36576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806137f56029913960400191505060405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b60405180806136b1604391396043019050604051809103902081565b6000610fd3848484612362565b61109484610fdf612163565b61108f856040518060600160405280602881526020016136f460289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611045612163565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123fe9092919063ffffffff16565b61216b565b600190509392505050565b600c5481565b6000600560009054906101000a900460ff16905090565b60006111656110c9612163565b8461116085600160006110da612163565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124be90919063ffffffff16565b61216b565b6001905092915050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6112083382612546565b50565b60086020528060005260406000206000915054906101000a900463ffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61127e6117b8565b6112f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600043821061140b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806137726032913960400191505060405180910390fd5b6000600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff16905060008163ffffffff161415611478576000915050611770565b82600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001840363ffffffff1663ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff161161156257600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001830363ffffffff1663ffffffff16815260200190815260200160002060010154915050611770565b82600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008063ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff1611156115e3576000915050611770565b600080905060006001830390505b8163ffffffff168163ffffffff16111561170a576000600283830363ffffffff168161161957fe5b04820390506116266133d4565b600760008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008363ffffffff1663ffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff168152602001600182015481525050905086816000015163ffffffff1614156116e257806020015195505050505050611770565b86816000015163ffffffff1610156116fc57819350611703565b6001820392505b50506115f1565b600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008363ffffffff1663ffffffff1681526020019081526020016000206001015493505050505b92915050565b60096020528060005260406000206000915090505481565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166117fb612163565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156118af5780601f10611884576101008083540402835291602001916118af565b820191906000526020600020905b81548152906001019060200180831161189257829003601f168201915b5050505050905090565b6118c16117b8565b611933576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146119da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602781526020018061387d6027913960400191505060405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611ae1611a2b612163565b84611adc856040518060600160405280602581526020016138586025913960016000611a55612163565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123fe9092919063ffffffff16565b61216b565b6001905092915050565b611af36117b8565b611b65576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600c8190555050565b6000611b83611b7c612163565b8484612362565b6001905092915050565b600080600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff16905060008163ffffffff1611611bf7576000611c5b565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001830363ffffffff1663ffffffff168152602001908152602001600020600101545b915050919050565b600060405180806136b16043913960430190506040518091039020611c86610d55565b80519060200120611c956126b7565b30604051602001808581526020018481526020018381526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019450505050506040516020818303038152906040528051906020012090506000604051808061381e603a9139603a0190506040518091039020888888604051602001808581526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018381526020018281526020019450505050506040516020818303038152906040528051906020012090506000828260405160200180807f190100000000000000000000000000000000000000000000000000000000000081525060020183815260200182815260200192505050604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051808581526020018460ff1660ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa158015611e40573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ed2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806135d36031913960400191505060405180910390fd5b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190600101919050558914611f77576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d8152602001806137c8602d913960400191505060405180910390fd5b87421115611fd0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603181526020018061371c6031913960400191505060405180910390fd5b611fda818b612546565b50505050505050505050565b611ff7611ff23061122e565b6126c4565b565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b604051808061381e603a9139603a019050604051809103902081565b6007602052816000526040600020602052806000526040600020600091509150508060000160009054906101000a900463ffffffff16908060010154905082565b6120e56117b8565b612157576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b612160816127ad565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806137a46024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061362a6022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6000600c54141580156123a157503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156123ed5760006123bd600c54836127b990919063ffffffff16565b90506123ca843083612803565b6123e784846123e284866128dc90919063ffffffff16565b612803565b506123f9565b6123f8838383612803565b5b505050565b60008383111582906124ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612470578082015181840152602081019050612455565b50505050905090810190601f16801561249d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008082840190508381101561253c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060006125b58461122e565b905082600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f60405160405180910390a46126b1828483612926565b50505050565b6000804690508091505090565b6126f130600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683612803565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561275b57600080fd5b505af115801561276f573d6000803e3d6000fd5b505050507f8765d2bb982ed6ee74d2b03c76c9c129aa4a4e3e6b17bd7cf7830088e9d49054816040518082815260200191505060405180910390a150565b6127b681612bc3565b50565b60006127fb83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612d09565b905092915050565b6128cc600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683612926565b6128d7838383612dcf565b505050565b600061291e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506123fe565b905092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156129625750600081115b15612bbe57600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612a92576000600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff1690506000808263ffffffff1611612a05576000612a69565b600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001840363ffffffff1663ffffffff168152602001908152602001600020600101545b90506000612a8084836128dc90919063ffffffff16565b9050612a8e86848484613085565b5050505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612bbd576000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff1690506000808263ffffffff1611612b30576000612b94565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001840363ffffffff1663ffffffff168152602001908152602001600020600101545b90506000612bab84836124be90919063ffffffff16565b9050612bb985848484613085565b5050505b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612c49576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806136046026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008083118290612db5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612d7a578082015181840152602081019050612d5f565b50505050905090810190601f168015612da75780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581612dc157fe5b049050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e55576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061374d6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612edb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806135b06023913960400191505060405180910390fd5b612f468160405180606001604052806026815260200161364c602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123fe9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612fd9816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124be90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b60006130a9436040518060600160405280603f8152602001613672603f9139613319565b905060008463ffffffff1611801561313e57508063ffffffff16600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001870363ffffffff1663ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff16145b156131af5781600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001870363ffffffff1663ffffffff168152602001908152602001600020600101819055506132bc565b60405180604001604052808263ffffffff16815260200183815250600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008663ffffffff1663ffffffff16815260200190815260200160002060008201518160000160006101000a81548163ffffffff021916908363ffffffff1602179055506020820151816001015590505060018401600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548163ffffffff021916908363ffffffff1602179055505b8473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051808381526020018281526020019250505060405180910390a25050505050565b6000640100000000831082906133ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561338f578082015181840152602081019050613374565b50505050905090810190601f1680156133bc5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5082905092915050565b6040518060400160405280600063ffffffff168152602001600081525090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613497576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6134ac816002546124be90919063ffffffff16565b600281905550613503816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124be90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734552433230476f7665726e616e63653a3a64656c656761746542795369673a20696e76616c6964207369676e61747572654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654552433230476f7665726e616e63653a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473454950373132446f6d61696e28737472696e67206e616d652c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e74726163742945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654552433230476f7665726e616e63653a3a64656c656761746542795369673a207369676e6174757265206578706972656445524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734552433230476f7665726e616e63653a3a6765745072696f72566f7465733a206e6f74207965742064657465726d696e656445524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734552433230476f7665726e616e63653a3a64656c656761746542795369673a20696e76616c6964206e6f6e63657850726f6a6563743a3a736574556e69737761705632526f757465723a20616c72656164792073657444656c65676174696f6e28616464726573732064656c6567617465652c75696e74323536206e6f6e63652c75696e74323536206578706972792945524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f7850726f6a6563743a3a736574556e69737761705632506169723a20616c726561647920736574a265627a7a72315820086eeb215d23c93c628f170d092016872d01a513b46cadd02e63e6d0aea571b664736f6c6343000511003245524332304669786564537570706c793a20546f6b656e206e616d652063616e6e6f7420626520656d7074794552433230476f7665726e616e63653a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d6265722065786365656473203332206269747345524332304669786564537570706c793a20546f6b656e2073796d626f6c2063616e6e6f7420626520656d70747945524332304669786564537570706c793a20496e76616c696420696e697469616c537570706c79
Deployed Bytecode
0x6080604052600436106101e35760003560e01c8063782d6fe111610102578063a9059cbb11610095578063dd62ed3e11610064578063dd62ed3e14610bcc578063e7a324dc14610c51578063f1127ed814610c7c578063f2fde38b14610d04576101e3565b8063a9059cbb14610a57578063b4b5ea5714610aca578063c3cda52014610b2f578063db647b7614610bb5576101e3565b806395d89b41116100d157806395d89b41146108c8578063a29a608914610958578063a457c2d7146109a9578063a56c95b814610a1c576101e3565b8063782d6fe11461076e5780637ecebe00146107dd5780638da5cb5b146108425780638f32d59b14610899576101e3565b8063313ce5671161017a5780635c19a95c116101495780635c19a95c146106305780636fcfff451461068157806370a08231146106f2578063715018a614610757576101e3565b8063313ce567146104a457806339509351146104d557806349bd5a5e14610548578063587cde1e1461059f576101e3565b806318160ddd116101b657806318160ddd1461039057806320606b70146103bb57806323b872dd146103e65780632f5c461514610479576101e3565b806306fdde03146101e5578063095ea7b3146102755780631419841d146102e85780631694505e14610339575b005b3480156101f157600080fd5b506101fa610d55565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561023a57808201518184015260208101905061021f565b50505050905090810190601f1680156102675780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561028157600080fd5b506102ce6004803603604081101561029857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610df7565b604051808215151515815260200191505060405180910390f35b3480156102f457600080fd5b506103376004803603602081101561030b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e15565b005b34801561034557600080fd5b5061034e610f7a565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561039c57600080fd5b506103a5610fa0565b6040518082815260200191505060405180910390f35b3480156103c757600080fd5b506103d0610faa565b6040518082815260200191505060405180910390f35b3480156103f257600080fd5b5061045f6004803603606081101561040957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610fc6565b604051808215151515815260200191505060405180910390f35b34801561048557600080fd5b5061048e61109f565b6040518082815260200191505060405180910390f35b3480156104b057600080fd5b506104b96110a5565b604051808260ff1660ff16815260200191505060405180910390f35b3480156104e157600080fd5b5061052e600480360360408110156104f857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506110bc565b604051808215151515815260200191505060405180910390f35b34801561055457600080fd5b5061055d61116f565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156105ab57600080fd5b506105ee600480360360208110156105c257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611195565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561063c57600080fd5b5061067f6004803603602081101561065357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506111fe565b005b34801561068d57600080fd5b506106d0600480360360208110156106a457600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061120b565b604051808263ffffffff1663ffffffff16815260200191505060405180910390f35b3480156106fe57600080fd5b506107416004803603602081101561071557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061122e565b6040518082815260200191505060405180910390f35b34801561076357600080fd5b5061076c611276565b005b34801561077a57600080fd5b506107c76004803603604081101561079157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803590602001909291905050506113b1565b6040518082815260200191505060405180910390f35b3480156107e957600080fd5b5061082c6004803603602081101561080057600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611776565b6040518082815260200191505060405180910390f35b34801561084e57600080fd5b5061085761178e565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b3480156108a557600080fd5b506108ae6117b8565b604051808215151515815260200191505060405180910390f35b3480156108d457600080fd5b506108dd611817565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561091d578082015181840152602081019050610902565b50505050905090810190601f16801561094a5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561096457600080fd5b506109a76004803603602081101561097b57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506118b9565b005b3480156109b557600080fd5b50610a02600480360360408110156109cc57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611a1e565b604051808215151515815260200191505060405180910390f35b348015610a2857600080fd5b50610a5560048036036020811015610a3f57600080fd5b8101908080359060200190929190505050611aeb565b005b348015610a6357600080fd5b50610ab060048036036040811015610a7a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611b6f565b604051808215151515815260200191505060405180910390f35b348015610ad657600080fd5b50610b1960048036036020811015610aed57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b8d565b6040518082815260200191505060405180910390f35b348015610b3b57600080fd5b50610bb3600480360360c0811015610b5257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919080359060200190929190803560ff1690602001909291908035906020019092919080359060200190929190505050611c63565b005b348015610bc157600080fd5b50610bca611fe6565b005b348015610bd857600080fd5b50610c3b60048036036040811015610bef57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611ff9565b6040518082815260200191505060405180910390f35b348015610c5d57600080fd5b50610c66612080565b6040518082815260200191505060405180910390f35b348015610c8857600080fd5b50610cdb60048036036040811015610c9f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803563ffffffff16906020019092919050505061209c565b604051808363ffffffff1663ffffffff1681526020018281526020019250505060405180910390f35b348015610d1057600080fd5b50610d5360048036036020811015610d2757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506120dd565b005b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610ded5780601f10610dc257610100808354040283529160200191610ded565b820191906000526020600020905b815481529060010190602001808311610dd057829003601f168201915b5050505050905090565b6000610e0b610e04612163565b848461216b565b6001905092915050565b610e1d6117b8565b610e8f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f36576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260298152602001806137f56029913960400191505060405180910390fd5b80600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600254905090565b60405180806136b1604391396043019050604051809103902081565b6000610fd3848484612362565b61109484610fdf612163565b61108f856040518060600160405280602881526020016136f460289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611045612163565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123fe9092919063ffffffff16565b61216b565b600190509392505050565b600c5481565b6000600560009054906101000a900460ff16905090565b60006111656110c9612163565b8461116085600160006110da612163565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124be90919063ffffffff16565b61216b565b6001905092915050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6112083382612546565b50565b60086020528060005260406000206000915054906101000a900463ffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61127e6117b8565b6112f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600043821061140b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260328152602001806137726032913960400191505060405180910390fd5b6000600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff16905060008163ffffffff161415611478576000915050611770565b82600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001840363ffffffff1663ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff161161156257600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001830363ffffffff1663ffffffff16815260200190815260200160002060010154915050611770565b82600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008063ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff1611156115e3576000915050611770565b600080905060006001830390505b8163ffffffff168163ffffffff16111561170a576000600283830363ffffffff168161161957fe5b04820390506116266133d4565b600760008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008363ffffffff1663ffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff168152602001600182015481525050905086816000015163ffffffff1614156116e257806020015195505050505050611770565b86816000015163ffffffff1610156116fc57819350611703565b6001820392505b50506115f1565b600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008363ffffffff1663ffffffff1681526020019081526020016000206001015493505050505b92915050565b60096020528060005260406000206000915090505481565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166117fb612163565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b606060048054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156118af5780601f10611884576101008083540402835291602001916118af565b820191906000526020600020905b81548152906001019060200180831161189257829003601f168201915b5050505050905090565b6118c16117b8565b611933576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146119da576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602781526020018061387d6027913960400191505060405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000611ae1611a2b612163565b84611adc856040518060600160405280602581526020016138586025913960016000611a55612163565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123fe9092919063ffffffff16565b61216b565b6001905092915050565b611af36117b8565b611b65576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b80600c8190555050565b6000611b83611b7c612163565b8484612362565b6001905092915050565b600080600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff16905060008163ffffffff1611611bf7576000611c5b565b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001830363ffffffff1663ffffffff168152602001908152602001600020600101545b915050919050565b600060405180806136b16043913960430190506040518091039020611c86610d55565b80519060200120611c956126b7565b30604051602001808581526020018481526020018381526020018273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019450505050506040516020818303038152906040528051906020012090506000604051808061381e603a9139603a0190506040518091039020888888604051602001808581526020018473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020018381526020018281526020019450505050506040516020818303038152906040528051906020012090506000828260405160200180807f190100000000000000000000000000000000000000000000000000000000000081525060020183815260200182815260200192505050604051602081830303815290604052805190602001209050600060018288888860405160008152602001604052604051808581526020018460ff1660ff1681526020018381526020018281526020019450505050506020604051602081039080840390855afa158015611e40573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611ed2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806135d36031913960400191505060405180910390fd5b600960008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815480929190600101919050558914611f77576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d8152602001806137c8602d913960400191505060405180910390fd5b87421115611fd0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252603181526020018061371c6031913960400191505060405180910390fd5b611fda818b612546565b50505050505050505050565b611ff7611ff23061122e565b6126c4565b565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b604051808061381e603a9139603a019050604051809103902081565b6007602052816000526040600020602052806000526040600020600091509150508060000160009054906101000a900463ffffffff16908060010154905082565b6120e56117b8565b612157576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b612160816127ad565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156121f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806137a46024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602281526020018061362a6022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b6000600c54141580156123a157503073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156123ed5760006123bd600c54836127b990919063ffffffff16565b90506123ca843083612803565b6123e784846123e284866128dc90919063ffffffff16565b612803565b506123f9565b6123f8838383612803565b5b505050565b60008383111582906124ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612470578082015181840152602081019050612455565b50505050905090810190601f16801561249d5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5060008385039050809150509392505050565b60008082840190508381101561253c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905060006125b58461122e565b905082600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f60405160405180910390a46126b1828483612926565b50505050565b6000804690508091505090565b6126f130600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683612803565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663fff6cae96040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561275b57600080fd5b505af115801561276f573d6000803e3d6000fd5b505050507f8765d2bb982ed6ee74d2b03c76c9c129aa4a4e3e6b17bd7cf7830088e9d49054816040518082815260200191505060405180910390a150565b6127b681612bc3565b50565b60006127fb83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612d09565b905092915050565b6128cc600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683612926565b6128d7838383612dcf565b505050565b600061291e83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506123fe565b905092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141580156129625750600081115b15612bbe57600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612a92576000600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff1690506000808263ffffffff1611612a05576000612a69565b600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001840363ffffffff1663ffffffff168152602001908152602001600020600101545b90506000612a8084836128dc90919063ffffffff16565b9050612a8e86848484613085565b5050505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612bbd576000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff1690506000808263ffffffff1611612b30576000612b94565b600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001840363ffffffff1663ffffffff168152602001908152602001600020600101545b90506000612bab84836124be90919063ffffffff16565b9050612bb985848484613085565b5050505b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612c49576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806136046026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008083118290612db5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b83811015612d7a578082015181840152602081019050612d5f565b50505050905090810190601f168015612da75780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b506000838581612dc157fe5b049050809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612e55576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061374d6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612edb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260238152602001806135b06023913960400191505060405180910390fd5b612f468160405180606001604052806026815260200161364c602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546123fe9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612fd9816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124be90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b60006130a9436040518060600160405280603f8152602001613672603f9139613319565b905060008463ffffffff1611801561313e57508063ffffffff16600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001870363ffffffff1663ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff16145b156131af5781600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001870363ffffffff1663ffffffff168152602001908152602001600020600101819055506132bc565b60405180604001604052808263ffffffff16815260200183815250600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008663ffffffff1663ffffffff16815260200190815260200160002060008201518160000160006101000a81548163ffffffff021916908363ffffffff1602179055506020820151816001015590505060018401600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548163ffffffff021916908363ffffffff1602179055505b8473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051808381526020018281526020019250505060405180910390a25050505050565b6000640100000000831082906133ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561338f578082015181840152602081019050613374565b50505050905090810190601f1680156133bc5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5082905092915050565b6040518060400160405280600063ffffffff168152602001600081525090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613497576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6134ac816002546124be90919063ffffffff16565b600281905550613503816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546124be90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734552433230476f7665726e616e63653a3a64656c656761746542795369673a20696e76616c6964207369676e61747572654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63654552433230476f7665726e616e63653a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d62657220657863656564732033322062697473454950373132446f6d61696e28737472696e67206e616d652c75696e7432353620636861696e49642c6164647265737320766572696679696e67436f6e74726163742945524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e63654552433230476f7665726e616e63653a3a64656c656761746542795369673a207369676e6174757265206578706972656445524332303a207472616e736665722066726f6d20746865207a65726f20616464726573734552433230476f7665726e616e63653a3a6765745072696f72566f7465733a206e6f74207965742064657465726d696e656445524332303a20617070726f76652066726f6d20746865207a65726f20616464726573734552433230476f7665726e616e63653a3a64656c656761746542795369673a20696e76616c6964206e6f6e63657850726f6a6563743a3a736574556e69737761705632526f757465723a20616c72656164792073657444656c65676174696f6e28616464726573732064656c6567617465652c75696e74323536206e6f6e63652c75696e74323536206578706972792945524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726f7850726f6a6563743a3a736574556e69737761705632506169723a20616c726561647920736574a265627a7a72315820086eeb215d23c93c628f170d092016872d01a513b46cadd02e63e6d0aea571b664736f6c63430005110032
Deployed Bytecode Sourcemap
37995:883:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20063:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20063:83:0;;;:::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;20063:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13609:152;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13609:152:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13609:152:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;38279:218;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38279:218:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;38279:218:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;25377:30;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25377:30:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12630:91;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12630:91:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30292:122;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30292:122:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;14233:304;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14233:304:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14233:304:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;25651:38;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25651:38:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;20915:83;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20915:83:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;14946:210;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14946:210:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14946:210:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;25414:28;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25414:28:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;31275:149;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31275:149:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;31275:149:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;31568:104;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31568:104:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;31568:104:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;30170:49;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30170:49:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;30170:49:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12784:110;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12784:110:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12784:110:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;22771:140;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22771:140:0;;;:::i;:::-;;34204:1264;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34204:1264:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;34204:1264:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30706:39;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30706:39:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;30706:39:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;21960:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21960:79:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;22326:94;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22326:94:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;20265:87;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20265:87:0;;;:::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;20265:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38505:206;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38505:206:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;38505:206:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;15659:261;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15659:261:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;15659:261:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;38719:156;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38719:156:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;38719:156:0;;;;;;;;;;;;;;;;;:::i;:::-;;13107:158;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13107:158:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13107:158:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;33518:255;;8:9:-1;5:2;;;30:1;27;20:12;5:2;33518:255:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;33518:255:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;32106:1211;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32106:1211:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;32106:1211:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;26403:158;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26403:158:0;;;:::i;:::-;;13328:134;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13328:134:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13328:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30508:117;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30508:117:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;30031:70;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30031:70:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;30031:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23066:109;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23066:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;23066:109:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;20063:83;20100:13;20133:5;20126:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20063:83;:::o;13609:152::-;13675:4;13692:39;13701:12;:10;:12::i;:::-;13715:7;13724:6;13692:8;:39::i;:::-;13749:4;13742:11;;13609:152;;;;:::o;38279:218::-;22172:9;:7;:9::i;:::-;22164:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38396:1;38369:29;;:15;;;;;;;;;;;:29;;;38361:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38473:16;38455:15;;:34;;;;;;;;;;;;;;;;;;38279:218;:::o;25377:30::-;;;;;;;;;;;;;:::o;12630:91::-;12674:7;12701:12;;12694:19;;12630:91;:::o;30292:122::-;30334:80;;;;;;;;;;;;;;;;;;;30292:122;:::o;14233:304::-;14322:4;14339:36;14349:6;14357:9;14368:6;14339:9;:36::i;:::-;14386:121;14395:6;14403:12;:10;:12::i;:::-;14417:89;14455:6;14417:89;;;;;;;;;;;;;;;;;:11;:19;14429:6;14417:19;;;;;;;;;;;;;;;:33;14437:12;:10;:12::i;:::-;14417:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;14386:8;:121::i;:::-;14525:4;14518:11;;14233:304;;;;;:::o;25651:38::-;;;;:::o;20915:83::-;20956:5;20981:9;;;;;;;;;;;20974:16;;20915:83;:::o;14946:210::-;15026:4;15043:83;15052:12;:10;:12::i;:::-;15066:7;15075:50;15114:10;15075:11;:25;15087:12;:10;:12::i;:::-;15075:25;;;;;;;;;;;;;;;:34;15101:7;15075:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;15043:8;:83::i;:::-;15144:4;15137:11;;14946:210;;;;:::o;25414:28::-;;;;;;;;;;;;;:::o;31275:149::-;31363:7;31395:10;:21;31406:9;31395:21;;;;;;;;;;;;;;;;;;;;;;;;;31388:28;;31275:149;;;:::o;31568:104::-;31632:32;31642:10;31654:9;31632;:32::i;:::-;31568:104;:::o;30170:49::-;;;;;;;;;;;;;;;;;;;;;;:::o;12784:110::-;12841:7;12868:9;:18;12878:7;12868:18;;;;;;;;;;;;;;;;12861:25;;12784:110;;;:::o;22771:140::-;22172:9;:7;:9::i;:::-;22164:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22870:1;22833:40;;22854:6;;;;;;;;;;;22833:40;;;;;;;;;;;;22901:1;22884:6;;:19;;;;;;;;;;;;;;;;;;22771:140::o;34204:1264::-;34312:7;34359:12;34345:11;:26;34337:89;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34439:19;34461:14;:23;34476:7;34461:23;;;;;;;;;;;;;;;;;;;;;;;;;34439:45;;34515:1;34499:12;:17;;;34495:58;;;34540:1;34533:8;;;;;34495:58;34665:11;34613;:20;34625:7;34613:20;;;;;;;;;;;;;;;:38;34649:1;34634:12;:16;34613:38;;;;;;;;;;;;;;;:48;;;;;;;;;;;;:63;;;34609:147;;34700:11;:20;34712:7;34700:20;;;;;;;;;;;;;;;:38;34736:1;34721:12;:16;34700:38;;;;;;;;;;;;;;;:44;;;34693:51;;;;;34609:147;34853:11;34817;:20;34829:7;34817:20;;;;;;;;;;;;;;;:23;34838:1;34817:23;;;;;;;;;;;;;:33;;;;;;;;;;;;:47;;;34813:88;;;34888:1;34881:8;;;;;34813:88;34913:12;34928:1;34913:16;;34940:12;34970:1;34955:12;:16;34940:31;;34982:428;34997:5;34989:13;;:5;:13;;;34982:428;;;35019:13;35061:1;35052:5;35044;:13;35043:19;;;;;;;;35035:5;:27;35019:43;;35104:20;;:::i;:::-;35127:11;:20;35139:7;35127:20;;;;;;;;;;;;;;;:28;35148:6;35127:28;;;;;;;;;;;;;;;35104:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35190:11;35174:2;:12;;;:27;;;35170:229;;;35229:2;:8;;;35222:15;;;;;;;;;35170:229;35278:11;35263:2;:12;;;:26;;;35259:140;;;35318:6;35310:14;;35259:140;;;35382:1;35373:6;:10;35365:18;;35259:140;34982:428;;;;;35427:11;:20;35439:7;35427:20;;;;;;;;;;;;;;;:27;35448:5;35427:27;;;;;;;;;;;;;;;:33;;;35420:40;;;;;34204:1264;;;;;:::o;30706:39::-;;;;;;;;;;;;;;;;;:::o;21960:79::-;21998:7;22025:6;;;;;;;;;;;22018:13;;21960:79;:::o;22326:94::-;22366:4;22406:6;;;;;;;;;;;22390:22;;:12;:10;:12::i;:::-;:22;;;22383:29;;22326:94;:::o;20265:87::-;20304:13;20337:7;20330:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20265:87;:::o;38505:206::-;22172:9;:7;:9::i;:::-;22164:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38616:1;38591:27;;:13;;;;;;;;;;;:27;;;38583:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38689:14;38673:13;;:30;;;;;;;;;;;;;;;;;;38505:206;:::o;15659:261::-;15744:4;15761:129;15770:12;:10;:12::i;:::-;15784:7;15793:96;15832:15;15793:96;;;;;;;;;;;;;;;;;:11;:25;15805:12;:10;:12::i;:::-;15793:25;;;;;;;;;;;;;;;:34;15819:7;15793:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;15761:8;:129::i;:::-;15908:4;15901:11;;15659:261;;;;:::o;38719:156::-;22172:9;:7;:9::i;:::-;22164:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38843:24;38817:23;:50;;;;38719:156;:::o;13107:158::-;13176:4;13193:42;13203:12;:10;:12::i;:::-;13217:9;13228:6;13193:9;:42::i;:::-;13253:4;13246:11;;13107:158;;;;:::o;33518:255::-;33610:7;33635:19;33657:14;:23;33672:7;33657:23;;;;;;;;;;;;;;;;;;;;;;;;;33635:45;;33713:1;33698:12;:16;;;:67;;33764:1;33698:67;;;33717:11;:20;33729:7;33717:20;;;;;;;;;;;;;;;:38;33753:1;33738:12;:16;33717:38;;;;;;;;;;;;;;;:44;;;33698:67;33691:74;;;33518:255;;;:::o;32106:1211::-;32299:23;30334:80;;;;;;;;;;;;;;;;;;;32428:6;:4;:6::i;:::-;32412:24;;;;;;32455:12;:10;:12::i;:::-;32494:4;32349:165;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;32349:165:0;;;32325:200;;;;;;32299:226;;32538:18;30554:71;;;;;;;;;;;;;;;;;;;32650:9;32678:5;32702:6;32583:140;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;32583:140:0;;;32559:175;;;;;;32538:196;;32747:14;32852:15;32886:10;32788:123;;;;;;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;32788:123:0;;;32764:158;;;;;;32747:175;;32935:17;32955:26;32965:6;32973:1;32976;32979;32955:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;32955:26:0;;;;;;;;32935:46;;33021:1;33000:23;;:9;:23;;;;32992:85;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33105:6;:17;33112:9;33105:17;;;;;;;;;;;;;;;;:19;;;;;;;;;;;;33096:5;:28;33088:86;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33200:6;33193:3;:13;;33185:75;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33278:31;33288:9;33299;33278;:31::i;:::-;33271:38;;;;32106:1211;;;;;;:::o;26403:158::-;26502:51;26528:24;26546:4;26528:9;:24::i;:::-;26502:25;:51::i;:::-;26403:158::o;13328:134::-;13400:7;13427:11;:18;13439:5;13427:18;;;;;;;;;;;;;;;:27;13446:7;13427:27;;;;;;;;;;;;;;;;13420:34;;13328:134;;;;:::o;30508:117::-;30554:71;;;;;;;;;;;;;;;;;;;30508:117;:::o;30031:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23066:109::-;22172:9;:7;:9::i;:::-;22164:54;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23139:28;23158:8;23139:18;:28::i;:::-;23066:109;:::o;2337:98::-;2382:15;2417:10;2410:17;;2337:98;:::o;18590:338::-;18701:1;18684:19;;:5;:19;;;;18676:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18782:1;18763:21;;:7;:21;;;;18755:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18866:6;18836:11;:18;18848:5;18836:18;;;;;;;;;;;;;;;:27;18855:7;18836:27;;;;;;;;;;;;;;;:36;;;;18904:7;18888:32;;18897:5;18888:32;;;18913:6;18888:32;;;;;;;;;;;;;;;;;;18590:338;;;:::o;25698:514::-;25856:1;25829:23;;:28;;:53;;;;;25877:4;25861:21;;:4;:21;;;;25829:53;25825:380;;;25899:30;25932:35;25943:23;;25932:6;:10;;:35;;;;:::i;:::-;25899:68;;25982:60;25998:4;26012;26019:22;25982:15;:60::i;:::-;26057:61;26073:4;26079:2;26083:34;26094:22;26083:6;:10;;:34;;;;:::i;:::-;26057:15;:61::i;:::-;25825:380;;;;26160:33;26176:4;26182:2;26186:6;26160:15;:33::i;:::-;25825:380;25698:514;;;:::o;7397:192::-;7483:7;7516:1;7511;:6;;7519:12;7503: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;7503:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7543:9;7559:1;7555;:5;7543:17;;7580:1;7573:8;;;7397:192;;;;;:::o;6468:181::-;6526:7;6546:9;6562:1;6558;:5;6546:17;;6587:1;6582;:6;;6574:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6640:1;6633:8;;;6468:181;;;;:::o;35476:449::-;35567:23;35593:10;:21;35604:9;35593:21;;;;;;;;;;;;;;;;;;;;;;;;;35567:47;;35625:24;35652:20;35662:9;35652;:20::i;:::-;35625:47;;35763:9;35739:10;:21;35750:9;35739:21;;;;;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;35834:9;35790:54;;35817:15;35790:54;;35806:9;35790:54;;;;;;;;;;;;35857:60;35872:15;35889:9;35900:16;35857:14;:60::i;:::-;35476:449;;;;:::o;37780:153::-;37825:4;37842:15;37890:9;37879:20;;37918:7;37911:14;;;37780:153;:::o;26569:299::-;26692:63;26716:4;26723:13;;;;;;;;;;;26738:16;26692:15;:63::i;:::-;26781:13;;;;;;;;;;;26766:34;;;:36;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26766:36:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;26766:36:0;;;;26818:42;26843:16;26818:42;;;;;;;;;;;;;;;;;;26569:299;:::o;25032:108::-;25098:34;25123:8;25098:24;:34::i;:::-;25032:108;:::o;8779:132::-;8837:7;8864:39;8868:1;8871;8864:39;;;;;;;;;;;;;;;;;:3;:39::i;:::-;8857:46;;8779:132;;;;:::o;28729:189::-;28810:56;28825:10;:16;28836:4;28825:16;;;;;;;;;;;;;;;;;;;;;;;;;28843:10;:14;28854:2;28843:14;;;;;;;;;;;;;;;;;;;;;;;;;28859:6;28810:14;:56::i;:::-;28877:33;28893:4;28899:2;28903:6;28877:15;:33::i;:::-;28729:189;;;:::o;6924:136::-;6982:7;7009:43;7013:1;7016;7009:43;;;;;;;;;;;;;;;;;:3;:43::i;:::-;7002:50;;6924:136;;;;:::o;35933:947::-;36039:6;36029:16;;:6;:16;;;;:30;;;;;36058:1;36049:6;:10;36029:30;36025:848;;;36098:1;36080:20;;:6;:20;;;36076:385;;36169:16;36188:14;:22;36203:6;36188:22;;;;;;;;;;;;;;;;;;;;;;;;;36169:41;;36229:17;36261:1;36249:9;:13;;;:60;;36308:1;36249:60;;;36265:11;:19;36277:6;36265:19;;;;;;;;;;;;;;;:34;36297:1;36285:9;:13;36265:34;;;;;;;;;;;;;;;:40;;;36249:60;36229:80;;36328:17;36348:21;36362:6;36348:9;:13;;:21;;;;:::i;:::-;36328:41;;36388:57;36405:6;36413:9;36424;36435;36388:16;:57::i;:::-;36076:385;;;;36499:1;36481:20;;:6;:20;;;36477:385;;36570:16;36589:14;:22;36604:6;36589:22;;;;;;;;;;;;;;;;;;;;;;;;;36570:41;;36630:17;36662:1;36650:9;:13;;;:60;;36709:1;36650:60;;;36666:11;:19;36678:6;36666:19;;;;;;;;;;;;;;;:34;36698:1;36686:9;:13;36666:34;;;;;;;;;;;;;;;:40;;;36650:60;36630:80;;36729:17;36749:21;36763:6;36749:9;:13;;:21;;;;:::i;:::-;36729:41;;36789:57;36806:6;36814:9;36825;36836;36789:16;:57::i;:::-;36477:385;;;;36025:848;35933:947;;;:::o;23281:229::-;23375:1;23355:22;;:8;:22;;;;23347:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23465:8;23436:38;;23457:6;;;;;;;;;;;23436:38;;;;;;;;;;;;23494:8;23485:6;;:17;;;;;;;;;;;;;;;;;;23281:229;:::o;9441:345::-;9527:7;9626:1;9622;:5;9629:12;9614:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;9614:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9653:9;9669:1;9665;:5;;;;;;9653:17;;9777:1;9770:8;;;9441:345;;;;;:::o;16410:471::-;16526:1;16508:20;;:6;:20;;;;16500:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16610:1;16589:23;;:9;:23;;;;16581:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16685;16707:6;16685:71;;;;;;;;;;;;;;;;;:9;:17;16695:6;16685:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;16665:9;:17;16675:6;16665:17;;;;;;;;;;;;;;;:91;;;;16790:32;16815:6;16790:9;:20;16800:9;16790:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;16767:9;:20;16777:9;16767:20;;;;;;;;;;;;;;;:55;;;;16855:9;16838:35;;16847:6;16838:35;;;16866:6;16838:35;;;;;;;;;;;;;;;;;;16410:471;;;:::o;36888:715::-;37067:18;37088:87;37095:12;37088:87;;;;;;;;;;;;;;;;;:6;:87::i;:::-;37067:108;;37207:1;37192:12;:16;;;:85;;;;;37266:11;37212:65;;:11;:22;37224:9;37212:22;;;;;;;;;;;;;;;:40;37250:1;37235:12;:16;37212:40;;;;;;;;;;;;;;;:50;;;;;;;;;;;;:65;;;37192:85;37188:339;;;37343:8;37294:11;:22;37306:9;37294:22;;;;;;;;;;;;;;;:40;37332:1;37317:12;:16;37294:40;;;;;;;;;;;;;;;:46;;:57;;;;37188:339;;;37423:33;;;;;;;;37434:11;37423:33;;;;;;37447:8;37423:33;;;37384:11;:22;37396:9;37384:22;;;;;;;;;;;;;;;:36;37407:12;37384:36;;;;;;;;;;;;;;;:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37514:1;37499:12;:16;37471:14;:25;37486:9;37471:25;;;;;;;;;;;;;;;;:44;;;;;;;;;;;;;;;;;;37188:339;37565:9;37544:51;;;37576:8;37586;37544:51;;;;;;;;;;;;;;;;;;;;;;;;36888:715;;;;;:::o;37611:161::-;37686:6;37717:5;37713:1;:9;37724:12;37705:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;37705:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37762:1;37748:16;;37611:161;;;;:::o;37995:883::-;;;;;;;;;;;;;;;;;;;;;:::o;17162:308::-;17257:1;17238:21;;:7;:21;;;;17230:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17323:24;17340:6;17323:12;;:16;;:24;;;;:::i;:::-;17308:12;:39;;;;17379:30;17402:6;17379:9;:18;17389:7;17379:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;17358:9;:18;17368:7;17358:18;;;;;;;;;;;;;;;:51;;;;17446:7;17425:37;;17442:1;17425:37;;;17455:6;17425:37;;;;;;;;;;;;;;;;;;17162:308;;:::o
Swarm Source
bzzr://086eeb215d23c93c628f170d092016872d01a513b46cadd02e63e6d0aea571b6
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.