Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Commit Unstake | 17836754 | 536 days ago | IN | 0 ETH | 0.00074551 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
SeigniorageShares
Compiler Version
v0.4.24+commit.e67f0147
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-10-03 */ // File: contracts/interface/ICash.sol pragma solidity >=0.4.24; interface ICash { function claimDividends(address account) external returns (uint256); function transfer(address to, uint256 value) external returns(bool); function transferFrom(address from, address to, uint256 value) external returns(bool); function balanceOf(address who) external view returns(uint256); function allowance(address owner_, address spender) external view returns(uint256); function approve(address spender, uint256 value) external returns (bool); function increaseAllowance(address spender, uint256 addedValue) external returns (bool); function decreaseAllowance(address spender, uint256 subtractedValue) external returns (bool); function totalSupply() external view returns (uint256); function rebase(uint256 epoch, int256 supplyDelta) external returns (uint256); function redeemedShare(address account) external view returns (uint256); } // File: openzeppelin-eth/contracts/math/SafeMath.sol pragma solidity ^0.4.24; /** * @title SafeMath * @dev Math operations with safety checks that revert on error */ library SafeMath { /** * @dev Multiplies two numbers, reverts on 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-solidity/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b); return c; } /** * @dev Integer division of two numbers truncating the quotient, reverts on division by zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0); // Solidity only automatically asserts when dividing by 0 uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Subtracts two numbers, reverts on overflow (i.e. if subtrahend is greater than minuend). */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a); uint256 c = a - b; return c; } /** * @dev Adds two numbers, reverts on overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a); return c; } /** * @dev Divides two numbers and returns the remainder (unsigned integer modulo), * reverts when dividing by zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b != 0); return a % b; } } // File: zos-lib/contracts/Initializable.sol pragma solidity >=0.4.24 <0.6.0; /** * @title Initializable * * @dev Helper contract to support initializer functions. To use it, replace * the constructor with a function that has the `initializer` modifier. * WARNING: Unlike constructors, initializer functions must be manually * invoked. This applies both to deploying an Initializable contract, as well * as extending an Initializable contract via inheritance. * WARNING: When used with inheritance, manual care must be taken to not invoke * a parent initializer twice, or ensure that all initializers are idempotent, * because this is not dealt with automatically as with constructors. */ contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private initializing; /** * @dev Modifier to use in the initializer function of a contract. */ modifier initializer() { require(initializing || isConstructor() || !initialized, "Contract instance has already been initialized"); bool isTopLevelCall = !initializing; if (isTopLevelCall) { initializing = true; initialized = true; } _; if (isTopLevelCall) { initializing = false; } } /// @dev Returns true if and only if the function is running in the constructor function isConstructor() private view returns (bool) { // extcodesize checks the size of the code stored in an address, and // address returns the current address. Since the code is still not // deployed when running a constructor, any checks on its code size will // yield zero, making it an effective way to detect if a contract is // under construction or not. uint256 cs; assembly { cs := extcodesize(address) } return cs == 0; } // Reserved storage space to allow for layout changes in the future. uint256[50] private ______gap; } // File: openzeppelin-eth/contracts/ownership/Ownable.sol pragma solidity ^0.4.24; /** * @title Ownable * @dev The Ownable contract has an owner address, and provides basic authorization control * functions, this simplifies the implementation of "user permissions". */ contract Ownable is Initializable { address private _owner; event OwnershipRenounced(address indexed previousOwner); event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev The Ownable constructor sets the original `owner` of the contract to the sender * account. */ function initialize(address sender) public initializer { _owner = sender; } /** * @return the address of the owner. */ function owner() public view returns(address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(isOwner()); _; } /** * @return true if `msg.sender` is the owner of the contract. */ function isOwner() public view returns(bool) { return msg.sender == _owner; } /** * @dev Allows the current owner to relinquish control of the contract. * @notice Renouncing to ownership will leave the contract without an owner. * It will not be possible to call the functions with the `onlyOwner` * modifier anymore. */ function renounceOwnership() public onlyOwner { emit OwnershipRenounced(_owner); _owner = address(0); } /** * @dev Allows the current owner to transfer control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function transferOwnership(address newOwner) public onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers control of the contract to a newOwner. * @param newOwner The address to transfer ownership to. */ function _transferOwnership(address newOwner) internal { require(newOwner != address(0)); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } uint256[50] private ______gap; } // File: openzeppelin-eth/contracts/token/ERC20/IERC20.sol pragma solidity ^0.4.24; /** * @title ERC20 interface * @dev see https://github.com/ethereum/EIPs/issues/20 */ interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address who) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function transfer(address to, uint256 value) external returns (bool); function approve(address spender, uint256 value) external returns (bool); function transferFrom(address from, address to, uint256 value) external returns (bool); event Transfer( address indexed from, address indexed to, uint256 value ); event Approval( address indexed owner, address indexed spender, uint256 value ); } // File: openzeppelin-eth/contracts/token/ERC20/ERC20Detailed.sol pragma solidity ^0.4.24; /** * @title ERC20Detailed token * @dev The decimals are only for visualization purposes. * All the operations are done using the smallest and indivisible token unit, * just as on Ethereum all the operations are done in wei. */ contract ERC20Detailed is Initializable, IERC20 { string private _name; string private _symbol; uint8 private _decimals; function initialize(string name, string symbol, uint8 decimals) public initializer { _name = name; _symbol = symbol; _decimals = decimals; } /** * @return the name of the token. */ function name() public view returns(string) { return _name; } /** * @return the symbol of the token. */ function symbol() public view returns(string) { return _symbol; } /** * @return the number of decimals of the token. */ function decimals() public view returns(uint8) { return _decimals; } uint256[50] private ______gap; } // File: contracts/lib/SafeMathInt.sol /* MIT License Copyright (c) 2018 requestnetwork Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ pragma solidity >=0.4.24; /** * @title SafeMathInt * @dev Math operations for int256 with overflow safety checks. */ library SafeMathInt { int256 private constant MIN_INT256 = int256(1) << 255; int256 private constant MAX_INT256 = ~(int256(1) << 255); /** * @dev Multiplies two int256 variables and fails on overflow. */ function mul(int256 a, int256 b) internal pure returns (int256) { int256 c = a * b; // Detect overflow when multiplying MIN_INT256 with -1 require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256)); require((b == 0) || (c / b == a)); return c; } /** * @dev Division of two int256 variables and fails on overflow. */ function div(int256 a, int256 b) internal pure returns (int256) { // Prevent overflow when dividing MIN_INT256 by -1 require(b != -1 || a != MIN_INT256); // Solidity already throws when dividing by 0. return a / b; } /** * @dev Subtracts two int256 variables and fails on overflow. */ function sub(int256 a, int256 b) internal pure returns (int256) { int256 c = a - b; require((b >= 0 && c <= a) || (b < 0 && c > a)); return c; } /** * @dev Adds two int256 variables and fails on overflow. */ function add(int256 a, int256 b) internal pure returns (int256) { int256 c = a + b; require((b >= 0 && c >= a) || (b < 0 && c < a)); return c; } /** * @dev Converts to absolute value, and fails on overflow. */ function abs(int256 a) internal pure returns (int256) { require(a != MIN_INT256); return a < 0 ? -a : a; } } // File: contracts/usdx/seigniorageShares.sol pragma solidity >=0.4.24; interface IShareHelper { function getChainId() external pure returns (uint); } /* * SeigniorageShares ERC20 */ contract SeigniorageShares is ERC20Detailed, Ownable { address private _minter; modifier onlyMinter() { require(msg.sender == _minter, "DOES_NOT_HAVE_MINTER_ROLE"); _; } using SafeMath for uint256; using SafeMathInt for int256; uint256 private constant DECIMALS = 9; uint256 private constant MAX_UINT256 = ~uint256(0); uint256 private constant INITIAL_SHARE_SUPPLY = 21 * 10**6 * 10**DECIMALS; uint256 private constant MAX_SUPPLY = ~uint128(0); uint256 private _totalSupply; struct Account { uint256 balance; uint256 lastDividendPoints; } bool private _initializedDollar; // eslint-ignore ICash Dollars; mapping(address=>Account) private _shareBalances; mapping (address => mapping (address => uint256)) private _allowedShares; bool reEntrancyMintMutex; address public deprecatedVariable; mapping (address => uint256) private deprecatedMapping; mapping (address => bool) public _debased; bool public debaseOn; // 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 mapping (address => address) internal _delegates; struct Checkpoint { uint32 fromBlock; uint256 votes; } mapping (address => mapping (uint32 => Checkpoint)) public checkpoints; mapping (address => uint32) public numCheckpoints; bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)"); bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)"); mapping (address => uint) public nonces; event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate); event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance); // governance storage var ================================================================================================ mapping (address => address) internal _delegates2; mapping (address => mapping (uint32 => Checkpoint)) public checkpoints2; mapping (address => uint32) public numCheckpoints2; mapping (address => uint) public nonces2; // 0 = unstaked, 1 = staked, 2 = commit to unstake mapping (address => uint256) public stakingStatus; mapping (address => uint256) public commitTimeStamp; uint256 public minimumCommitTime; address public timelock; event Staked(address user, uint256 balance); event CommittedWithdraw(address user, uint256 balance); event Unstaked(address user, uint256 balance); uint256 public totalStaked; uint256 public totalCommitted; // synthetic asset => mapping of (user => user divident points) mapping (address => mapping (address => uint256)) public synthAssetDividendPoints; mapping (address => bool) public acceptedSynthAsset; mapping (address => bool) public previouslySeenSynthAsset; address[] public syntheticAssets; event newSyntheticAsset(address asset); function setDividendPoints(address who, uint256 amount) external onlyMinter returns (bool) { _shareBalances[who].lastDividendPoints = amount; return true; } function setTimelock(address timelock_) external onlyOwner { timelock = timelock_; } function addSyntheticAsset(address newAsset) external { require(msg.sender == timelock, "unauthorized"); require(acceptedSynthAsset[newAsset] == false && previouslySeenSynthAsset[newAsset] == false, 'must be a new asset'); syntheticAssets.push(newAsset); acceptedSynthAsset[newAsset] = true; previouslySeenSynthAsset[newAsset] = true; emit newSyntheticAsset(newAsset); } function setSyntheticAsset(address asset, bool active) external { require(msg.sender == timelock, "unauthorized"); require(previouslySeenSynthAsset[asset], 'must be a previously seen asset'); acceptedSynthAsset[asset] = active; } function setSyntheticDividendPoints(address synth, address who, uint256 amount) external returns (bool) { require(previouslySeenSynthAsset[synth], 'must be valid asset'); require(msg.sender == synth, 'unauthorized'); if (acceptedSynthAsset[synth]) { synthAssetDividendPoints[synth][who] = amount; } return true; } function lastSyntheticDividendPoints(address synth, address who) external view returns (uint256) { require(previouslySeenSynthAsset[synth], 'must be valid asset'); return synthAssetDividendPoints[synth][who]; } function setMinimumCommitTime(uint256 _seconds) external { require(msg.sender == timelock, "unauthorized"); minimumCommitTime = _seconds; } function externalTotalSupply() external view returns (uint256) { return _totalSupply; } function externalRawBalanceOf(address who) external view returns (uint256) { return _shareBalances[who].balance; } function lastDividendPoints(address who) external view returns (uint256) { return _shareBalances[who].lastDividendPoints; } function initialize(address owner_) public initializer { ERC20Detailed.initialize("Seigniorage Shares", "SHARE", uint8(DECIMALS)); Ownable.initialize(owner_); _initializedDollar = false; _totalSupply = INITIAL_SHARE_SUPPLY; _shareBalances[owner_].balance = _totalSupply; emit Transfer(address(0x0), owner_, _totalSupply); } // instantiate dollar function initializeDollar(address dollarAddress) public onlyOwner { require(_initializedDollar == false, "ALREADY_INITIALIZED"); Dollars = ICash(dollarAddress); _initializedDollar = true; _minter = dollarAddress; } /** * @return The total number of Dollars. */ function totalSupply() public view returns (uint256) { return _totalSupply; } // show balance minus shares function balanceOf(address who) public view returns (uint256) { return _shareBalances[who].balance; } function commitUnstake() updateAccount(msg.sender) external { require(stakingStatus[msg.sender] == 1, "please stake first"); commitTimeStamp[msg.sender] = now; stakingStatus[msg.sender] = 2; totalStaked = totalStaked.sub(balanceOf(msg.sender)); totalCommitted = totalCommitted.add(balanceOf(msg.sender)); emit CommittedWithdraw(msg.sender, balanceOf(msg.sender)); } function unstake() updateAccount(msg.sender) external { require(stakingStatus[msg.sender] == 2, "please commit to unstake first"); require(commitTimeStamp[msg.sender] + minimumCommitTime < now, "min time not met yet"); stakingStatus[msg.sender] = 0; totalCommitted = totalCommitted.sub(balanceOf(msg.sender)); emit Unstaked(msg.sender, balanceOf(msg.sender)); } function setTotalStaked(uint256 _amount) external onlyOwner { totalStaked = _amount; } function setTotalCommitted(uint256 _amount) external onlyOwner { totalCommitted = _amount; } function claimAll() updateAccount(msg.sender) external returns (bool) { return true; } function stake() updateAccount(msg.sender) external { require(stakingStatus[msg.sender] == 0, "please unstake first"); stakingStatus[msg.sender] = 1; totalStaked = totalStaked.add(balanceOf(msg.sender)); emit Staked(msg.sender, balanceOf(msg.sender)); } /** * @dev Transfer tokens to a specified address. * @param to The address to transfer to. * @param value The amount to be transferred. * @return True on success, false otherwise. */ function transfer(address to, uint256 value) public updateAccount(msg.sender) updateAccount(to) validRecipient(to) returns (bool) { require(stakingStatus[msg.sender] == 0, "please unstake to send"); _shareBalances[msg.sender].balance = _shareBalances[msg.sender].balance.sub(value); _shareBalances[to].balance = _shareBalances[to].balance.add(value); emit Transfer(msg.sender, to, value); _moveDelegates(_delegates2[msg.sender], _delegates2[to], value); // add to staking if true if (stakingStatus[to] == 1) totalStaked = totalStaked.add(value); else if (stakingStatus[to] == 2) totalCommitted = totalCommitted.add(value); return true; } /** * @dev Function to check the amount of tokens that an owner has allowed to a spender. * @param owner_ The address which owns the funds. * @param spender The address which will spend the funds. * @return The number of tokens still available for the spender. */ function allowance(address owner_, address spender) public view returns (uint256) { return _allowedShares[owner_][spender]; } /** * @dev Transfer tokens from one address to another. * @param from The address you want to send tokens from. * @param to The address you want to transfer to. * @param value The amount of tokens to be transferred. */ function transferFrom(address from, address to, uint256 value) public updateAccount(from) updateAccount(to) validRecipient(to) returns (bool) { require(stakingStatus[from] == 0, "please unstake to send"); _allowedShares[from][msg.sender] = _allowedShares[from][msg.sender].sub(value); _shareBalances[from].balance = _shareBalances[from].balance.sub(value); _shareBalances[to].balance = _shareBalances[to].balance.add(value); emit Transfer(from, to, value); _moveDelegates(_delegates2[from], _delegates2[to], value); if (stakingStatus[to] == 1) totalStaked = totalStaked.add(value); else if (stakingStatus[to] == 2) totalCommitted = totalCommitted.add(value); return true; } /** * @dev Approve the passed address to spend the specified amount of tokens on behalf of * msg.sender. This method is included for ERC20 compatibility. * increaseAllowance and decreaseAllowance should be used instead. * Changing an allowance with this method brings the risk that someone may transfer both * the old and the new allowance - if they are both greater than zero - if a transfer * transaction is mined before the later approve() call is mined. * * @param spender The address which will spend the funds. * @param value The amount of tokens to be spent. */ function approve(address spender, uint256 value) public validRecipient(spender) returns (bool) { _allowedShares[msg.sender][spender] = value; emit Approval(msg.sender, spender, value); return true; } modifier validRecipient(address to) { require(to != address(0x0)); require(to != address(this)); _; } /** * @dev Increase the amount of tokens that an owner has allowed to a spender. * This method should be used instead of approve() to avoid the double approval vulnerability * described above. * @param spender The address which will spend the funds. * @param addedValue The amount of tokens to increase the allowance by. */ function increaseAllowance(address spender, uint256 addedValue) public returns (bool) { _allowedShares[msg.sender][spender] = _allowedShares[msg.sender][spender].add(addedValue); emit Approval(msg.sender, spender, _allowedShares[msg.sender][spender]); return true; } /** * @dev Decrease the amount of tokens that an owner has allowed to a spender. * * @param spender The address which will spend the funds. * @param subtractedValue The amount of tokens to decrease the allowance by. */ function decreaseAllowance(address spender, uint256 subtractedValue) public returns (bool) { uint256 oldValue = _allowedShares[msg.sender][spender]; if (subtractedValue >= oldValue) { _allowedShares[msg.sender][spender] = 0; } else { _allowedShares[msg.sender][spender] = oldValue.sub(subtractedValue); } emit Approval(msg.sender, spender, _allowedShares[msg.sender][spender]); return true; } modifier updateAccount(address account) { Dollars.claimDividends(account); for (uint256 i = 0; i < syntheticAssets.length; i++) { if (previouslySeenSynthAsset[syntheticAssets[i]]) { ICash(syntheticAssets[i]).claimDividends(account); } } _; } // governance functions /** * @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 _delegates2[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), "SeigniorageShares::delegateBySig: invalid signature"); require(nonce == nonces2[signatory]++, "SeigniorageShares::delegateBySig: invalid nonce"); require(now <= expiry, "SeigniorageShares::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 = numCheckpoints2[account]; return nCheckpoints > 0 ? checkpoints2[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, "SeigniorageShares::getPriorVotes: not yet determined"); uint32 nCheckpoints = numCheckpoints2[account]; if (nCheckpoints == 0) { return 0; } // First check most recent balance if (checkpoints2[account][nCheckpoints - 1].fromBlock <= blockNumber) { return checkpoints2[account][nCheckpoints - 1].votes; } // Next check implicit zero balance if (checkpoints2[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 = checkpoints2[account][center]; if (cp.fromBlock == blockNumber) { return cp.votes; } else if (cp.fromBlock < blockNumber) { lower = center; } else { upper = center - 1; } } return checkpoints2[account][lower].votes; } function _delegate(address delegator, address delegatee) internal { address currentDelegate = _delegates2[delegator]; uint256 delegatorBalance = balanceOf(delegator); _delegates2[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 = numCheckpoints2[srcRep]; uint256 srcRepOld = srcRepNum > 0 ? checkpoints2[srcRep][srcRepNum - 1].votes : 0; uint256 srcRepNew = srcRepOld.sub(amount); _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew); } if (dstRep != address(0)) { // increase new representative uint32 dstRepNum = numCheckpoints2[dstRep]; uint256 dstRepOld = dstRepNum > 0 ? checkpoints2[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, "SeigniorageShares::_writeCheckpoint: block number exceeds 32 bits"); if (nCheckpoints > 0 && checkpoints2[delegatee][nCheckpoints - 1].fromBlock == blockNumber) { checkpoints2[delegatee][nCheckpoints - 1].votes = newVotes; } else { checkpoints2[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes); numCheckpoints2[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() public pure returns (uint) { return IShareHelper(address(0x1Cb015194edB31FD0e7Fa7a41AfC3a6A42e451F6)).getChainId(); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"constant":true,"inputs":[],"name":"externalTotalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"dollarAddress","type":"address"}],"name":"initializeDollar","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"commitTimeStamp","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"asset","type":"address"},{"name":"active","type":"bool"}],"name":"setSyntheticAsset","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"name","type":"string"},{"name":"symbol","type":"string"},{"name":"decimals","type":"uint8"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalCommitted","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"syntheticAssets","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unstake","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"minimumCommitTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getChainId","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[],"name":"debaseOn","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"stake","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"acceptedSynthAsset","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"stakingStatus","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"_debased","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"delegator","type":"address"}],"name":"delegates","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"uint32"}],"name":"checkpoints2","outputs":[{"name":"fromBlock","type":"uint32"},{"name":"votes","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"name":"","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"who","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"},{"name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"nonces","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"who","type":"address"}],"name":"lastDividendPoints","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalStaked","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"who","type":"address"},{"name":"amount","type":"uint256"}],"name":"setDividendPoints","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"synth","type":"address"},{"name":"who","type":"address"}],"name":"lastSyntheticDividendPoints","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"synth","type":"address"},{"name":"who","type":"address"},{"name":"amount","type":"uint256"}],"name":"setSyntheticDividendPoints","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"numCheckpoints2","outputs":[{"name":"","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"previouslySeenSynthAsset","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_amount","type":"uint256"}],"name":"setTotalCommitted","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"timelock_","type":"address"}],"name":"setTimelock","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"delegatee","type":"address"},{"name":"nonce","type":"uint256"},{"name":"expiry","type":"uint256"},{"name":"v","type":"uint8"},{"name":"r","type":"bytes32"},{"name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"owner_","type":"address"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_seconds","type":"uint256"}],"name":"setMinimumCommitTime","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"deprecatedVariable","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newAsset","type":"address"}],"name":"addSyntheticAsset","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"who","type":"address"}],"name":"externalRawBalanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"nonces2","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"claimAll","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"timelock","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"owner_","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_amount","type":"uint256"}],"name":"setTotalStaked","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"commitUnstake","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"synthAssetDividendPoints","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"name":"fromBlock","type":"uint32"},{"name":"votes","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"anonymous":false,"inputs":[{"indexed":true,"name":"delegator","type":"address"},{"indexed":true,"name":"fromDelegate","type":"address"},{"indexed":true,"name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"delegate","type":"address"},{"indexed":false,"name":"previousBalance","type":"uint256"},{"indexed":false,"name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"user","type":"address"},{"indexed":false,"name":"balance","type":"uint256"}],"name":"Staked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"user","type":"address"},{"indexed":false,"name":"balance","type":"uint256"}],"name":"CommittedWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"user","type":"address"},{"indexed":false,"name":"balance","type":"uint256"}],"name":"Unstaked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"asset","type":"address"}],"name":"newSyntheticAsset","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"}],"name":"OwnershipRenounced","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]
Contract Creation Code
608060405234801561001057600080fd5b50613f1f806100206000396000f3006080604052600436106102d45763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416630247259481146102d957806306b71b2b1461030057806306fdde0314610323578063095ea7b3146103ad578063143765dd146103e55780631615ac90146104065780631624f6c61461042c57806318160ddd146102d95780631d3231d4146104c857806320606b70146104dd57806323b872dd146104f25780632c7407aa1461051c5780632def6620146105505780633042ccb114610565578063313ce5671461057a5780633408e470146105a5578063394afb37146105ba57806339509351146105cf5780633a4b66f1146105f357806341dbe524146106085780634837eb1f146106295780634ba0d11c1461064a578063587cde1e1461066b5780635c19a95c1461068c57806366af7e2a146106ad5780636fcfff45146106f757806370a0823114610731578063715018a614610752578063782d6fe1146107675780637ecebe001461078b578063806985f7146107ac578063817b1cd2146107cd5780638da5cb5b146107e25780638f32d59b146107f757806395d0d5b01461080c57806395d89b41146108305780639768beab1461084557806398c8a39d1461086c578063a457c2d714610896578063a867a632146108ba578063a9059cbb146108db578063b3d13d02146108ff578063b4b5ea5714610920578063bc6acc5114610941578063bdacb30314610959578063c3cda5201461097a578063c4d66de8146109ad578063c4e5f083146109ce578063c7671882146109e6578063cb868f62146109fb578063cf356e0814610731578063d1047ae814610a1c578063d1058e5914610a3d578063d33219b414610a52578063dd62ed3e14610a67578063e17e7a2014610a8e578063e5e95ec214610aa6578063e7a324dc14610abb578063eee1fd2014610ad0578063f1127ed814610af7578063f2fde38b14610b21575b600080fd5b3480156102e557600080fd5b506102ee610b42565b60408051918252519081900360200190f35b34801561030c57600080fd5b50610321600160a060020a0360043516610b49565b005b34801561032f57600080fd5b50610338610c22565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561037257818101518382015260200161035a565b50505050905090810190601f16801561039f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103b957600080fd5b506103d1600160a060020a0360043516602435610cb8565b604080519115158252519081900360200190f35b3480156103f157600080fd5b506102ee600160a060020a0360043516610d4e565b34801561041257600080fd5b50610321600160a060020a03600435166024351515610d60565b34801561043857600080fd5b506040805160206004803580820135601f810184900484028501840190955284845261032194369492936024939284019190819084018382808284375050604080516020601f89358b018035918201839004830284018301909452808352979a9998810197919650918201945092508291508401838280828437509497505050923560ff169350610e6992505050565b3480156104d457600080fd5b506102ee610f8d565b3480156104e957600080fd5b506102ee610f93565b3480156104fe57600080fd5b506103d1600160a060020a0360043581169060243516604435611013565b34801561052857600080fd5b50610534600435611561565b60408051600160a060020a039092168252519081900360200190f35b34801561055c57600080fd5b50610321611589565b34801561057157600080fd5b506102ee611860565b34801561058657600080fd5b5061058f611866565b6040805160ff9092168252519081900360200190f35b3480156105b157600080fd5b506102ee61186f565b3480156105c657600080fd5b506103d161190d565b3480156105db57600080fd5b506103d1600160a060020a0360043516602435611916565b3480156105ff57600080fd5b506103216119af565b34801561061457600080fd5b506103d1600160a060020a0360043516611bf1565b34801561063557600080fd5b506102ee600160a060020a0360043516611c06565b34801561065657600080fd5b506103d1600160a060020a0360043516611c18565b34801561067757600080fd5b50610534600160a060020a0360043516611c2d565b34801561069857600080fd5b50610321600160a060020a0360043516611c4b565b3480156106b957600080fd5b506106d7600160a060020a036004351663ffffffff60243516611c58565b6040805163ffffffff909316835260208301919091528051918290030190f35b34801561070357600080fd5b50610718600160a060020a0360043516611c85565b6040805163ffffffff9092168252519081900360200190f35b34801561073d57600080fd5b506102ee600160a060020a0360043516611c9d565b34801561075e57600080fd5b50610321611cb8565b34801561077357600080fd5b506102ee600160a060020a0360043516602435611d22565b34801561079757600080fd5b506102ee600160a060020a0360043516611f78565b3480156107b857600080fd5b506102ee600160a060020a0360043516611f8a565b3480156107d957600080fd5b506102ee611fa8565b3480156107ee57600080fd5b50610534611fae565b34801561080357600080fd5b506103d1611fbd565b34801561081857600080fd5b506103d1600160a060020a0360043516602435611fce565b34801561083c57600080fd5b5061033861205f565b34801561085157600080fd5b506102ee600160a060020a03600435811690602435166120c0565b34801561087857600080fd5b506103d1600160a060020a0360043581169060243516604435612163565b3480156108a257600080fd5b506103d1600160a060020a0360043516602435612293565b3480156108c657600080fd5b50610718600160a060020a0360043516612382565b3480156108e757600080fd5b506103d1600160a060020a036004351660243561239a565b34801561090b57600080fd5b506103d1600160a060020a0360043516612881565b34801561092c57600080fd5b506102ee600160a060020a0360043516612896565b34801561094d57600080fd5b506103216004356128fc565b34801561096557600080fd5b50610321600160a060020a0360043516612914565b34801561098657600080fd5b50610321600160a060020a036004351660243560443560ff6064351660843560a435612956565b3480156109b957600080fd5b50610321600160a060020a0360043516612eb1565b3480156109da57600080fd5b50610321600435613084565b3480156109f257600080fd5b506105346130f0565b348015610a0757600080fd5b50610321600160a060020a0360043516613104565b348015610a2857600080fd5b506102ee600160a060020a03600435166132c5565b348015610a4957600080fd5b506103d16132d7565b348015610a5e57600080fd5b5061053461345c565b348015610a7357600080fd5b506102ee600160a060020a036004358116906024351661346b565b348015610a9a57600080fd5b50610321600435613496565b348015610ab257600080fd5b506103216134ae565b348015610ac757600080fd5b506102ee61371d565b348015610adc57600080fd5b506102ee600160a060020a0360043581169060243516613778565b348015610b0357600080fd5b506106d7600160a060020a036004351663ffffffff60243516613795565b348015610b2d57600080fd5b50610321600160a060020a03600435166137c2565b609c545b90565b610b51611fbd565b1515610b5c57600080fd5b609d5460ff1615610bbc5760408051600080516020613eb4833981519152815260206004820152601360248201527f414c52454144595f494e495449414c495a454400000000000000000000000000604482015290519081900360640190fd5b609d805460017fffffffffffffffffffffff0000000000000000000000000000000000000000ff909116610100600160a060020a03949094169384021760ff1916179055609b805473ffffffffffffffffffffffffffffffffffffffff19169091179055565b60338054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610cae5780601f10610c8357610100808354040283529160200191610cae565b820191906000526020600020905b815481529060010190602001808311610c9157829003601f168201915b5050505050905090565b600082600160a060020a0381161515610cd057600080fd5b600160a060020a038116301415610ce657600080fd5b336000818152609f60209081526040808320600160a060020a03891680855290835292819020879055805187815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b60ad6020526000908152604090205481565b60af54600160a060020a03163314610dc75760408051600080516020613eb4833981519152815260206004820152600c60248201527f756e617574686f72697a65640000000000000000000000000000000000000000604482015290519081900360640190fd5b600160a060020a038216600090815260b4602052604090205460ff161515610e3e5760408051600080516020613eb4833981519152815260206004820152601f60248201527f6d75737420626520612070726576696f75736c79207365656e20617373657400604482015290519081900360640190fd5b600160a060020a0391909116600090815260b360205260409020805460ff1916911515919091179055565b60008054610100900460ff1680610e835750610e836137de565b80610e91575060005460ff16155b1515610f125760408051600080516020613eb4833981519152815260206004820152602e60248201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560448201527f656e20696e697469616c697a6564000000000000000000000000000000000000606482015290519081900360840190fd5b50600054610100900460ff16158015610f3e576000805460ff1961ff0019909116610100171660011790555b8351610f51906033906020870190613e08565b508251610f65906034906020860190613e08565b506035805460ff191660ff84161790558015610f87576000805461ff00191690555b50505050565b60b15481565b604080517f454950373132446f6d61696e28737472696e67206e616d652c75696e7432353681527f20636861696e49642c6164647265737320766572696679696e67436f6e74726160208201527f637429000000000000000000000000000000000000000000000000000000000081830152905190819003604301902081565b609d5460408051600080516020613ed48339815191528152600160a060020a038087166004830152915160009387938593610100909204169163c7e772ed9160248082019260209290919082900301818787803b15801561107357600080fd5b505af1158015611087573d6000803e3d6000fd5b505050506040513d602081101561109d57600080fd5b5060009150505b60b5548110156111915760b4600060b5838154811015156110c157fe5b6000918252602080832090910154600160a060020a0316835282019290925260400190205460ff16156111895760b58054829081106110fc57fe5b600091825260208083209091015460408051600080516020613ed48339815191528152600160a060020a0387811660048301529151919092169363c7e772ed93602480850194919392918390030190829087803b15801561115c57600080fd5b505af1158015611170573d6000803e3d6000fd5b505050506040513d602081101561118657600080fd5b50505b6001016110a4565b609d5460408051600080516020613ed48339815191528152600160a060020a03808916600483015291518893600093610100909104169163c7e772ed91602480830192602092919082900301818787803b1580156111ee57600080fd5b505af1158015611202573d6000803e3d6000fd5b505050506040513d602081101561121857600080fd5b5060009150505b60b55481101561130c5760b4600060b58381548110151561123c57fe5b6000918252602080832090910154600160a060020a0316835282019290925260400190205460ff16156113045760b580548290811061127757fe5b600091825260208083209091015460408051600080516020613ed48339815191528152600160a060020a0387811660048301529151919092169363c7e772ed93602480850194919392918390030190829087803b1580156112d757600080fd5b505af11580156112eb573d6000803e3d6000fd5b505050506040513d602081101561130157600080fd5b50505b60010161121f565b86600160a060020a038116151561132257600080fd5b600160a060020a03811630141561133857600080fd5b600160a060020a038916600090815260ac6020526040902054156113ab5760408051600080516020613eb4833981519152815260206004820152601660248201527f706c6561736520756e7374616b6520746f2073656e6400000000000000000000604482015290519081900360640190fd5b600160a060020a0389166000908152609f602090815260408083203384529091529020546113df908863ffffffff6137e816565b600160a060020a038a166000818152609f60209081526040808320338452825280832094909455918152609e9091522054611420908863ffffffff6137e816565b600160a060020a03808b166000908152609e602052604080822093909355908a1681522054611455908863ffffffff6137ff16565b600160a060020a03808a166000818152609e60209081526040918290209490945580518b815290519193928d16927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3600160a060020a03808a16600090815260a86020526040808220548b841683529120546114de92918216911689613811565b600160a060020a038816600090815260ac60205260409020546001141561151a5760b054611512908863ffffffff6137ff16565b60b055611552565b600160a060020a038816600090815260ac6020526040902054600214156115525760b15461154e908863ffffffff6137ff16565b60b1555b50600198975050505050505050565b60b580548290811061156f57fe5b600091825260209091200154600160a060020a0316905081565b609d5460408051600080516020613ed48339815191528152336004820181905291519192600092610100909104600160a060020a03169163c7e772ed91602480830192602092919082900301818787803b1580156115e657600080fd5b505af11580156115fa573d6000803e3d6000fd5b505050506040513d602081101561161057600080fd5b5060009150505b60b5548110156117045760b4600060b58381548110151561163457fe5b6000918252602080832090910154600160a060020a0316835282019290925260400190205460ff16156116fc5760b580548290811061166f57fe5b600091825260208083209091015460408051600080516020613ed48339815191528152600160a060020a0387811660048301529151919092169363c7e772ed93602480850194919392918390030190829087803b1580156116cf57600080fd5b505af11580156116e3573d6000803e3d6000fd5b505050506040513d60208110156116f957600080fd5b50505b600101611617565b33600090815260ac60205260409020546002146117705760408051600080516020613eb4833981519152815260206004820152601e60248201527f706c6561736520636f6d6d697420746f20756e7374616b652066697273740000604482015290519081900360640190fd5b60ae5433600090815260ad6020526040902054429101106117e05760408051600080516020613eb4833981519152815260206004820152601460248201527f6d696e2074696d65206e6f74206d657420796574000000000000000000000000604482015290519081900360640190fd5b33600081815260ac602052604081205561180c906117fd90611c9d565b60b1549063ffffffff6137e816565b60b1557f0f5bb82176feb1b5e747e28471aa92156a04d9f3ab9f45f28e2d704232b93f753361183a81611c9d565b60408051600160a060020a03909316835260208301919091528051918290030190a15050565b60ae5481565b60355460ff1690565b6000731cb015194edb31fd0e7fa7a41afc3a6a42e451f6600160a060020a0316633408e4706040518163ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401602060405180830381600087803b1580156118dc57600080fd5b505af11580156118f0573d6000803e3d6000fd5b505050506040513d602081101561190657600080fd5b5051905090565b60a35460ff1681565b336000908152609f60209081526040808320600160a060020a038616845290915281205461194a908363ffffffff6137ff16565b336000818152609f60209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b609d5460408051600080516020613ed48339815191528152336004820181905291519192600092610100909104600160a060020a03169163c7e772ed91602480830192602092919082900301818787803b158015611a0c57600080fd5b505af1158015611a20573d6000803e3d6000fd5b505050506040513d6020811015611a3657600080fd5b5060009150505b60b554811015611b2a5760b4600060b583815481101515611a5a57fe5b6000918252602080832090910154600160a060020a0316835282019290925260400190205460ff1615611b225760b5805482908110611a9557fe5b600091825260208083209091015460408051600080516020613ed48339815191528152600160a060020a0387811660048301529151919092169363c7e772ed93602480850194919392918390030190829087803b158015611af557600080fd5b505af1158015611b09573d6000803e3d6000fd5b505050506040513d6020811015611b1f57600080fd5b50505b600101611a3d565b33600090815260ac602052604090205415611b945760408051600080516020613eb4833981519152815260206004820152601460248201527f706c6561736520756e7374616b65206669727374000000000000000000000000604482015290519081900360640190fd5b33600081815260ac6020526040902060019055611bc390611bb490611c9d565b60b0549063ffffffff6137ff16565b60b0557f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d3361183a81611c9d565b60b36020526000908152604090205460ff1681565b60ac6020526000908152604090205481565b60a26020526000908152604090205460ff1681565b600160a060020a03908116600090815260a860205260409020541690565b611c55338261396a565b50565b60a96020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b60a66020526000908152604090205463ffffffff1681565b600160a060020a03166000908152609e602052604090205490565b611cc0611fbd565b1515611ccb57600080fd5b606854604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26068805473ffffffffffffffffffffffffffffffffffffffff19169055565b6000806000806000611d32613e82565b438710611db45760408051600080516020613eb4833981519152815260206004820152603460248201527f536569676e696f726167655368617265733a3a6765745072696f72566f74657360448201527f3a206e6f74207965742064657465726d696e6564000000000000000000000000606482015290519081900360840190fd5b600160a060020a038816600090815260aa602052604090205463ffffffff169450841515611de55760009550611f6d565b600160a060020a038816600090815260a96020908152604080832063ffffffff6000198a0181168552925290912054168710611e5357600160a060020a038816600090815260a96020908152604080832063ffffffff6000198a011684529091529020600101549550611f6d565b600160a060020a038816600090815260a96020908152604080832083805290915290205463ffffffff16871015611e8d5760009550611f6d565b600093506001850392505b8363ffffffff168363ffffffff161115611f3d57600263ffffffff85850316600160a060020a038a16600090815260a96020908152604080832094909304870363ffffffff818116845294825291839020835180850190945280549094168084526001909401549083015293509150871415611f1a5780602001519550611f6d565b805163ffffffff16871115611f3157819350611f38565b6001820392505b611e98565b600160a060020a038816600090815260a96020908152604080832063ffffffff8816845290915290206001015495505b505050505092915050565b60a76020526000908152604090205481565b600160a060020a03166000908152609e602052604090206001015490565b60b05481565b606854600160a060020a031690565b606854600160a060020a0316331490565b609b54600090600160a060020a031633146120385760408051600080516020613eb4833981519152815260206004820152601960248201527f444f45535f4e4f545f484156455f4d494e5445525f524f4c4500000000000000604482015290519081900360640190fd5b50600160a060020a0382166000908152609e60205260409020600190810182905592915050565b60348054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610cae5780601f10610c8357610100808354040283529160200191610cae565b600160a060020a038216600090815260b4602052604081205460ff1615156121375760408051600080516020613eb4833981519152815260206004820152601360248201527f6d7573742062652076616c696420617373657400000000000000000000000000604482015290519081900360640190fd5b50600160a060020a03918216600090815260b26020908152604080832093909416825291909152205490565b600160a060020a038316600090815260b4602052604081205460ff1615156121da5760408051600080516020613eb4833981519152815260206004820152601360248201527f6d7573742062652076616c696420617373657400000000000000000000000000604482015290519081900360640190fd5b33600160a060020a0385161461223f5760408051600080516020613eb4833981519152815260206004820152600c60248201527f756e617574686f72697a65640000000000000000000000000000000000000000604482015290519081900360640190fd5b600160a060020a038416600090815260b3602052604090205460ff161561228957600160a060020a03808516600090815260b2602090815260408083209387168352929052208290555b5060019392505050565b336000908152609f60209081526040808320600160a060020a03861684529091528120548083106122e757336000908152609f60209081526040808320600160a060020a038816845290915281205561231c565b6122f7818463ffffffff6137e816565b336000908152609f60209081526040808320600160a060020a03891684529091529020555b336000818152609f60209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b60aa6020526000908152604090205463ffffffff1681565b609d5460408051600080516020613ed48339815191528152336004820181905291516000938492610100909104600160a060020a03169163c7e772ed9160248082019260209290919082900301818787803b1580156123f857600080fd5b505af115801561240c573d6000803e3d6000fd5b505050506040513d602081101561242257600080fd5b5060009150505b60b5548110156125165760b4600060b58381548110151561244657fe5b6000918252602080832090910154600160a060020a0316835282019290925260400190205460ff161561250e5760b580548290811061248157fe5b600091825260208083209091015460408051600080516020613ed48339815191528152600160a060020a0387811660048301529151919092169363c7e772ed93602480850194919392918390030190829087803b1580156124e157600080fd5b505af11580156124f5573d6000803e3d6000fd5b505050506040513d602081101561250b57600080fd5b50505b600101612429565b609d5460408051600080516020613ed48339815191528152600160a060020a03808916600483015291518893600093610100909104169163c7e772ed91602480830192602092919082900301818787803b15801561257357600080fd5b505af1158015612587573d6000803e3d6000fd5b505050506040513d602081101561259d57600080fd5b5060009150505b60b5548110156126915760b4600060b5838154811015156125c157fe5b6000918252602080832090910154600160a060020a0316835282019290925260400190205460ff16156126895760b58054829081106125fc57fe5b600091825260208083209091015460408051600080516020613ed48339815191528152600160a060020a0387811660048301529151919092169363c7e772ed93602480850194919392918390030190829087803b15801561265c57600080fd5b505af1158015612670573d6000803e3d6000fd5b505050506040513d602081101561268657600080fd5b50505b6001016125a4565b86600160a060020a03811615156126a757600080fd5b600160a060020a0381163014156126bd57600080fd5b33600090815260ac6020526040902054156127275760408051600080516020613eb4833981519152815260206004820152601660248201527f706c6561736520756e7374616b6520746f2073656e6400000000000000000000604482015290519081900360640190fd5b336000908152609e6020526040902054612747908863ffffffff6137e816565b336000908152609e602052604080822092909255600160a060020a038a1681522054612779908863ffffffff6137ff16565b600160a060020a0389166000818152609e60209081526040918290209390935580518a81529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a333600090815260a8602052604080822054600160a060020a038b8116845291909220546127ff928216911689613811565b600160a060020a038816600090815260ac60205260409020546001141561283b5760b054612833908863ffffffff6137ff16565b60b055612873565b600160a060020a038816600090815260ac6020526040902054600214156128735760b15461286f908863ffffffff6137ff16565b60b1555b506001979650505050505050565b60b46020526000908152604090205460ff1681565b600160a060020a038116600090815260aa602052604081205463ffffffff168181116128c35760006128f5565b600160a060020a038316600090815260a96020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b612904611fbd565b151561290f57600080fd5b60b155565b61291c611fbd565b151561292757600080fd5b60af805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60008060008060405180807f454950373132446f6d61696e28737472696e67206e616d652c75696e7432353681526020017f20636861696e49642c6164647265737320766572696679696e67436f6e74726181526020017f6374290000000000000000000000000000000000000000000000000000000000815250604301905060405180910390206129e6610c22565b6040518082805190602001908083835b60208310612a155780518252601f1990920191602091820191016129f6565b6001836020036101000a0380198251168184511680821785525050505050509050019150506040518091039020612a4a61186f565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a09092019081905281519192909182918401908083835b60208310612ab15780518252601f199092019160209182019101612a92565b6001836020036101000a0380198251168184511680821785525050505050509050019150506040518091039020935060405180807f44656c65676174696f6e28616464726573732064656c6567617465652c75696e81526020017f74323536206e6f6e63652c75696e743235362065787069727929000000000000815250603a01905060405180910390208a8a8a60405160200180856000191660001916815260200184600160a060020a0316600160a060020a031681526020018381526020018281526020019450505050506040516020818303038152906040526040518082805190602001908083835b60208310612bbc5780518252601f199092019160209182019101612b9d565b51815160209384036101000a6000190180199092169116179052604080519290940182900382207f190100000000000000000000000000000000000000000000000000000000000083830152602283018b905260428084018290528551808503909101815260629093019485905282519099509195509293508392850191508083835b60208310612c5e5780518252601f199092019160209182019101612c3f565b51815160209384036101000a600019018019909216911617905260408051929094018290038220600080845283830180875282905260ff8f1684870152606084018e9052608084018d905294519098506001965060a080840196509194601f19820194509281900390910191865af1158015612cde573d6000803e3d6000fd5b5050604051601f190151915050600160a060020a0381161515612d765760408051600080516020613eb4833981519152815260206004820152603360248201527f536569676e696f726167655368617265733a3a64656c6567617465427953696760448201527f3a20696e76616c6964207369676e617475726500000000000000000000000000606482015290519081900360840190fd5b600160a060020a038116600090815260ab602052604090208054600181019091558914612e185760408051600080516020613eb4833981519152815260206004820152602f60248201527f536569676e696f726167655368617265733a3a64656c6567617465427953696760448201527f3a20696e76616c6964206e6f6e63650000000000000000000000000000000000606482015290519081900360840190fd5b42881015612e9b5760408051600080516020613eb4833981519152815260206004820152603360248201527f536569676e696f726167655368617265733a3a64656c6567617465427953696760448201527f3a207369676e6174757265206578706972656400000000000000000000000000606482015290519081900360840190fd5b612ea5818b61396a565b50505050505050505050565b60008054610100900460ff1680612ecb5750612ecb6137de565b80612ed9575060005460ff16155b1515612f5a5760408051600080516020613eb4833981519152815260206004820152602e60248201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560448201527f656e20696e697469616c697a6564000000000000000000000000000000000000606482015290519081900360840190fd5b50600054610100900460ff16158015612f86576000805460ff1961ff0019909116610100171660011790555b612ffc6040805190810160405280601281526020017f536569676e696f726167652053686172657300000000000000000000000000008152506040805190810160405280600581526020017f53484152450000000000000000000000000000000000000000000000000000008152506009610e69565b61300582613a06565b609d805460ff19169055664a9b6384488000609c819055600160a060020a0383166000818152609e60209081526040808320859055805194855251929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a38015613080576000805461ff00191690555b5050565b60af54600160a060020a031633146130eb5760408051600080516020613eb4833981519152815260206004820152600c60248201527f756e617574686f72697a65640000000000000000000000000000000000000000604482015290519081900360640190fd5b60ae55565b60a0546101009004600160a060020a031681565b60af54600160a060020a0316331461316b5760408051600080516020613eb4833981519152815260206004820152600c60248201527f756e617574686f72697a65640000000000000000000000000000000000000000604482015290519081900360640190fd5b600160a060020a038116600090815260b3602052604090205460ff161580156131ad5750600160a060020a038116600090815260b4602052604090205460ff16155b15156132085760408051600080516020613eb4833981519152815260206004820152601360248201527f6d7573742062652061206e657720617373657400000000000000000000000000604482015290519081900360640190fd5b60b5805460018082019092557f22b88d74a6b23be687aa96340c881253c2e9873c526eec7366dc5f733ada306a01805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a038416908117909155600081815260b360209081526040808320805460ff19908116871790915560b48352928190208054909316909417909155825191825291517f6eb11e4d0386e50a01ad2d4b63a6d9804a8cf9b1761d40522e0f401a10cfde61929181900390910190a150565b60ab6020526000908152604090205481565b609d5460408051600080516020613ed48339815191528152336004820181905291516000938492610100909104600160a060020a03169163c7e772ed9160248082019260209290919082900301818787803b15801561333557600080fd5b505af1158015613349573d6000803e3d6000fd5b505050506040513d602081101561335f57600080fd5b5060009150505b60b5548110156134535760b4600060b58381548110151561338357fe5b6000918252602080832090910154600160a060020a0316835282019290925260400190205460ff161561344b5760b58054829081106133be57fe5b600091825260208083209091015460408051600080516020613ed48339815191528152600160a060020a0387811660048301529151919092169363c7e772ed93602480850194919392918390030190829087803b15801561341e57600080fd5b505af1158015613432573d6000803e3d6000fd5b505050506040513d602081101561344857600080fd5b50505b600101613366565b60019250505090565b60af54600160a060020a031681565b600160a060020a039182166000908152609f6020908152604080832093909416825291909152205490565b61349e611fbd565b15156134a957600080fd5b60b055565b609d5460408051600080516020613ed48339815191528152336004820181905291519192600092610100909104600160a060020a03169163c7e772ed91602480830192602092919082900301818787803b15801561350b57600080fd5b505af115801561351f573d6000803e3d6000fd5b505050506040513d602081101561353557600080fd5b5060009150505b60b5548110156136295760b4600060b58381548110151561355957fe5b6000918252602080832090910154600160a060020a0316835282019290925260400190205460ff16156136215760b580548290811061359457fe5b600091825260208083209091015460408051600080516020613ed48339815191528152600160a060020a0387811660048301529151919092169363c7e772ed93602480850194919392918390030190829087803b1580156135f457600080fd5b505af1158015613608573d6000803e3d6000fd5b505050506040513d602081101561361e57600080fd5b50505b60010161353c565b33600090815260ac60205260409020546001146136955760408051600080516020613eb4833981519152815260206004820152601260248201527f706c65617365207374616b652066697273740000000000000000000000000000604482015290519081900360640190fd5b33600081815260ad6020908152604080832042905560ac9091529020600290556136d1906136c290611c9d565b60b0549063ffffffff6137e816565b60b0556136ef6136e033611c9d565b60b1549063ffffffff6137ff16565b60b1557f5900e3398d3e5e6e5698f1e0cb3db105f6b4a407f6146b9694caa6565bb740003361183a81611c9d565b604080517f44656c65676174696f6e28616464726573732064656c6567617465652c75696e81527f74323536206e6f6e63652c75696e7432353620657870697279290000000000006020820152905190819003603a01902081565b60b260209081526000928352604080842090915290825290205481565b60a56020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b6137ca611fbd565b15156137d557600080fd5b611c5581613b18565b303b8015905b5090565b600080838311156137f857600080fd5b5050900390565b6000828201838110156128f557600080fd5b60008060008060008087600160a060020a031689600160a060020a03161415801561383c5750600087115b1561395f57600160a060020a038916156138d057600160a060020a038916600090815260aa602052604081205463ffffffff169650861161387e5760006138b0565b600160a060020a038916600090815260a96020908152604080832063ffffffff6000198b011684529091529020600101545b94506138c2858863ffffffff6137e816565b93506138d089878787613b96565b600160a060020a0388161561395f57600160a060020a038816600090815260aa602052604081205463ffffffff169350831161390d57600061393f565b600160a060020a038816600090815260a96020908152604080832063ffffffff60001988011684529091529020600101545b9150613951828863ffffffff6137ff16565b905061395f88848484613b96565b505050505050505050565b600160a060020a03808316600090815260a860205260408120549091169061399184611c9d565b600160a060020a03858116600081815260a86020526040808220805473ffffffffffffffffffffffffffffffffffffffff1916898616908117909155905194955093928616927f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4610f87828483613811565b60008054610100900460ff1680613a205750613a206137de565b80613a2e575060005460ff16155b1515613aaf5760408051600080516020613eb4833981519152815260206004820152602e60248201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560448201527f656e20696e697469616c697a6564000000000000000000000000000000000000606482015290519081900360840190fd5b50600054610100900460ff16158015613adb576000805460ff1961ff0019909116610100171660011790555b6068805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0384161790558015613080576000805461ff00191690555050565b600160a060020a0381161515613b2d57600080fd5b606854604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36068805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6000613c2443608060405190810160405280604181526020017f536569676e696f726167655368617265733a3a5f7772697465436865636b706f81526020017f696e743a20626c6f636b206e756d62657220657863656564732033322062697481526020017f7300000000000000000000000000000000000000000000000000000000000000815250613d65565b905060008463ffffffff16118015613c6d5750600160a060020a038516600090815260a96020908152604080832063ffffffff6000198901811685529252909120548282169116145b15613caa57600160a060020a038516600090815260a96020908152604080832063ffffffff60001989011684529091529020600101829055613d1b565b60408051808201825263ffffffff80841682526020808301868152600160a060020a038a16600081815260a984528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260aa9092529390208054928801909116919092161790555b60408051848152602081018490528151600160a060020a038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b6000816401000000008410613e0057604051600080516020613eb483398151915281526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613dc5578181015183820152602001613dad565b50505050905090810190601f168015613df25780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b509192915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10613e4957805160ff1916838001178555613e76565b82800160010185558215613e76579182015b82811115613e76578251825591602001919060010190613e5b565b506137e4929150613e99565b604080518082019091526000808252602082015290565b610b4691905b808211156137e45760008155600101613e9f560008c379a000000000000000000000000000000000000000000000000000000000c7e772ed00000000000000000000000000000000000000000000000000000000a165627a7a7230582022c63f56246b3fe42fb8e4a8addd80f57b468bbc35d2423d913e14fcff741b820029
Deployed Bytecode
0x6080604052600436106102d45763ffffffff7c01000000000000000000000000000000000000000000000000000000006000350416630247259481146102d957806306b71b2b1461030057806306fdde0314610323578063095ea7b3146103ad578063143765dd146103e55780631615ac90146104065780631624f6c61461042c57806318160ddd146102d95780631d3231d4146104c857806320606b70146104dd57806323b872dd146104f25780632c7407aa1461051c5780632def6620146105505780633042ccb114610565578063313ce5671461057a5780633408e470146105a5578063394afb37146105ba57806339509351146105cf5780633a4b66f1146105f357806341dbe524146106085780634837eb1f146106295780634ba0d11c1461064a578063587cde1e1461066b5780635c19a95c1461068c57806366af7e2a146106ad5780636fcfff45146106f757806370a0823114610731578063715018a614610752578063782d6fe1146107675780637ecebe001461078b578063806985f7146107ac578063817b1cd2146107cd5780638da5cb5b146107e25780638f32d59b146107f757806395d0d5b01461080c57806395d89b41146108305780639768beab1461084557806398c8a39d1461086c578063a457c2d714610896578063a867a632146108ba578063a9059cbb146108db578063b3d13d02146108ff578063b4b5ea5714610920578063bc6acc5114610941578063bdacb30314610959578063c3cda5201461097a578063c4d66de8146109ad578063c4e5f083146109ce578063c7671882146109e6578063cb868f62146109fb578063cf356e0814610731578063d1047ae814610a1c578063d1058e5914610a3d578063d33219b414610a52578063dd62ed3e14610a67578063e17e7a2014610a8e578063e5e95ec214610aa6578063e7a324dc14610abb578063eee1fd2014610ad0578063f1127ed814610af7578063f2fde38b14610b21575b600080fd5b3480156102e557600080fd5b506102ee610b42565b60408051918252519081900360200190f35b34801561030c57600080fd5b50610321600160a060020a0360043516610b49565b005b34801561032f57600080fd5b50610338610c22565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561037257818101518382015260200161035a565b50505050905090810190601f16801561039f5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156103b957600080fd5b506103d1600160a060020a0360043516602435610cb8565b604080519115158252519081900360200190f35b3480156103f157600080fd5b506102ee600160a060020a0360043516610d4e565b34801561041257600080fd5b50610321600160a060020a03600435166024351515610d60565b34801561043857600080fd5b506040805160206004803580820135601f810184900484028501840190955284845261032194369492936024939284019190819084018382808284375050604080516020601f89358b018035918201839004830284018301909452808352979a9998810197919650918201945092508291508401838280828437509497505050923560ff169350610e6992505050565b3480156104d457600080fd5b506102ee610f8d565b3480156104e957600080fd5b506102ee610f93565b3480156104fe57600080fd5b506103d1600160a060020a0360043581169060243516604435611013565b34801561052857600080fd5b50610534600435611561565b60408051600160a060020a039092168252519081900360200190f35b34801561055c57600080fd5b50610321611589565b34801561057157600080fd5b506102ee611860565b34801561058657600080fd5b5061058f611866565b6040805160ff9092168252519081900360200190f35b3480156105b157600080fd5b506102ee61186f565b3480156105c657600080fd5b506103d161190d565b3480156105db57600080fd5b506103d1600160a060020a0360043516602435611916565b3480156105ff57600080fd5b506103216119af565b34801561061457600080fd5b506103d1600160a060020a0360043516611bf1565b34801561063557600080fd5b506102ee600160a060020a0360043516611c06565b34801561065657600080fd5b506103d1600160a060020a0360043516611c18565b34801561067757600080fd5b50610534600160a060020a0360043516611c2d565b34801561069857600080fd5b50610321600160a060020a0360043516611c4b565b3480156106b957600080fd5b506106d7600160a060020a036004351663ffffffff60243516611c58565b6040805163ffffffff909316835260208301919091528051918290030190f35b34801561070357600080fd5b50610718600160a060020a0360043516611c85565b6040805163ffffffff9092168252519081900360200190f35b34801561073d57600080fd5b506102ee600160a060020a0360043516611c9d565b34801561075e57600080fd5b50610321611cb8565b34801561077357600080fd5b506102ee600160a060020a0360043516602435611d22565b34801561079757600080fd5b506102ee600160a060020a0360043516611f78565b3480156107b857600080fd5b506102ee600160a060020a0360043516611f8a565b3480156107d957600080fd5b506102ee611fa8565b3480156107ee57600080fd5b50610534611fae565b34801561080357600080fd5b506103d1611fbd565b34801561081857600080fd5b506103d1600160a060020a0360043516602435611fce565b34801561083c57600080fd5b5061033861205f565b34801561085157600080fd5b506102ee600160a060020a03600435811690602435166120c0565b34801561087857600080fd5b506103d1600160a060020a0360043581169060243516604435612163565b3480156108a257600080fd5b506103d1600160a060020a0360043516602435612293565b3480156108c657600080fd5b50610718600160a060020a0360043516612382565b3480156108e757600080fd5b506103d1600160a060020a036004351660243561239a565b34801561090b57600080fd5b506103d1600160a060020a0360043516612881565b34801561092c57600080fd5b506102ee600160a060020a0360043516612896565b34801561094d57600080fd5b506103216004356128fc565b34801561096557600080fd5b50610321600160a060020a0360043516612914565b34801561098657600080fd5b50610321600160a060020a036004351660243560443560ff6064351660843560a435612956565b3480156109b957600080fd5b50610321600160a060020a0360043516612eb1565b3480156109da57600080fd5b50610321600435613084565b3480156109f257600080fd5b506105346130f0565b348015610a0757600080fd5b50610321600160a060020a0360043516613104565b348015610a2857600080fd5b506102ee600160a060020a03600435166132c5565b348015610a4957600080fd5b506103d16132d7565b348015610a5e57600080fd5b5061053461345c565b348015610a7357600080fd5b506102ee600160a060020a036004358116906024351661346b565b348015610a9a57600080fd5b50610321600435613496565b348015610ab257600080fd5b506103216134ae565b348015610ac757600080fd5b506102ee61371d565b348015610adc57600080fd5b506102ee600160a060020a0360043581169060243516613778565b348015610b0357600080fd5b506106d7600160a060020a036004351663ffffffff60243516613795565b348015610b2d57600080fd5b50610321600160a060020a03600435166137c2565b609c545b90565b610b51611fbd565b1515610b5c57600080fd5b609d5460ff1615610bbc5760408051600080516020613eb4833981519152815260206004820152601360248201527f414c52454144595f494e495449414c495a454400000000000000000000000000604482015290519081900360640190fd5b609d805460017fffffffffffffffffffffff0000000000000000000000000000000000000000ff909116610100600160a060020a03949094169384021760ff1916179055609b805473ffffffffffffffffffffffffffffffffffffffff19169091179055565b60338054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610cae5780601f10610c8357610100808354040283529160200191610cae565b820191906000526020600020905b815481529060010190602001808311610c9157829003601f168201915b5050505050905090565b600082600160a060020a0381161515610cd057600080fd5b600160a060020a038116301415610ce657600080fd5b336000818152609f60209081526040808320600160a060020a03891680855290835292819020879055805187815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b60ad6020526000908152604090205481565b60af54600160a060020a03163314610dc75760408051600080516020613eb4833981519152815260206004820152600c60248201527f756e617574686f72697a65640000000000000000000000000000000000000000604482015290519081900360640190fd5b600160a060020a038216600090815260b4602052604090205460ff161515610e3e5760408051600080516020613eb4833981519152815260206004820152601f60248201527f6d75737420626520612070726576696f75736c79207365656e20617373657400604482015290519081900360640190fd5b600160a060020a0391909116600090815260b360205260409020805460ff1916911515919091179055565b60008054610100900460ff1680610e835750610e836137de565b80610e91575060005460ff16155b1515610f125760408051600080516020613eb4833981519152815260206004820152602e60248201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560448201527f656e20696e697469616c697a6564000000000000000000000000000000000000606482015290519081900360840190fd5b50600054610100900460ff16158015610f3e576000805460ff1961ff0019909116610100171660011790555b8351610f51906033906020870190613e08565b508251610f65906034906020860190613e08565b506035805460ff191660ff84161790558015610f87576000805461ff00191690555b50505050565b60b15481565b604080517f454950373132446f6d61696e28737472696e67206e616d652c75696e7432353681527f20636861696e49642c6164647265737320766572696679696e67436f6e74726160208201527f637429000000000000000000000000000000000000000000000000000000000081830152905190819003604301902081565b609d5460408051600080516020613ed48339815191528152600160a060020a038087166004830152915160009387938593610100909204169163c7e772ed9160248082019260209290919082900301818787803b15801561107357600080fd5b505af1158015611087573d6000803e3d6000fd5b505050506040513d602081101561109d57600080fd5b5060009150505b60b5548110156111915760b4600060b5838154811015156110c157fe5b6000918252602080832090910154600160a060020a0316835282019290925260400190205460ff16156111895760b58054829081106110fc57fe5b600091825260208083209091015460408051600080516020613ed48339815191528152600160a060020a0387811660048301529151919092169363c7e772ed93602480850194919392918390030190829087803b15801561115c57600080fd5b505af1158015611170573d6000803e3d6000fd5b505050506040513d602081101561118657600080fd5b50505b6001016110a4565b609d5460408051600080516020613ed48339815191528152600160a060020a03808916600483015291518893600093610100909104169163c7e772ed91602480830192602092919082900301818787803b1580156111ee57600080fd5b505af1158015611202573d6000803e3d6000fd5b505050506040513d602081101561121857600080fd5b5060009150505b60b55481101561130c5760b4600060b58381548110151561123c57fe5b6000918252602080832090910154600160a060020a0316835282019290925260400190205460ff16156113045760b580548290811061127757fe5b600091825260208083209091015460408051600080516020613ed48339815191528152600160a060020a0387811660048301529151919092169363c7e772ed93602480850194919392918390030190829087803b1580156112d757600080fd5b505af11580156112eb573d6000803e3d6000fd5b505050506040513d602081101561130157600080fd5b50505b60010161121f565b86600160a060020a038116151561132257600080fd5b600160a060020a03811630141561133857600080fd5b600160a060020a038916600090815260ac6020526040902054156113ab5760408051600080516020613eb4833981519152815260206004820152601660248201527f706c6561736520756e7374616b6520746f2073656e6400000000000000000000604482015290519081900360640190fd5b600160a060020a0389166000908152609f602090815260408083203384529091529020546113df908863ffffffff6137e816565b600160a060020a038a166000818152609f60209081526040808320338452825280832094909455918152609e9091522054611420908863ffffffff6137e816565b600160a060020a03808b166000908152609e602052604080822093909355908a1681522054611455908863ffffffff6137ff16565b600160a060020a03808a166000818152609e60209081526040918290209490945580518b815290519193928d16927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3600160a060020a03808a16600090815260a86020526040808220548b841683529120546114de92918216911689613811565b600160a060020a038816600090815260ac60205260409020546001141561151a5760b054611512908863ffffffff6137ff16565b60b055611552565b600160a060020a038816600090815260ac6020526040902054600214156115525760b15461154e908863ffffffff6137ff16565b60b1555b50600198975050505050505050565b60b580548290811061156f57fe5b600091825260209091200154600160a060020a0316905081565b609d5460408051600080516020613ed48339815191528152336004820181905291519192600092610100909104600160a060020a03169163c7e772ed91602480830192602092919082900301818787803b1580156115e657600080fd5b505af11580156115fa573d6000803e3d6000fd5b505050506040513d602081101561161057600080fd5b5060009150505b60b5548110156117045760b4600060b58381548110151561163457fe5b6000918252602080832090910154600160a060020a0316835282019290925260400190205460ff16156116fc5760b580548290811061166f57fe5b600091825260208083209091015460408051600080516020613ed48339815191528152600160a060020a0387811660048301529151919092169363c7e772ed93602480850194919392918390030190829087803b1580156116cf57600080fd5b505af11580156116e3573d6000803e3d6000fd5b505050506040513d60208110156116f957600080fd5b50505b600101611617565b33600090815260ac60205260409020546002146117705760408051600080516020613eb4833981519152815260206004820152601e60248201527f706c6561736520636f6d6d697420746f20756e7374616b652066697273740000604482015290519081900360640190fd5b60ae5433600090815260ad6020526040902054429101106117e05760408051600080516020613eb4833981519152815260206004820152601460248201527f6d696e2074696d65206e6f74206d657420796574000000000000000000000000604482015290519081900360640190fd5b33600081815260ac602052604081205561180c906117fd90611c9d565b60b1549063ffffffff6137e816565b60b1557f0f5bb82176feb1b5e747e28471aa92156a04d9f3ab9f45f28e2d704232b93f753361183a81611c9d565b60408051600160a060020a03909316835260208301919091528051918290030190a15050565b60ae5481565b60355460ff1690565b6000731cb015194edb31fd0e7fa7a41afc3a6a42e451f6600160a060020a0316633408e4706040518163ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401602060405180830381600087803b1580156118dc57600080fd5b505af11580156118f0573d6000803e3d6000fd5b505050506040513d602081101561190657600080fd5b5051905090565b60a35460ff1681565b336000908152609f60209081526040808320600160a060020a038616845290915281205461194a908363ffffffff6137ff16565b336000818152609f60209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b609d5460408051600080516020613ed48339815191528152336004820181905291519192600092610100909104600160a060020a03169163c7e772ed91602480830192602092919082900301818787803b158015611a0c57600080fd5b505af1158015611a20573d6000803e3d6000fd5b505050506040513d6020811015611a3657600080fd5b5060009150505b60b554811015611b2a5760b4600060b583815481101515611a5a57fe5b6000918252602080832090910154600160a060020a0316835282019290925260400190205460ff1615611b225760b5805482908110611a9557fe5b600091825260208083209091015460408051600080516020613ed48339815191528152600160a060020a0387811660048301529151919092169363c7e772ed93602480850194919392918390030190829087803b158015611af557600080fd5b505af1158015611b09573d6000803e3d6000fd5b505050506040513d6020811015611b1f57600080fd5b50505b600101611a3d565b33600090815260ac602052604090205415611b945760408051600080516020613eb4833981519152815260206004820152601460248201527f706c6561736520756e7374616b65206669727374000000000000000000000000604482015290519081900360640190fd5b33600081815260ac6020526040902060019055611bc390611bb490611c9d565b60b0549063ffffffff6137ff16565b60b0557f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d3361183a81611c9d565b60b36020526000908152604090205460ff1681565b60ac6020526000908152604090205481565b60a26020526000908152604090205460ff1681565b600160a060020a03908116600090815260a860205260409020541690565b611c55338261396a565b50565b60a96020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b60a66020526000908152604090205463ffffffff1681565b600160a060020a03166000908152609e602052604090205490565b611cc0611fbd565b1515611ccb57600080fd5b606854604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26068805473ffffffffffffffffffffffffffffffffffffffff19169055565b6000806000806000611d32613e82565b438710611db45760408051600080516020613eb4833981519152815260206004820152603460248201527f536569676e696f726167655368617265733a3a6765745072696f72566f74657360448201527f3a206e6f74207965742064657465726d696e6564000000000000000000000000606482015290519081900360840190fd5b600160a060020a038816600090815260aa602052604090205463ffffffff169450841515611de55760009550611f6d565b600160a060020a038816600090815260a96020908152604080832063ffffffff6000198a0181168552925290912054168710611e5357600160a060020a038816600090815260a96020908152604080832063ffffffff6000198a011684529091529020600101549550611f6d565b600160a060020a038816600090815260a96020908152604080832083805290915290205463ffffffff16871015611e8d5760009550611f6d565b600093506001850392505b8363ffffffff168363ffffffff161115611f3d57600263ffffffff85850316600160a060020a038a16600090815260a96020908152604080832094909304870363ffffffff818116845294825291839020835180850190945280549094168084526001909401549083015293509150871415611f1a5780602001519550611f6d565b805163ffffffff16871115611f3157819350611f38565b6001820392505b611e98565b600160a060020a038816600090815260a96020908152604080832063ffffffff8816845290915290206001015495505b505050505092915050565b60a76020526000908152604090205481565b600160a060020a03166000908152609e602052604090206001015490565b60b05481565b606854600160a060020a031690565b606854600160a060020a0316331490565b609b54600090600160a060020a031633146120385760408051600080516020613eb4833981519152815260206004820152601960248201527f444f45535f4e4f545f484156455f4d494e5445525f524f4c4500000000000000604482015290519081900360640190fd5b50600160a060020a0382166000908152609e60205260409020600190810182905592915050565b60348054604080516020601f6002600019610100600188161502019095169490940493840181900481028201810190925282815260609390929091830182828015610cae5780601f10610c8357610100808354040283529160200191610cae565b600160a060020a038216600090815260b4602052604081205460ff1615156121375760408051600080516020613eb4833981519152815260206004820152601360248201527f6d7573742062652076616c696420617373657400000000000000000000000000604482015290519081900360640190fd5b50600160a060020a03918216600090815260b26020908152604080832093909416825291909152205490565b600160a060020a038316600090815260b4602052604081205460ff1615156121da5760408051600080516020613eb4833981519152815260206004820152601360248201527f6d7573742062652076616c696420617373657400000000000000000000000000604482015290519081900360640190fd5b33600160a060020a0385161461223f5760408051600080516020613eb4833981519152815260206004820152600c60248201527f756e617574686f72697a65640000000000000000000000000000000000000000604482015290519081900360640190fd5b600160a060020a038416600090815260b3602052604090205460ff161561228957600160a060020a03808516600090815260b2602090815260408083209387168352929052208290555b5060019392505050565b336000908152609f60209081526040808320600160a060020a03861684529091528120548083106122e757336000908152609f60209081526040808320600160a060020a038816845290915281205561231c565b6122f7818463ffffffff6137e816565b336000908152609f60209081526040808320600160a060020a03891684529091529020555b336000818152609f60209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b60aa6020526000908152604090205463ffffffff1681565b609d5460408051600080516020613ed48339815191528152336004820181905291516000938492610100909104600160a060020a03169163c7e772ed9160248082019260209290919082900301818787803b1580156123f857600080fd5b505af115801561240c573d6000803e3d6000fd5b505050506040513d602081101561242257600080fd5b5060009150505b60b5548110156125165760b4600060b58381548110151561244657fe5b6000918252602080832090910154600160a060020a0316835282019290925260400190205460ff161561250e5760b580548290811061248157fe5b600091825260208083209091015460408051600080516020613ed48339815191528152600160a060020a0387811660048301529151919092169363c7e772ed93602480850194919392918390030190829087803b1580156124e157600080fd5b505af11580156124f5573d6000803e3d6000fd5b505050506040513d602081101561250b57600080fd5b50505b600101612429565b609d5460408051600080516020613ed48339815191528152600160a060020a03808916600483015291518893600093610100909104169163c7e772ed91602480830192602092919082900301818787803b15801561257357600080fd5b505af1158015612587573d6000803e3d6000fd5b505050506040513d602081101561259d57600080fd5b5060009150505b60b5548110156126915760b4600060b5838154811015156125c157fe5b6000918252602080832090910154600160a060020a0316835282019290925260400190205460ff16156126895760b58054829081106125fc57fe5b600091825260208083209091015460408051600080516020613ed48339815191528152600160a060020a0387811660048301529151919092169363c7e772ed93602480850194919392918390030190829087803b15801561265c57600080fd5b505af1158015612670573d6000803e3d6000fd5b505050506040513d602081101561268657600080fd5b50505b6001016125a4565b86600160a060020a03811615156126a757600080fd5b600160a060020a0381163014156126bd57600080fd5b33600090815260ac6020526040902054156127275760408051600080516020613eb4833981519152815260206004820152601660248201527f706c6561736520756e7374616b6520746f2073656e6400000000000000000000604482015290519081900360640190fd5b336000908152609e6020526040902054612747908863ffffffff6137e816565b336000908152609e602052604080822092909255600160a060020a038a1681522054612779908863ffffffff6137ff16565b600160a060020a0389166000818152609e60209081526040918290209390935580518a81529051919233927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a333600090815260a8602052604080822054600160a060020a038b8116845291909220546127ff928216911689613811565b600160a060020a038816600090815260ac60205260409020546001141561283b5760b054612833908863ffffffff6137ff16565b60b055612873565b600160a060020a038816600090815260ac6020526040902054600214156128735760b15461286f908863ffffffff6137ff16565b60b1555b506001979650505050505050565b60b46020526000908152604090205460ff1681565b600160a060020a038116600090815260aa602052604081205463ffffffff168181116128c35760006128f5565b600160a060020a038316600090815260a96020908152604080832063ffffffff60001986011684529091529020600101545b9392505050565b612904611fbd565b151561290f57600080fd5b60b155565b61291c611fbd565b151561292757600080fd5b60af805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60008060008060405180807f454950373132446f6d61696e28737472696e67206e616d652c75696e7432353681526020017f20636861696e49642c6164647265737320766572696679696e67436f6e74726181526020017f6374290000000000000000000000000000000000000000000000000000000000815250604301905060405180910390206129e6610c22565b6040518082805190602001908083835b60208310612a155780518252601f1990920191602091820191016129f6565b6001836020036101000a0380198251168184511680821785525050505050509050019150506040518091039020612a4a61186f565b60408051602080820195909552808201939093526060830191909152306080808401919091528151808403909101815260a09092019081905281519192909182918401908083835b60208310612ab15780518252601f199092019160209182019101612a92565b6001836020036101000a0380198251168184511680821785525050505050509050019150506040518091039020935060405180807f44656c65676174696f6e28616464726573732064656c6567617465652c75696e81526020017f74323536206e6f6e63652c75696e743235362065787069727929000000000000815250603a01905060405180910390208a8a8a60405160200180856000191660001916815260200184600160a060020a0316600160a060020a031681526020018381526020018281526020019450505050506040516020818303038152906040526040518082805190602001908083835b60208310612bbc5780518252601f199092019160209182019101612b9d565b51815160209384036101000a6000190180199092169116179052604080519290940182900382207f190100000000000000000000000000000000000000000000000000000000000083830152602283018b905260428084018290528551808503909101815260629093019485905282519099509195509293508392850191508083835b60208310612c5e5780518252601f199092019160209182019101612c3f565b51815160209384036101000a600019018019909216911617905260408051929094018290038220600080845283830180875282905260ff8f1684870152606084018e9052608084018d905294519098506001965060a080840196509194601f19820194509281900390910191865af1158015612cde573d6000803e3d6000fd5b5050604051601f190151915050600160a060020a0381161515612d765760408051600080516020613eb4833981519152815260206004820152603360248201527f536569676e696f726167655368617265733a3a64656c6567617465427953696760448201527f3a20696e76616c6964207369676e617475726500000000000000000000000000606482015290519081900360840190fd5b600160a060020a038116600090815260ab602052604090208054600181019091558914612e185760408051600080516020613eb4833981519152815260206004820152602f60248201527f536569676e696f726167655368617265733a3a64656c6567617465427953696760448201527f3a20696e76616c6964206e6f6e63650000000000000000000000000000000000606482015290519081900360840190fd5b42881015612e9b5760408051600080516020613eb4833981519152815260206004820152603360248201527f536569676e696f726167655368617265733a3a64656c6567617465427953696760448201527f3a207369676e6174757265206578706972656400000000000000000000000000606482015290519081900360840190fd5b612ea5818b61396a565b50505050505050505050565b60008054610100900460ff1680612ecb5750612ecb6137de565b80612ed9575060005460ff16155b1515612f5a5760408051600080516020613eb4833981519152815260206004820152602e60248201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560448201527f656e20696e697469616c697a6564000000000000000000000000000000000000606482015290519081900360840190fd5b50600054610100900460ff16158015612f86576000805460ff1961ff0019909116610100171660011790555b612ffc6040805190810160405280601281526020017f536569676e696f726167652053686172657300000000000000000000000000008152506040805190810160405280600581526020017f53484152450000000000000000000000000000000000000000000000000000008152506009610e69565b61300582613a06565b609d805460ff19169055664a9b6384488000609c819055600160a060020a0383166000818152609e60209081526040808320859055805194855251929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a38015613080576000805461ff00191690555b5050565b60af54600160a060020a031633146130eb5760408051600080516020613eb4833981519152815260206004820152600c60248201527f756e617574686f72697a65640000000000000000000000000000000000000000604482015290519081900360640190fd5b60ae55565b60a0546101009004600160a060020a031681565b60af54600160a060020a0316331461316b5760408051600080516020613eb4833981519152815260206004820152600c60248201527f756e617574686f72697a65640000000000000000000000000000000000000000604482015290519081900360640190fd5b600160a060020a038116600090815260b3602052604090205460ff161580156131ad5750600160a060020a038116600090815260b4602052604090205460ff16155b15156132085760408051600080516020613eb4833981519152815260206004820152601360248201527f6d7573742062652061206e657720617373657400000000000000000000000000604482015290519081900360640190fd5b60b5805460018082019092557f22b88d74a6b23be687aa96340c881253c2e9873c526eec7366dc5f733ada306a01805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a038416908117909155600081815260b360209081526040808320805460ff19908116871790915560b48352928190208054909316909417909155825191825291517f6eb11e4d0386e50a01ad2d4b63a6d9804a8cf9b1761d40522e0f401a10cfde61929181900390910190a150565b60ab6020526000908152604090205481565b609d5460408051600080516020613ed48339815191528152336004820181905291516000938492610100909104600160a060020a03169163c7e772ed9160248082019260209290919082900301818787803b15801561333557600080fd5b505af1158015613349573d6000803e3d6000fd5b505050506040513d602081101561335f57600080fd5b5060009150505b60b5548110156134535760b4600060b58381548110151561338357fe5b6000918252602080832090910154600160a060020a0316835282019290925260400190205460ff161561344b5760b58054829081106133be57fe5b600091825260208083209091015460408051600080516020613ed48339815191528152600160a060020a0387811660048301529151919092169363c7e772ed93602480850194919392918390030190829087803b15801561341e57600080fd5b505af1158015613432573d6000803e3d6000fd5b505050506040513d602081101561344857600080fd5b50505b600101613366565b60019250505090565b60af54600160a060020a031681565b600160a060020a039182166000908152609f6020908152604080832093909416825291909152205490565b61349e611fbd565b15156134a957600080fd5b60b055565b609d5460408051600080516020613ed48339815191528152336004820181905291519192600092610100909104600160a060020a03169163c7e772ed91602480830192602092919082900301818787803b15801561350b57600080fd5b505af115801561351f573d6000803e3d6000fd5b505050506040513d602081101561353557600080fd5b5060009150505b60b5548110156136295760b4600060b58381548110151561355957fe5b6000918252602080832090910154600160a060020a0316835282019290925260400190205460ff16156136215760b580548290811061359457fe5b600091825260208083209091015460408051600080516020613ed48339815191528152600160a060020a0387811660048301529151919092169363c7e772ed93602480850194919392918390030190829087803b1580156135f457600080fd5b505af1158015613608573d6000803e3d6000fd5b505050506040513d602081101561361e57600080fd5b50505b60010161353c565b33600090815260ac60205260409020546001146136955760408051600080516020613eb4833981519152815260206004820152601260248201527f706c65617365207374616b652066697273740000000000000000000000000000604482015290519081900360640190fd5b33600081815260ad6020908152604080832042905560ac9091529020600290556136d1906136c290611c9d565b60b0549063ffffffff6137e816565b60b0556136ef6136e033611c9d565b60b1549063ffffffff6137ff16565b60b1557f5900e3398d3e5e6e5698f1e0cb3db105f6b4a407f6146b9694caa6565bb740003361183a81611c9d565b604080517f44656c65676174696f6e28616464726573732064656c6567617465652c75696e81527f74323536206e6f6e63652c75696e7432353620657870697279290000000000006020820152905190819003603a01902081565b60b260209081526000928352604080842090915290825290205481565b60a56020908152600092835260408084209091529082529020805460019091015463ffffffff9091169082565b6137ca611fbd565b15156137d557600080fd5b611c5581613b18565b303b8015905b5090565b600080838311156137f857600080fd5b5050900390565b6000828201838110156128f557600080fd5b60008060008060008087600160a060020a031689600160a060020a03161415801561383c5750600087115b1561395f57600160a060020a038916156138d057600160a060020a038916600090815260aa602052604081205463ffffffff169650861161387e5760006138b0565b600160a060020a038916600090815260a96020908152604080832063ffffffff6000198b011684529091529020600101545b94506138c2858863ffffffff6137e816565b93506138d089878787613b96565b600160a060020a0388161561395f57600160a060020a038816600090815260aa602052604081205463ffffffff169350831161390d57600061393f565b600160a060020a038816600090815260a96020908152604080832063ffffffff60001988011684529091529020600101545b9150613951828863ffffffff6137ff16565b905061395f88848484613b96565b505050505050505050565b600160a060020a03808316600090815260a860205260408120549091169061399184611c9d565b600160a060020a03858116600081815260a86020526040808220805473ffffffffffffffffffffffffffffffffffffffff1916898616908117909155905194955093928616927f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f9190a4610f87828483613811565b60008054610100900460ff1680613a205750613a206137de565b80613a2e575060005460ff16155b1515613aaf5760408051600080516020613eb4833981519152815260206004820152602e60248201527f436f6e747261637420696e7374616e63652068617320616c726561647920626560448201527f656e20696e697469616c697a6564000000000000000000000000000000000000606482015290519081900360840190fd5b50600054610100900460ff16158015613adb576000805460ff1961ff0019909116610100171660011790555b6068805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0384161790558015613080576000805461ff00191690555050565b600160a060020a0381161515613b2d57600080fd5b606854604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36068805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b6000613c2443608060405190810160405280604181526020017f536569676e696f726167655368617265733a3a5f7772697465436865636b706f81526020017f696e743a20626c6f636b206e756d62657220657863656564732033322062697481526020017f7300000000000000000000000000000000000000000000000000000000000000815250613d65565b905060008463ffffffff16118015613c6d5750600160a060020a038516600090815260a96020908152604080832063ffffffff6000198901811685529252909120548282169116145b15613caa57600160a060020a038516600090815260a96020908152604080832063ffffffff60001989011684529091529020600101829055613d1b565b60408051808201825263ffffffff80841682526020808301868152600160a060020a038a16600081815260a984528681208b8616825284528681209551865490861663ffffffff19918216178755925160019687015590815260aa9092529390208054928801909116919092161790555b60408051848152602081018490528151600160a060020a038816927fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a724928290030190a25050505050565b6000816401000000008410613e0057604051600080516020613eb483398151915281526004018080602001828103825283818151815260200191508051906020019080838360005b83811015613dc5578181015183820152602001613dad565b50505050905090810190601f168015613df25780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b509192915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10613e4957805160ff1916838001178555613e76565b82800160010185558215613e76579182015b82811115613e76578251825591602001919060010190613e5b565b506137e4929150613e99565b604080518082019091526000808252602082015290565b610b4691905b808211156137e45760008155600101613e9f560008c379a000000000000000000000000000000000000000000000000000000000c7e772ed00000000000000000000000000000000000000000000000000000000a165627a7a7230582022c63f56246b3fe42fb8e4a8addd80f57b468bbc35d2423d913e14fcff741b820029
Deployed Bytecode Sourcemap
12327:20655:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17690:133;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17690:133:0;;;;;;;;;;;;;;;;;;;;18622:255;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;18622:255:0;-1:-1:-1;;;;;18622:255:0;;;;;;;8633:69;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8633:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;8633:69:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23958:263;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;23958:263:0;-1:-1:-1;;;;;23958:263:0;;;;;;;;;;;;;;;;;;;;;;;;;15079:51;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;15079:51:0;-1:-1:-1;;;;;15079:51:0;;;;;16572:263;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;16572:263:0;-1:-1:-1;;;;;16572:263:0;;;;;;;;;8418:158;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;8418:158:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;8418:158:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8418:158:0;;;;-1:-1:-1;8418:158:0;-1:-1:-1;8418:158:0;;-1:-1:-1;8418:158:0;;;;;;;;-1:-1:-1;8418:158:0;;-1:-1:-1;;;8418:158:0;;;;;-1:-1:-1;8418:158:0;;-1:-1:-1;;;8418:158:0;15406:29;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15406:29:0;;;;14087:122;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14087:122:0;;;;22497:819;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;22497:819:0;-1:-1:-1;;;;;22497:819:0;;;;;;;;;;;;15723:32;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;15723:32:0;;;;;;;;;-1:-1:-1;;;;;15723:32:0;;;;;;;;;;;;;;19703:413;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19703:413:0;;;;15137:32;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15137:32:0;;;;8905:76;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8905:76:0;;;;;;;;;;;;;;;;;;;;;;;32826:153;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32826:153:0;;;;13379:20;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13379:20:0;;;;24735:334;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;24735:334:0;-1:-1:-1;;;;;24735:334:0;;;;;;;20454:296;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20454:296:0;;;;15601:51;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;15601:51:0;-1:-1:-1;;;;;15601:51:0;;;;;15023:49;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;15023:49:0;-1:-1:-1;;;;;15023:49:0;;;;;13331:41;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;13331:41:0;-1:-1:-1;;;;;13331:41:0;;;;;26347:150;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;26347:150:0;-1:-1:-1;;;;;26347:150:0;;;;;26641:104;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;26641:104:0;-1:-1:-1;;;;;26641:104:0;;;;;14783:71;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;14783:71:0;-1:-1:-1;;;;;14783:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14031:49;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;14031:49:0;-1:-1:-1;;;;;14031:49:0;;;;;;;;;;;;;;;;;;;;;;;;19114:147;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;19114:147:0;-1:-1:-1;;;;;19114:147:0;;;;;6307:116;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6307:116:0;;;;29286:1272;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;29286:1272:0;-1:-1:-1;;;;;29286:1272:0;;;;;;;14340:39;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;14340:39:0;-1:-1:-1;;;;;14340:39:0;;;;;17999:169;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;17999:169:0;-1:-1:-1;;;;;17999:169:0;;;;;15373:26;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15373:26:0;;;;5648:72;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5648:72:0;;;;5950:85;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5950:85:0;;;;15811:179;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;15811:179:0;-1:-1:-1;;;;;15811:179:0;;;;;;;8761:73;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8761:73:0;;;;17247:265;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;17247:265:0;-1:-1:-1;;;;;17247:265:0;;;;;;;;;;16843:396;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;16843:396:0;-1:-1:-1;;;;;16843:396:0;;;;;;;;;;;;25331:500;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;25331:500:0;-1:-1:-1;;;;;25331:500:0;;;;;;;14861:50;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;14861:50:0;-1:-1:-1;;;;;14861:50:0;;;;;20976:781;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;20976:781:0;-1:-1:-1;;;;;20976:781:0;;;;;;;15659:57;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;15659:57:0;-1:-1:-1;;;;;15659:57:0;;;;;28598:257;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;28598:257:0;-1:-1:-1;;;;;28598:257:0;;;;;20232:106;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;20232:106:0;;;;;16002:121;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;16002:121:0;-1:-1:-1;;;;;16002:121:0;;;;;27179:1218;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;27179:1218:0;-1:-1:-1;;;;;27179:1218:0;;;;;;;;;;;;;;;;;18176:411;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;18176:411:0;-1:-1:-1;;;;;18176:411:0;;;;;17520:162;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;17520:162:0;;;;;13230:33;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13230:33:0;;;;16131:433;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;16131:433:0;-1:-1:-1;;;;;16131:433:0;;;;;14918:40;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;14918:40:0;-1:-1:-1;;;;;14918:40:0;;;;;20346:100;;8:9:-1;5:2;;;30:1;27;20:12;5:2;20346:100:0;;;;15176:23;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15176:23:0;;;;22064:171;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;22064:171:0;-1:-1:-1;;;;;22064:171:0;;;;;;;;;;20124:100;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;20124:100:0;;;;;19269:426;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19269:426:0;;;;14216:117;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14216:117:0;;;;15513:81;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;15513:81:0;-1:-1:-1;;;;;15513:81:0;;;;;;;;;;13954:70;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;13954:70:0;-1:-1:-1;;;;;13954:70:0;;;;;;;;;6590:103;;8:9:-1;5:2;;;30:1;27;20:12;5:2;-1:-1;6590:103:0;-1:-1:-1;;;;;6590:103:0;;;;;17690:133;17803:12;;17690:133;;:::o;18622:255::-;5841:9;:7;:9::i;:::-;5833:18;;;;;;;;18707;;;;:27;18699:59;;;;;-1:-1:-1;;;;;;;;;;;18699:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;18769:7;:30;;:7;:30;;;;;-1:-1:-1;;;;;18769:30:0;;;;;;;;-1:-1:-1;;18810:25:0;;;;18846:7;:23;;-1:-1:-1;;18846:23:0;;;;;;18622:255::o;8633:69::-;8691:5;8684:12;;;;;;;;-1:-1:-1;;8684:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8669:6;;8684:12;;8691:5;;8684:12;;8691:5;8684:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8633:69;:::o;23958:263::-;24074:4;24047:7;-1:-1:-1;;;;;24284:18:0;;;;24276:27;;;;;;-1:-1:-1;;;;;24322:19:0;;24336:4;24322:19;;24314:28;;;;;;24111:10;24096:26;;;;:14;:26;;;;;;;;-1:-1:-1;;;;;24096:35:0;;;;;;;;;;;;:43;;;24155:36;;;;;;;24096:35;;24111:10;24155:36;;;;;;;;;;;-1:-1:-1;24209:4:0;;23958:263;-1:-1:-1;;;23958:263:0:o;15079:51::-;;;;;;;;;;;;;:::o;16572:263::-;16669:8;;-1:-1:-1;;;;;16669:8:0;16655:10;:22;16647:47;;;;;-1:-1:-1;;;;;;;;;;;16647:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16713:31:0;;;;;;:24;:31;;;;;;;;16705:75;;;;;;;-1:-1:-1;;;;;;;;;;;16705:75:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16793:25:0;;;;;;;;:18;:25;;;;;:34;;-1:-1:-1;;16793:34:0;;;;;;;;;;16572:263::o;8418:158::-;3977:19;3870:12;;;;;;;;:31;;;3886:15;:13;:15::i;:::-;3870:47;;;-1:-1:-1;3906:11:0;;;;3905:12;3870:47;3862:106;;;;;;;-1:-1:-1;;;;;;;;;;;3862:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4000:12:0;;;;;;;3999:13;4019:83;;;;4048:12;:19;;-1:-1:-1;;;;4048:19:0;;;;;4076:18;4063:4;4076:18;;;4019:83;8508:12;;;;:5;;:12;;;;;:::i;:::-;-1:-1:-1;8527:16:0;;;;:7;;:16;;;;;:::i;:::-;-1:-1:-1;8550:9:0;:20;;-1:-1:-1;;8550:20:0;;;;;;;4120:57;;;;4164:5;4149:20;;-1:-1:-1;;4149:20:0;;;4120:57;8418:158;;;;:::o;15406:29::-;;;;:::o;14087:122::-;14129:80;;;;;;;;;;;;;;;;;;;;;;;;;;14087:122;:::o;22497:819::-;25890:7;;:31;;;-1:-1:-1;;;;;;;;;;;25890:31:0;;-1:-1:-1;;;;;25890:31:0;;;;;;;;;22678:4;;22599;;22678;;25890:7;;;;;;:22;;:31;;;;;;;;;;;;;;;22678:4;25890:7;:31;;;5:2:-1;;;;30:1;27;20:12;5:2;25890:31:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;25890:31:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25951:1:0;;-1:-1:-1;;25934:213:0;25958:15;:22;25954:26;;25934:213;;;26006:24;:44;26031:15;26047:1;26031:18;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26031:18:0;26006:44;;;;;;;;;;;;;;;26002:134;;;26077:15;:18;;26093:1;;26077:18;;;;;;;;;;;;;;;;;;26071:49;;;-1:-1:-1;;;;;;;;;;;26071:49:0;;-1:-1:-1;;;;;26071:49:0;;;;;;;;;26077:18;;;;;26071:40;;:49;;;;;26077:18;;26071:49;;;;;;;;;26077:18;26071:49;;;5:2:-1;;;;30:1;27;20:12;5:2;26071:49:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;26071:49:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;26002:134:0;25982:3;;25934:213;;;25890:7;;:31;;;-1:-1:-1;;;;;;;;;;;25890:31:0;;-1:-1:-1;;;;;25890:31:0;;;;;;;;;22628:2;;25939:9;;25890:7;;;;;;:22;;:31;;;;;;;;;;;;;;25939:9;25890:7;:31;;;5:2:-1;;;;30:1;27;20:12;5:2;25890:31:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;25890:31:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25951:1:0;;-1:-1:-1;;25934:213:0;25958:15;:22;25954:26;;25934:213;;;26006:24;:44;26031:15;26047:1;26031:18;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26031:18:0;26006:44;;;;;;;;;;;;;;;26002:134;;;26077:15;:18;;26093:1;;26077:18;;;;;;;;;;;;;;;;;;26071:49;;;-1:-1:-1;;;;;;;;;;;26071:49:0;;-1:-1:-1;;;;;26071:49:0;;;;;;;;;26077:18;;;;;26071:40;;:49;;;;;26077:18;;26071:49;;;;;;;;;26077:18;26071:49;;;5:2:-1;;;;30:1;27;20:12;5:2;26071:49:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;26071:49:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;26002:134:0;25982:3;;25934:213;;;22656:2;-1:-1:-1;;;;;24284:18:0;;;;24276:27;;;;;;-1:-1:-1;;;;;24322:19:0;;24336:4;24322:19;;24314:28;;;;;;-1:-1:-1;;;;;22708:19:0;;;;;;:13;:19;;;;;;:24;22700:59;;;;;-1:-1:-1;;;;;;;;;;;22700:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22807:20:0;;;;;;:14;:20;;;;;;;;22828:10;22807:32;;;;;;;;:43;;22844:5;22807:43;:36;:43;:::i;:::-;-1:-1:-1;;;;;22772:20:0;;;;;;:14;:20;;;;;;;;22793:10;22772:32;;;;;;;:78;;;;22894:20;;;:14;:20;;;;:28;:39;;22927:5;22894:39;:32;:39;:::i;:::-;-1:-1:-1;;;;;22863:20:0;;;;;;;:14;:20;;;;;;:70;;;;22973:18;;;;;;:26;:37;;23004:5;22973:37;:30;:37;:::i;:::-;-1:-1:-1;;;;;22944:18:0;;;;;;;:14;:18;;;;;;;;;:66;;;;23026:25;;;;;;;22944:18;;23026:25;;;;;;;;;;;;;-1:-1:-1;;;;;23079:17:0;;;;;;;:11;:17;;;;;;;23098:15;;;;;;;;23064:57;;23079:17;;;;23098:15;23115:5;23064:14;:57::i;:::-;-1:-1:-1;;;;;23138:17:0;;;;;;:13;:17;;;;;;23159:1;23138:22;23134:150;;;23176:11;;:22;;23192:5;23176:22;:15;:22;:::i;:::-;23162:11;:36;23134:150;;;-1:-1:-1;;;;;23218:17:0;;;;;;:13;:17;;;;;;23239:1;23218:22;23214:70;;;23259:14;;:25;;23278:5;23259:25;:18;:25;:::i;:::-;23242:14;:42;23214:70;-1:-1:-1;23304:4:0;;22497:819;-1:-1:-1;;;;;;;;22497:819:0:o;15723:32::-;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;15723:32:0;;-1:-1:-1;15723:32:0;:::o;19703:413::-;25890:7;;:31;;;-1:-1:-1;;;;;;;;;;;25890:31:0;;19736:10;25890:31;;;;;;;;19736:10;;-1:-1:-1;;25890:7:0;;;;-1:-1:-1;;;;;25890:7:0;;:22;;:31;;;;;;;;;;;;;;-1:-1:-1;25890:7:0;:31;;;5:2:-1;;;;30:1;27;20:12;5:2;25890:31:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;25890:31:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25951:1:0;;-1:-1:-1;;25934:213:0;25958:15;:22;25954:26;;25934:213;;;26006:24;:44;26031:15;26047:1;26031:18;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26031:18:0;26006:44;;;;;;;;;;;;;;;26002:134;;;26077:15;:18;;26093:1;;26077:18;;;;;;;;;;;;;;;;;;26071:49;;;-1:-1:-1;;;;;;;;;;;26071:49:0;;-1:-1:-1;;;;;26071:49:0;;;;;;;;;26077:18;;;;;26071:40;;:49;;;;;26077:18;;26071:49;;;;;;;;;26077:18;26071:49;;;5:2:-1;;;;30:1;27;20:12;5:2;26071:49:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;26071:49:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;26002:134:0;25982:3;;25934:213;;;19790:10;19776:25;;;;:13;:25;;;;;;19805:1;19776:30;19768:73;;;;;-1:-1:-1;;;;;;;;;;;19768:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;19890:17;;19876:10;19860:27;;;;:15;:27;;;;;;19910:3;19860:47;;:53;19852:86;;;;;-1:-1:-1;;;;;;;;;;;19852:86:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;19963:10;19977:1;19949:25;;;:13;:25;;;;;:29;20008:41;;20027:21;;:9;:21::i;:::-;20008:14;;;:41;:18;:41;:::i;:::-;19991:14;:58;20065:43;20074:10;20086:21;20074:10;20086:9;:21::i;:::-;20065:43;;;-1:-1:-1;;;;;20065:43:0;;;;;;;;;;;;;;;;;;;;;19703:413;;:::o;15137:32::-;;;;:::o;8905:76::-;8966:9;;;;8905:76;:::o;32826:153::-;32869:4;32914:42;-1:-1:-1;;;;;32893:76:0;;:78;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32893:78:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;32893:78:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32893:78:0;;-1:-1:-1;32826:153:0;:::o;13379:20::-;;;;;;:::o;24735:334::-;24921:10;24833:4;24906:26;;;:14;:26;;;;;;;;-1:-1:-1;;;;;24906:35:0;;;;;;;;;;:51;;24946:10;24906:51;:39;:51;:::i;:::-;24870:10;24855:26;;;;:14;:26;;;;;;;;-1:-1:-1;;;;;24855:35:0;;;;;;;;;;;;:102;;;24973:66;;;;;;24855:35;;24973:66;;;;;;;;;;;-1:-1:-1;25057:4:0;24735:334;;;;:::o;20454:296::-;25890:7;;:31;;;-1:-1:-1;;;;;;;;;;;25890:31:0;;20485:10;25890:31;;;;;;;;20485:10;;-1:-1:-1;;25890:7:0;;;;-1:-1:-1;;;;;25890:7:0;;:22;;:31;;;;;;;;;;;;;;-1:-1:-1;25890:7:0;:31;;;5:2:-1;;;;30:1;27;20:12;5:2;25890:31:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;25890:31:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25951:1:0;;-1:-1:-1;;25934:213:0;25958:15;:22;25954:26;;25934:213;;;26006:24;:44;26031:15;26047:1;26031:18;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26031:18:0;26006:44;;;;;;;;;;;;;;;26002:134;;;26077:15;:18;;26093:1;;26077:18;;;;;;;;;;;;;;;;;;26071:49;;;-1:-1:-1;;;;;;;;;;;26071:49:0;;-1:-1:-1;;;;;26071:49:0;;;;;;;;;26077:18;;;;;26071:40;;:49;;;;;26077:18;;26071:49;;;;;;;;;26077:18;26071:49;;;5:2:-1;;;;30:1;27;20:12;5:2;26071:49:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;26071:49:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;26002:134:0;25982:3;;25934:213;;;20539:10;20525:25;;;;:13;:25;;;;;;:30;20517:63;;;;;-1:-1:-1;;;;;;;;;;;20517:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;20605:10;20591:25;;;;:13;:25;;;;;20619:1;20591:29;;20647:38;;20663:21;;:9;:21::i;:::-;20647:11;;;:38;:15;:38;:::i;:::-;20633:11;:52;20701:41;20708:10;20720:21;20708:10;20720:9;:21::i;15601:51::-;;;;;;;;;;;;;;;:::o;15023:49::-;;;;;;;;;;;;;:::o;13331:41::-;;;;;;;;;;;;;;;:::o;26347:150::-;-1:-1:-1;;;;;26467:22:0;;;26435:7;26467:22;;;:11;:22;;;;;;;;26347:150::o;26641:104::-;26705:32;26715:10;26727:9;26705;:32::i;:::-;26641:104;:::o;14783:71::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;14031:49::-;;;;;;;;;;;;;;;:::o;19114:147::-;-1:-1:-1;;;;;19226:19:0;19194:7;19226:19;;;:14;:19;;;;;:27;;19114:147::o;6307:116::-;5841:9;:7;:9::i;:::-;5833:18;;;;;;;;6384:6;;6365:26;;-1:-1:-1;;;;;6384:6:0;;;;6365:26;;6384:6;;6365:26;6398:6;:19;;-1:-1:-1;;6398:19:0;;;6307:116::o;29286:1272::-;29394:7;29523:19;30001:12;30028;30107:13;30192:20;;:::i;:::-;29441:12;29427:26;;29419:91;;;;;-1:-1:-1;;;;;;;;;;;29419:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;29545:24:0;;;;;;:15;:24;;;;;;;;;-1:-1:-1;29584:17:0;;29580:58;;;29625:1;29618:8;;;;29580:58;-1:-1:-1;;;;;29698:21:0;;;;;;:12;:21;;;;;;;;:39;-1:-1:-1;;29720:16:0;;29698:39;;;;;;;;;:49;;:64;-1:-1:-1;29694:149:0;;-1:-1:-1;;;;;29786:21:0;;;;;;:12;:21;;;;;;;;:39;-1:-1:-1;;29808:16:0;;29786:39;;;;;;;;29823:1;29786:45;;;-1:-1:-1;29779:52:0;;29694:149;-1:-1:-1;;;;;29904:21:0;;;;;;:12;:21;;;;;;;;:24;;;;;;;;:34;:24;:34;:48;-1:-1:-1;29900:89:0;;;29976:1;29969:8;;;;29900:89;30016:1;30001:16;;30058:1;30043:12;:16;30028:31;;30070:429;30085:5;30077:13;;:5;:13;;;30070:429;;;30149:1;30131:19;30132:13;;;30131:19;-1:-1:-1;;;;;30215:21:0;;;;;;:12;:21;;;;;;;;30131:19;;;;30123:27;;30215:29;;;;;;;;;;;;;30192:52;;;;;;;;;;;;;;;;;;;;;;;;;30123:27;-1:-1:-1;30192:52:0;-1:-1:-1;30263:27:0;;30259:229;;;30318:2;:8;;;30311:15;;;;30259:229;30352:12;;:26;;;-1:-1:-1;30348:140:0;;;30407:6;30399:14;;30348:140;;;30471:1;30462:6;:10;30454:18;;30348:140;30070:429;;;-1:-1:-1;;;;;30516:21:0;;;;;;:12;:21;;;;;;;;:28;;;;;;;;;;:34;;;;-1:-1:-1;29286:1272:0;;;;;;;;;;:::o;14340:39::-;;;;;;;;;;;;;:::o;17999:169::-;-1:-1:-1;;;;;18122:19:0;18090:7;18122:19;;;:14;:19;;;;;:38;;;;17999:169::o;15373:26::-;;;;:::o;5648:72::-;5708:6;;-1:-1:-1;;;;;5708:6:0;5648:72;:::o;5950:85::-;6023:6;;-1:-1:-1;;;;;6023:6:0;6009:10;:20;;5950:85::o;15811:179::-;12474:7;;15896:4;;-1:-1:-1;;;;;12474:7:0;12460:10;:21;12452:59;;;;;-1:-1:-1;;;;;;;;;;;12452:59:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;15913:19:0;;;;;;:14;:19;;;;;:38;;;;:47;;;15811:179;;;;:::o;8761:73::-;8821:7;8814:14;;;;;;;;-1:-1:-1;;8814:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8799:6;;8814:14;;8821:7;;8814:14;;8821:7;8814:14;;;;;;;;;;;;;;;;;;;;;;;;17247:265;-1:-1:-1;;;;;17395:31:0;;17362:7;17395:31;;;:24;:31;;;;;;;;17387:63;;;;;;;-1:-1:-1;;;;;;;;;;;17387:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17468:31:0;;;;;;;:24;:31;;;;;;;;:36;;;;;;;;;;;;;17247:265::o;16843:396::-;-1:-1:-1;;;;;16966:31:0;;16941:4;16966:31;;;:24;:31;;;;;;;;16958:63;;;;;;;-1:-1:-1;;;;;;;;;;;16958:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17040:10;-1:-1:-1;;;;;17040:19:0;;;17032:44;;;;;-1:-1:-1;;;;;;;;;;;17032:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17101:25:0;;;;;;:18;:25;;;;;;;;17097:103;;;-1:-1:-1;;;;;17143:31:0;;;;;;;:24;:31;;;;;;;;:36;;;;;;;;;:45;;;17097:103;-1:-1:-1;17227:4:0;16843:396;;;;;:::o;25331:500::-;25490:10;25436:4;25475:26;;;:14;:26;;;;;;;;-1:-1:-1;;;;;25475:35:0;;;;;;;;;;25525:27;;;25521:199;;25584:10;25607:1;25569:26;;;:14;:26;;;;;;;;-1:-1:-1;;;;;25569:35:0;;;;;;;;;:39;25521:199;;;25679:29;:8;25692:15;25679:29;:12;:29;:::i;:::-;25656:10;25641:26;;;;:14;:26;;;;;;;;-1:-1:-1;;;;;25641:35:0;;;;;;;;;:67;25521:199;25744:10;25765:26;;;;:14;:26;;;;;;;;-1:-1:-1;;;;;25735:66:0;;25765:35;;;;;;;;;;;25735:66;;;;;;;;;25744:10;25735:66;;;;;;;;;;;-1:-1:-1;25819:4:0;;25331:500;-1:-1:-1;;;25331:500:0:o;14861:50::-;;;;;;;;;;;;;;;:::o;20976:781::-;25890:7;;:31;;;-1:-1:-1;;;;;;;;;;;25890:31:0;;21060:10;25890:31;;;;;;;;-1:-1:-1;;;;25890:7:0;;;;-1:-1:-1;;;;;25890:7:0;;:22;;:31;;;;;;;;;;;;;;;-1:-1:-1;25890:7:0;:31;;;5:2:-1;;;;30:1;27;20:12;5:2;25890:31:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;25890:31:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25951:1:0;;-1:-1:-1;;25934:213:0;25958:15;:22;25954:26;;25934:213;;;26006:24;:44;26031:15;26047:1;26031:18;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26031:18:0;26006:44;;;;;;;;;;;;;;;26002:134;;;26077:15;:18;;26093:1;;26077:18;;;;;;;;;;;;;;;;;;26071:49;;;-1:-1:-1;;;;;;;;;;;26071:49:0;;-1:-1:-1;;;;;26071:49:0;;;;;;;;;26077:18;;;;;26071:40;;:49;;;;;26077:18;;26071:49;;;;;;;;;26077:18;26071:49;;;5:2:-1;;;;30:1;27;20:12;5:2;26071:49:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;26071:49:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;26002:134:0;25982:3;;25934:213;;;25890:7;;:31;;;-1:-1:-1;;;;;;;;;;;25890:31:0;;-1:-1:-1;;;;;25890:31:0;;;;;;;;;21095:2;;25939:9;;25890:7;;;;;;:22;;:31;;;;;;;;;;;;;;25939:9;25890:7;:31;;;5:2:-1;;;;30:1;27;20:12;5:2;25890:31:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;25890:31:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25951:1:0;;-1:-1:-1;;25934:213:0;25958:15;:22;25954:26;;25934:213;;;26006:24;:44;26031:15;26047:1;26031:18;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26031:18:0;26006:44;;;;;;;;;;;;;;;26002:134;;;26077:15;:18;;26093:1;;26077:18;;;;;;;;;;;;;;;;;;26071:49;;;-1:-1:-1;;;;;;;;;;;26071:49:0;;-1:-1:-1;;;;;26071:49:0;;;;;;;;;26077:18;;;;;26071:40;;:49;;;;;26077:18;;26071:49;;;;;;;;;26077:18;26071:49;;;5:2:-1;;;;30:1;27;20:12;5:2;26071:49:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;26071:49:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;26002:134:0;25982:3;;25934:213;;;21123:2;-1:-1:-1;;;;;24284:18:0;;;;24276:27;;;;;;-1:-1:-1;;;;;24322:19:0;;24336:4;24322:19;;24314:28;;;;;;21189:10;21175:25;;;;:13;:25;;;;;;:30;21167:65;;;;;-1:-1:-1;;;;;;;;;;;21167:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;21297:10;21282:26;;;;:14;:26;;;;;:34;:45;;21321:5;21282:45;:38;:45;:::i;:::-;21260:10;21245:26;;;;:14;:26;;;;;;:82;;;;-1:-1:-1;;;;;21367:18:0;;;;;:26;:37;;21398:5;21367:37;:30;:37;:::i;:::-;-1:-1:-1;;;;;21338:18:0;;;;;;:14;:18;;;;;;;;;:66;;;;21420:31;;;;;;;21338:18;;21429:10;;21420:31;;;;;;;;;;21491:10;21479:23;;;;:11;:23;;;;;;;-1:-1:-1;;;;;21504:15:0;;;;;;;;;;21464:63;;21479:23;;;21504:15;21521:5;21464:14;:63::i;:::-;-1:-1:-1;;;;;21579:17:0;;;;;;:13;:17;;;;;;21600:1;21579:22;21575:150;;;21617:11;;:22;;21633:5;21617:22;:15;:22;:::i;:::-;21603:11;:36;21575:150;;;-1:-1:-1;;;;;21659:17:0;;;;;;:13;:17;;;;;;21680:1;21659:22;21655:70;;;21700:14;;:25;;21719:5;21700:25;:18;:25;:::i;:::-;21683:14;:42;21655:70;-1:-1:-1;21745:4:0;;20976:781;-1:-1:-1;;;;;;;20976:781:0:o;15659:57::-;;;;;;;;;;;;;;;:::o;28598:257::-;-1:-1:-1;;;;;28737:24:0;;28690:7;28737:24;;;:15;:24;;;;;;;;28779:16;;;:68;;28846:1;28779:68;;;-1:-1:-1;;;;;28798:21:0;;;;;;:12;:21;;;;;;;;:39;-1:-1:-1;;28820:16:0;;28798:39;;;;;;;;28835:1;28798:45;;28779:68;28772:75;28598:257;-1:-1:-1;;;28598:257:0:o;20232:106::-;5841:9;:7;:9::i;:::-;5833:18;;;;;;;;20306:14;:24;20232:106::o;16002:121::-;5841:9;:7;:9::i;:::-;5833:18;;;;;;;;16095:8;:20;;-1:-1:-1;;16095:20:0;-1:-1:-1;;;;;16095:20:0;;;;;;;;;;16002:121::o;27179:1218::-;27372:23;27611:18;27820:14;28008:17;14129:80;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27501:6;:4;:6::i;:::-;27485:24;;;;;;;;;;;;;36:153:-1;66:2;58:11;;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;27485:24:0;;;;;;;;;;;;;;;;27528:12;:10;:12::i;:::-;27422:165;;;;;;;;;;;;;;;;;;;;;;;;;27567:4;27422:165;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;27422:165:0;;;;;;;;27398:200;;27422:165;;;;;;27398:200;;;;27422:165;27398:200;36:153:-1;66:2;58:11;;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;27398:200:0;;;;;;;;;;;;;;;;27372:226;;14262:71;;;;;;;;;;;;;;;;;;;;;;;;27723:9;27751:5;27775:6;27656:140;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;27656:140:0;-1:-1:-1;;;;;27656:140:0;;;;;;;;;;;;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;27656:140:0;;;27632:175;;;;;;;;;;;;;36:153:-1;66:2;58:11;;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;299:10;344;;263:2;259:12;;;254:3;250:22;-1:-1;;246:30;311:9;;295:26;;;340:21;;377:20;365:33;;27632:175:0;;;;;;;;;;;;27861:123;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;27861:123:0;;;;;;;;27837:158;;27632:175;;-1:-1:-1;27861:123:0;;-1:-1:-1;27861:123:0;;-1:-1:-1;27861:123:0;;27837:158;;;-1:-1:-1;27837:158:0;27861:123;27837:158;36:153:-1;66:2;58:11;;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;299:10;344;;263:2;259:12;;;254:3;250:22;-1:-1;;246:30;311:9;;295:26;;;340:21;;377:20;365:33;;27837:158:0;;;;;;;;;;;;-1:-1:-1;28028:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27837:158;;-1:-1:-1;274:1;;-1:-1;28028:26:0;;;;;-1:-1:-1;263:2;;-1:-1;;28028:26:0;;;-1:-1:-1;28028:26:0;;;;;;;;274:1:-1;28028:26:0;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;28028:26:0;;-1:-1:-1;;28028:26:0;;;-1:-1:-1;;;;;;;28073:23:0;;;;28065:87;;;;;-1:-1:-1;;;;;;;;;;;28065:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28180:18:0;;;;;;:7;:18;;;;;:20;;;;;;;;28171:29;;28163:89;;;;;-1:-1:-1;;;;;;;;;;;28163:89:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28271:3;:13;-1:-1:-1;28271:13:0;28263:77;;;;;-1:-1:-1;;;;;;;;;;;28263:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28358:31;28368:9;28379;28358;:31::i;:::-;27179:1218;;;;;;;;;;:::o;18176:411::-;3977:19;3870:12;;;;;;;;:31;;;3886:15;:13;:15::i;:::-;3870:47;;;-1:-1:-1;3906:11:0;;;;3905:12;3870:47;3862:106;;;;;;;-1:-1:-1;;;;;;;;;;;3862:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4000:12:0;;;;;;;3999:13;4019:83;;;;4048:12;:19;;-1:-1:-1;;;;4048:19:0;;;;;4076:18;4063:4;4076:18;;;4019:83;18265:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12645:1;18265:24;:72::i;:::-;18348:26;18367:6;18348:18;:26::i;:::-;18387:18;:26;;-1:-1:-1;;18387:26:0;;;12758:25;18426:12;:35;;;-1:-1:-1;;;;;18472:22:0;;18408:5;18472:22;;;:14;:22;;;;;;;;:45;;;18535:44;;;;;;18472:22;;18408:5;;18535:44;;;;;;;;;;4124:14;4120:57;;;4164:5;4149:20;;-1:-1:-1;;4149:20:0;;;4120:57;18176:411;;:::o;17520:162::-;17610:8;;-1:-1:-1;;;;;17610:8:0;17596:10;:22;17588:47;;;;;-1:-1:-1;;;;;;;;;;;17588:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;17646:17;:28;17520:162::o;13230:33::-;;;;;;-1:-1:-1;;;;;13230:33:0;;:::o;16131:433::-;16218:8;;-1:-1:-1;;;;;16218:8:0;16204:10;:22;16196:47;;;;;-1:-1:-1;;;;;;;;;;;16196:47:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16262:28:0;;;;;;:18;:28;;;;;;;;:37;;;:84;;-1:-1:-1;;;;;;16303:34:0;;;;;;:24;:34;;;;;;;;:43;16262:84;16254:116;;;;;;;-1:-1:-1;;;;;;;;;;;16254:116:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;16383:15;27:10:-1;;39:1;23:18;;;45:23;;;16383:30:0;;;;-1:-1:-1;;16383:30:0;-1:-1:-1;;;;;16383:30:0;;;;;;;;-1:-1:-1;16424:28:0;;;:18;16383:30;16424:28;;;;;;;:35;;-1:-1:-1;;16424:35:0;;;;;;;;16470:24;:34;;;;;;:41;;;;;;;;;;;16529:27;;;;;;;;;;;;;;;;;;16131:433;:::o;14918:40::-;;;;;;;;;;;;;:::o;20346:100::-;25890:7;;:31;;;-1:-1:-1;;;;;;;;;;;25890:31:0;;20380:10;25890:31;;;;;;;;-1:-1:-1;;;;25890:7:0;;;;-1:-1:-1;;;;;25890:7:0;;:22;;:31;;;;;;;;;;;;;;;-1:-1:-1;25890:7:0;:31;;;5:2:-1;;;;30:1;27;20:12;5:2;25890:31:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;25890:31:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25951:1:0;;-1:-1:-1;;25934:213:0;25958:15;:22;25954:26;;25934:213;;;26006:24;:44;26031:15;26047:1;26031:18;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26031:18:0;26006:44;;;;;;;;;;;;;;;26002:134;;;26077:15;:18;;26093:1;;26077:18;;;;;;;;;;;;;;;;;;26071:49;;;-1:-1:-1;;;;;;;;;;;26071:49:0;;-1:-1:-1;;;;;26071:49:0;;;;;;;;;26077:18;;;;;26071:40;;:49;;;;;26077:18;;26071:49;;;;;;;;;26077:18;26071:49;;;5:2:-1;;;;30:1;27;20:12;5:2;26071:49:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;26071:49:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;26002:134:0;25982:3;;25934:213;;;20434:4;20427:11;;20346:100;;;:::o;15176:23::-;;;-1:-1:-1;;;;;15176:23:0;;:::o;22064:171::-;-1:-1:-1;;;;;22196:22:0;;;22164:7;22196:22;;;:14;:22;;;;;;;;:31;;;;;;;;;;;;;22064:171::o;20124:100::-;5841:9;:7;:9::i;:::-;5833:18;;;;;;;;20195:11;:21;20124:100::o;19269:426::-;25890:7;;:31;;;-1:-1:-1;;;;;;;;;;;25890:31:0;;19308:10;25890:31;;;;;;;;19308:10;;-1:-1:-1;;25890:7:0;;;;-1:-1:-1;;;;;25890:7:0;;:22;;:31;;;;;;;;;;;;;;-1:-1:-1;25890:7:0;:31;;;5:2:-1;;;;30:1;27;20:12;5:2;25890:31:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;25890:31:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25951:1:0;;-1:-1:-1;;25934:213:0;25958:15;:22;25954:26;;25934:213;;;26006:24;:44;26031:15;26047:1;26031:18;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;26031:18:0;26006:44;;;;;;;;;;;;;;;26002:134;;;26077:15;:18;;26093:1;;26077:18;;;;;;;;;;;;;;;;;;26071:49;;;-1:-1:-1;;;;;;;;;;;26071:49:0;;-1:-1:-1;;;;;26071:49:0;;;;;;;;;26077:18;;;;;26071:40;;:49;;;;;26077:18;;26071:49;;;;;;;;;26077:18;26071:49;;;5:2:-1;;;;30:1;27;20:12;5:2;26071:49:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;26071:49:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;26002:134:0;25982:3;;25934:213;;;19362:10;19348:25;;;;:13;:25;;;;;;19377:1;19348:30;19340:61;;;;;-1:-1:-1;;;;;;;;;;;19340:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;19428:10;19412:27;;;;:15;:27;;;;;;;;19442:3;19412:33;;19456:13;:25;;;;;19484:1;19456:29;;19512:38;;19528:21;;:9;:21::i;:::-;19512:11;;;:38;:15;:38;:::i;:::-;19498:11;:52;19578:41;19597:21;19607:10;19597:9;:21::i;:::-;19578:14;;;:41;:18;:41;:::i;:::-;19561:14;:58;19635:52;19653:10;19665:21;19653:10;19665:9;:21::i;14216:117::-;14262:71;;;;;;;;;;;;;;;;;;;;;14216:117;:::o;15513:81::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;13954:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;6590:103::-;5841:9;:7;:9::i;:::-;5833:18;;;;;;;;6659:28;6678:8;6659:18;:28::i;4271:476::-;4711:7;4699:20;4734:7;;;4271:476;;;:::o;2168:136::-;2226:7;;2250:6;;;;2242:15;;;;;;-1:-1:-1;;2276:5:0;;;2168:136::o;2372:::-;2430:7;2458:5;;;2478:6;;;;2470:15;;;;;30969:951;31205:16;31266:17;31366;31608:16;31669:17;31769;31075:6;-1:-1:-1;;;;;31065:16:0;:6;-1:-1:-1;;;;;31065:16:0;;;:30;;;;;31094:1;31085:6;:10;31065:30;31061:852;;;-1:-1:-1;;;;;31116:20:0;;;31112:387;;-1:-1:-1;;;;;31224:23:0;;;;;;:15;:23;;;;;;;;;-1:-1:-1;31286:13:0;;:61;;31346:1;31286:61;;;-1:-1:-1;;;;;31302:20:0;;;;;;:12;:20;;;;;;;;:35;-1:-1:-1;;31323:13:0;;31302:35;;;;;;;;31335:1;31302:41;;31286:61;31266:81;-1:-1:-1;31386:21:0;31266:81;31400:6;31386:21;:13;:21;:::i;:::-;31366:41;;31426:57;31443:6;31451:9;31462;31473;31426:16;:57::i;:::-;-1:-1:-1;;;;;31519:20:0;;;31515:387;;-1:-1:-1;;;;;31627:23:0;;;;;;:15;:23;;;;;;;;;-1:-1:-1;31689:13:0;;:61;;31749:1;31689:61;;;-1:-1:-1;;;;;31705:20:0;;;;;;:12;:20;;;;;;;;:35;-1:-1:-1;;31726:13:0;;31705:35;;;;;;;;31738:1;31705:41;;31689:61;31669:81;-1:-1:-1;31789:21:0;31669:81;31803:6;31789:21;:13;:21;:::i;:::-;31769:41;;31829:57;31846:6;31854:9;31865;31876;31829:16;:57::i;:::-;30969:951;;;;;;;;;:::o;30566:395::-;-1:-1:-1;;;;;30683:22:0;;;30657:23;30683:22;;;:11;:22;;;;;;;;;;30743:20;30695:9;30743;:20::i;:::-;-1:-1:-1;;;;;30774:22:0;;;;;;;:11;:22;;;;;;:34;;-1:-1:-1;;30774:34:0;;;;;;;;;;30826:54;;30716:47;;-1:-1:-1;30774:34:0;30826:54;;;;;;30774:22;30826:54;30893:60;30908:15;30925:9;30936:16;30893:14;:60::i;5505:83::-;3977:19;3870:12;;;;;;;;:31;;;3886:15;:13;:15::i;:::-;3870:47;;;-1:-1:-1;3906:11:0;;;;3905:12;3870:47;3862:106;;;;;;;-1:-1:-1;;;;;;;;;;;3862:106:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4000:12:0;;;;;;;3999:13;4019:83;;;;4048:12;:19;;-1:-1:-1;;;;4048:19:0;;;;;4076:18;4063:4;4076:18;;;4019:83;5567:6;:15;;-1:-1:-1;;5567:15:0;-1:-1:-1;;;;;5567:15:0;;;;;4120:57;;;;4164:5;4149:20;;-1:-1:-1;;4149:20:0;;;5505:83;;:::o;6833:173::-;-1:-1:-1;;;;;6903:22:0;;;;6895:31;;;;;;6959:6;;6938:38;;-1:-1:-1;;;;;6938:38:0;;;;6959:6;;6938:38;;6959:6;;6938:38;6983:6;:17;;-1:-1:-1;;6983:17:0;-1:-1:-1;;;;;6983:17:0;;;;;;;;;;6833:173::o;31928:721::-;32107:18;32128:89;32135:12;32128:89;;;;;;;;;;;;;;;;;;;;;;;;;;;;:6;:89::i;:::-;32107:110;;32249:1;32234:12;:16;;;:86;;;;-1:-1:-1;;;;;;32254:23:0;;;;;;:12;:23;;;;;;;;:66;-1:-1:-1;;32278:16:0;;32254:41;;;;;;;;;:51;:66;;;:51;;:66;32234:86;32230:343;;;-1:-1:-1;;;;;32337:23:0;;;;;;:12;:23;;;;;;;;:41;-1:-1:-1;;32361:16:0;;32337:41;;;;;;;;32376:1;32337:47;:58;;;32230:343;;;32468:33;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;32428:23:0;;-1:-1:-1;32428:23:0;;;:12;:23;;;;;:37;;;;;;;;;;:73;;;;;;;-1:-1:-1;;32428:73:0;;;;;;;;;;;;;32516:26;;;:15;:26;;;;;;:45;;32545:16;;;32516:45;;;;;;;;;;32230:343;32590:51;;;;;;;;;;;;;;-1:-1:-1;;;;;32590:51:0;;;;;;;;;;;31928:721;;;;;:::o;32657:161::-;32732:6;32770:12;32763:5;32759:9;;32751:32;;;;-1:-1:-1;;;;;;;;;;;32751:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;32751:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32808:1:0;;32657:161;-1:-1:-1;;32657:161:0:o;12327:20655::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12327:20655:0;;;-1:-1:-1;12327:20655:0;:::i;:::-;;;;;;;;;;-1:-1:-1;12327:20655:0;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;
Swarm Source
bzzr://22c63f56246b3fe42fb8e4a8addd80f57b468bbc35d2423d913e14fcff741b82
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.